Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
Fedot | 51a37b71b3 | |
Fedot | 45a9d8181d | |
Fedot | e919c05f59 |
|
@ -1 +0,0 @@
|
||||||
/.DS_Store
|
|
|
@ -1,11 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="module" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="src" path="src"/>
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
|
|
@ -179,5 +179,5 @@ replay_pid*
|
||||||
# Built Visual Studio Code Extensions
|
# Built Visual Studio Code Extensions
|
||||||
*.vsix
|
*.vsix
|
||||||
|
|
||||||
*.ser
|
/bank.ser
|
||||||
/.DS_Store
|
/zähler.ser
|
||||||
|
|
|
@ -9,5 +9,4 @@ public class Main {
|
||||||
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
||||||
UI ui = new UI(bs);
|
UI ui = new UI(bs);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -7,20 +7,20 @@ import java.util.HashMap;
|
||||||
public class Bank implements Serializable {
|
public class Bank implements Serializable {
|
||||||
private String name;
|
private String name;
|
||||||
private HashMap<Integer, Konto> konten = new HashMap<>();
|
private HashMap<Integer, Konto> konten = new HashMap<>();
|
||||||
private int kontozähler;
|
private int kontozähler;
|
||||||
|
|
||||||
public Bank(String name) {
|
public Bank(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.kontozähler = -1;
|
this.kontozähler = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int addKonto(String name, int auswahl) {
|
public int addKonto(String name, int auswahl) {
|
||||||
Konto k;
|
Konto k;
|
||||||
|
|
||||||
if (auswahl == 1)
|
if (auswahl == 1)
|
||||||
k = new Konto(name, ++kontozähler);
|
k = new Konto(name, ++kontozähler);
|
||||||
else
|
else
|
||||||
k = new Girokonto(name, ++kontozähler);
|
k = new Girokonto(name, ++kontozähler);
|
||||||
|
|
||||||
konten.put(k.getKontonummer(), k);
|
konten.put(k.getKontonummer(), k);
|
||||||
|
|
||||||
|
|
|
@ -1,36 +1,68 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
package de.hs_mannheim.informatik.bank.domain;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
public class Girokonto extends Konto implements Serializable {
|
public class Girokonto extends Konto implements Serializable {
|
||||||
private long dispo = 100000;
|
|
||||||
|
|
||||||
public Girokonto(String inhaber, int kontozähler) {
|
private long dispo = 0;
|
||||||
super(inhaber, kontozähler);
|
|
||||||
|
public Girokonto(String inhaber, int kontozähler) {
|
||||||
|
super(inhaber, kontozähler);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
public boolean überweise(Girokonto ziel, long betrag, String zweck) {
|
||||||
if (super.getKontostand() - betrag >= dispo * (-1)) {
|
Scanner scan = new Scanner(System.in);
|
||||||
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
if (super.getKontostand() - betrag >= 0) {
|
||||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||||
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean überweiseDispo(long grenze, Girokonto ziel, long betrag, String zweck) {
|
||||||
|
erstelleDispo(grenze);
|
||||||
|
if (dispo - betrag >= 0) {
|
||||||
|
this.auszahlen(betrag, zweck, "Überweisungsausgang", super.getInhaber());
|
||||||
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
System.out.println("Immer noch zu wenig Geld");
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
setStand(betrag);
|
||||||
|
|
||||||
|
addPlusKontobewegung(betrag, zweck, art, auftraggeber);
|
||||||
|
}
|
||||||
|
|
||||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
if (stand - betrag >= dispo * (-1)) {
|
if (getStand() == 0) {
|
||||||
stand -= betrag;
|
if (dispo > 0 && dispo >= betrag) {
|
||||||
|
dispo -= betrag;
|
||||||
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
addNegativeKontobewegung(betrag, zweck, art, auftraggeber);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setStand(-betrag);
|
||||||
|
addNegativeKontobewegung(betrag, zweck, art, auftraggeber);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean erstelleDispo(long grenze) {
|
||||||
|
this.dispo = grenze;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
public long getDispo() {
|
||||||
|
return this.dispo;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertFalse;
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
|
||||||
|
|
||||||
class GirokontoTest {
|
|
||||||
|
|
||||||
@Test
|
|
||||||
void testÜberziehung() {
|
|
||||||
Konto k = new Girokonto("Müller", 0);
|
|
||||||
k.einzahlen(10000, "Test", "Einzahlung", "JUnit");
|
|
||||||
|
|
||||||
assertTrue(k.auszahlen(20000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertEquals(-10000, k.getKontostand());
|
|
||||||
|
|
||||||
assertTrue(k.auszahlen(40000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertTrue(k.auszahlen(50000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertEquals(-100000, k.getKontostand());
|
|
||||||
|
|
||||||
assertFalse(k.auszahlen(40000, "Test", "Einzahlung", "JUnit"));
|
|
||||||
assertFalse(k.auszahlen(1, "Test", "Einzahlung", "JUnit"));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -5,13 +5,13 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
public class Konto implements Serializable {
|
public class Konto implements Serializable {
|
||||||
private int nummer;
|
private int nummer;
|
||||||
protected long stand = 0;
|
private long stand = 0;
|
||||||
private String inhaber;
|
private String inhaber;
|
||||||
|
|
||||||
protected ArrayList<Kontobewegung> kontobewegungen;
|
private ArrayList<Kontobewegung> kontobewegungen;
|
||||||
|
|
||||||
public Konto(String inhaber, int kontozähler) {
|
public Konto(String inhaber, int kontozähler) {
|
||||||
nummer = 1000 + kontozähler;
|
nummer = 1000 + kontozähler;
|
||||||
this.inhaber = inhaber;
|
this.inhaber = inhaber;
|
||||||
|
|
||||||
this.kontobewegungen = new ArrayList<>();
|
this.kontobewegungen = new ArrayList<>();
|
||||||
|
@ -34,6 +34,14 @@ public class Konto implements Serializable {
|
||||||
return stand;
|
return stand;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getStand() {
|
||||||
|
return stand;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStand(long betrag) {
|
||||||
|
this.stand += betrag;
|
||||||
|
}
|
||||||
|
|
||||||
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
public void einzahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
stand += betrag;
|
stand += betrag;
|
||||||
|
|
||||||
|
@ -63,14 +71,22 @@ public class Konto implements Serializable {
|
||||||
return auflistung;
|
return auflistung;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long berechneSaldo(int anzahl) {
|
public long getSaldo(int zahl) {
|
||||||
long saldo = 0;
|
long saldo = 0;
|
||||||
|
|
||||||
for (int i = 0; i < anzahl; i++) {
|
for (int x = 0; x < zahl; x++) {
|
||||||
saldo += kontobewegungen.get(i).getBetrag() ;
|
Kontobewegung kb = kontobewegungen.get(x);
|
||||||
|
saldo += kb.getBetrag();
|
||||||
}
|
}
|
||||||
|
|
||||||
return saldo;
|
return saldo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void addPlusKontobewegung(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addNegativeKontobewegung(long betrag, String zweck, String art, String auftraggeber) {
|
||||||
|
kontobewegungen.add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,31 +1,23 @@
|
||||||
package de.hs_mannheim.informatik.bank.domain;
|
package de.hs_mannheim.informatik.bank.domain;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
class KontoTest {
|
class KontoTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKontoBasics() {
|
void testKontoBasic() {
|
||||||
Konto k = new Konto("Müller", 0);
|
Konto k = new Konto("Müller", 0);
|
||||||
assertEquals("Müller", k.getInhaber());
|
assertEquals("Müller", k.getInhaber());
|
||||||
assertEquals(1000, k.getKontonummer());
|
assertEquals(1000, k.getKontonummer());
|
||||||
assertEquals(0, k.getKontostand());
|
assertEquals(0, k.getKontostand());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKontoEinUndAuszahlungUndSaldo() {
|
void testKontoEinzahlenUndAuszahlung() {
|
||||||
Konto k = new Konto("Müller", 0);
|
Konto k = new Konto("Müller", 0);
|
||||||
Konto k2 = new Konto("Mayer", 1);
|
Konto k2 = new Konto("Mayer", 1);
|
||||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
|
||||||
|
|
||||||
k = new Girokonto("Müller", 0);
|
|
||||||
k2 = new Girokonto("Mayer", 1);
|
|
||||||
testKontoEinUndAuszahlungUndSaldo(k, k2);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void testKontoEinUndAuszahlungUndSaldo(Konto k, Konto k2) {
|
|
||||||
assertEquals("Mayer", k2.getInhaber());
|
assertEquals("Mayer", k2.getInhaber());
|
||||||
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
assertNotEquals(k.getKontonummer(), k2.getKontonummer());
|
||||||
|
|
||||||
|
@ -35,26 +27,60 @@ class KontoTest {
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
||||||
assertEquals(50, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
assertTrue(k2.auszahlen(50, "Test", "Auszahlung", "JUnit"));
|
assertFalse(k2.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
||||||
assertEquals(0, k2.getKontostand());
|
assertEquals(50, k2.getKontostand());
|
||||||
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
|
||||||
k2.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
|
||||||
k2.einzahlen(1, "Test", "Einzahlung", "JUnit");
|
|
||||||
|
|
||||||
assertEquals(100, k2.berechneSaldo(1));
|
|
||||||
assertEquals(100, k2.berechneSaldo(4));
|
|
||||||
assertEquals(k2.getKontostand(), k2.berechneSaldo(6));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testKeineÜberziehungFürSparkonten() {
|
void testeSaldo() {
|
||||||
Konto k = new Konto("Müller", 0);
|
Konto k = new Konto("Testsubjekt1", 1);
|
||||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
k.einzahlen(100, null, null, null);
|
||||||
assertFalse(k.auszahlen(500, "Test", "Auszahlung", "JUnit"));
|
k.einzahlen(100, null, null, null);
|
||||||
|
k.auszahlen(50, null, null, null);
|
||||||
|
|
||||||
k.auszahlen(50, "Test", "Auszahlung", "JUnit");
|
assertEquals(150, k.getSaldo(3));
|
||||||
assertFalse(k.auszahlen(100, "Test", "Auszahlung", "JUnit"));
|
// Dieser Test überpfrüft die Saldo-Methode in der Kontoklasse
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void auszahlenTest1() {
|
||||||
|
Girokonto k = new Girokonto("Testsubjekt1", 2);
|
||||||
|
k.erstelleDispo(1000);
|
||||||
|
assertEquals(true, k.auszahlen(750, null, null, null));
|
||||||
|
// Überprüfen: dispo wird etwas ausgezahlt und rest bleibt
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void auszahlenTooMuchTest() {
|
||||||
|
Girokonto k = new Girokonto("Testsubjekt1", 2);
|
||||||
|
k.erstelleDispo(1000);
|
||||||
|
k.auszahlen(1001, null, null, null);
|
||||||
|
assertEquals(false, k.auszahlen(1001, null, null, null));
|
||||||
|
// es wird mehr ausgezahlt als im Dispo überhaupt verfügabr
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void überweiseFail() {
|
||||||
|
Girokonto k1 = new Girokonto("Testsubjekt1", 1);
|
||||||
|
Girokonto k2 = new Girokonto("Testsubjekt2", 1);
|
||||||
|
assertEquals(false, k1.überweise(k2, 100, null));
|
||||||
|
// die Überweisung ist nicht erfolgreich
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void überweiseDispo() {
|
||||||
|
Girokonto k1 = new Girokonto("Testsubjekt1", 1);
|
||||||
|
Girokonto k2 = new Girokonto("Testsubjekt2", 1);
|
||||||
|
assertEquals(true, k1.überweiseDispo(101, k2, 100, null));
|
||||||
|
// Dispo wird erhalten und danach wird überweisen
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void überweiseDispoRichtigerBetrag() {
|
||||||
|
Girokonto k1 = new Girokonto("Testsubjekt1", 1);
|
||||||
|
Girokonto k2 = new Girokonto("Testsubjekt2", 1);
|
||||||
|
k1.überweiseDispo(101, k2, 100, null);
|
||||||
|
assertEquals(100, k2.getKontostand());
|
||||||
|
// Dispo wird aufgenommen und danach bleibt noch Rest übrig
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -19,14 +19,15 @@ public class Kontobewegung implements Serializable {
|
||||||
this.datum = new Date();
|
this.datum = new Date();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getBetrag() {
|
|
||||||
return betrag;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "Kontobewegung [betrag=" + betrag + ", datum=" + datum + ", betreff=" + betreff + ", art=" + art
|
return "Kontobewegung [betrag=" + betrag + ", datum=" + datum + ", betreff=" + betreff + ", art=" + art
|
||||||
+ ", auftraggeber=" + auftraggeber + "]";
|
+ ", auftraggeber=" + auftraggeber + "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Aufgabe 7
|
||||||
|
public long getBetrag() {
|
||||||
|
return this.betrag;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package de.hs_mannheim.informatik.bank.facade;
|
package de.hs_mannheim.informatik.bank.facade;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
|
||||||
import de.hs_mannheim.informatik.bank.domain.Bank;
|
import de.hs_mannheim.informatik.bank.domain.Bank;
|
||||||
import de.hs_mannheim.informatik.bank.domain.Girokonto;
|
import de.hs_mannheim.informatik.bank.domain.Girokonto;
|
||||||
import de.hs_mannheim.informatik.bank.domain.Konto;
|
import de.hs_mannheim.informatik.bank.domain.Konto;
|
||||||
|
@ -53,11 +52,9 @@ public class Banksystem {
|
||||||
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
public boolean geldAuszahlen(int kontonummer, long betrag) throws Exception {
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
|
||||||
boolean erg = konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
|
||||||
|
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
||||||
|
|
||||||
return erg;
|
return konto.auszahlen(betrag, "Auszahlung am Schalter", "Auszahlung", konto.getInhaber());
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] erstelleKontoauszug(int kontonummer) {
|
public String[] erstelleKontoauszug(int kontonummer) {
|
||||||
|
@ -66,17 +63,23 @@ public class Banksystem {
|
||||||
return konto.getKontobewegungen();
|
return konto.getKontobewegungen();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) throws Exception {
|
public boolean überweisungBeauftragen(int startkonto, int zielkonto, long betrag, String verwendungszweck) {
|
||||||
Konto start = bank.findeKonto(startkonto);
|
Konto start = bank.findeKonto(startkonto);
|
||||||
Konto ziel = bank.findeKonto(zielkonto);
|
Konto ziel = bank.findeKonto(zielkonto);
|
||||||
|
|
||||||
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||||
boolean erfolg = ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
return ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
||||||
Persistenz.speichereBankDaten(this.bank, bank.getName());
|
}
|
||||||
|
return false;
|
||||||
return erfolg;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean überweisungDispoBeauftragen(long dispo, int startkonto, int zielkonto, long betrag, String verwendungszweck) {
|
||||||
|
Konto start = bank.findeKonto(startkonto);
|
||||||
|
Konto ziel = bank.findeKonto(zielkonto);
|
||||||
|
|
||||||
|
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||||
|
return ((Girokonto)start).überweiseDispo(dispo,(Girokonto)ziel, betrag, verwendungszweck);
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,10 +89,9 @@ public class Banksystem {
|
||||||
return konto.getKontostand();
|
return konto.getKontostand();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long saldoBestimmen(int kontonummer, int anzahl) {
|
public long getSaldo(int kontonummer, int zahl) {
|
||||||
Konto konto = bank.findeKonto(kontonummer);
|
Konto konto = bank.findeKonto(kontonummer);
|
||||||
|
return konto.getSaldo(zahl);
|
||||||
return konto.berechneSaldo(anzahl);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -2,69 +2,69 @@ package de.hs_mannheim.informatik.bank.facade;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
|
||||||
import org.junit.jupiter.api.AfterAll;
|
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
|
||||||
import org.junit.jupiter.api.MethodOrderer.OrderAnnotation;
|
|
||||||
import org.junit.jupiter.api.Order;
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.TestMethodOrder;
|
|
||||||
|
|
||||||
@TestMethodOrder(OrderAnnotation.class)
|
|
||||||
class SystemTest {
|
class SystemTest {
|
||||||
private static Banksystem bs;
|
|
||||||
|
|
||||||
@BeforeAll
|
String pfadDatei = "C:\\Users\\Fedot\\git\\Bank-Systeme\\Bank-Beispiel\\Testsystem-bank-data.ser";
|
||||||
static void initBanksystem() throws Exception {
|
|
||||||
bs = new Banksystem("Testsystem");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Order(1)
|
void smokeTest() throws Exception {
|
||||||
void smokeTest() {
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
bs.kontoAnlegen("Testobjekt", 1);
|
||||||
|
|
||||||
assertNotNull(bs);
|
assertNotNull(bs);
|
||||||
assertEquals(0, bs.getKontenliste().length);
|
assertEquals(1, bs.getKontenliste().length);
|
||||||
assertEquals("Testsystem", bs.getBankname());
|
assertEquals("Testsystem", bs.getBankname());
|
||||||
|
delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// man soll nichts einzahlen und es sollte funktionieren
|
||||||
@Test
|
@Test
|
||||||
@Order(2)
|
void einzahlenTest1() throws Exception {
|
||||||
void einzahlenTest() throws Exception {
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
int knr = bs.kontoAnlegen("Test1", 1);
|
int k1 = bs.kontoAnlegen("Testobjekt1", 1);
|
||||||
|
|
||||||
assertEquals(1000, bs.geldEinzahlen(knr, 1000));
|
assertEquals(0, bs.geldEinzahlen(k1, 0));
|
||||||
|
delete();
|
||||||
bs.geldEinzahlen(knr, 1);
|
|
||||||
assertEquals(1001, bs.getKontostand(knr));
|
|
||||||
|
|
||||||
assertEquals(1001, bs.geldEinzahlen(knr, 0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// man zahlt 100 ein und es soll funktionieren
|
||||||
@Test
|
@Test
|
||||||
@Order(3)
|
void einzahlenTest2() throws Exception {
|
||||||
void persistenzTest() throws Exception {
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
int knr = bs.kontoAnlegen("Test2", 2);
|
int k1 = bs.kontoAnlegen("Testobjekt1", 1);
|
||||||
int knr2 = bs.kontoAnlegen("Test3", 2);
|
|
||||||
|
|
||||||
bs.geldEinzahlen(knr, 1000);
|
assertEquals(100, bs.geldEinzahlen(k1, 100));
|
||||||
bs.geldAuszahlen(knr, 500);
|
delete();
|
||||||
assertTrue(bs.überweisungBeauftragen(knr, knr2, 100, "Überweisungstest."));
|
|
||||||
|
|
||||||
assertEquals(400, bs.getKontostand(knr));
|
|
||||||
|
|
||||||
bs = null;
|
|
||||||
|
|
||||||
Banksystem bs2 = new Banksystem("Testsystem");
|
|
||||||
assertEquals(400, bs2.getKontostand(knr));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@AfterAll
|
// 200 wird eingezahlt und 100 ausfgezahlt
|
||||||
static void cleanup() {
|
@Test
|
||||||
File file = new File("/Users/oliver/git/Bank-System/Bank-Beispiel/Testsystem-bank-data.ser");
|
void auszahlenTest1() throws Exception {
|
||||||
file.delete();
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
int k2 = bs.kontoAnlegen("Testobjekt2", 1);
|
||||||
|
bs.geldEinzahlen(k2, 200);
|
||||||
|
|
||||||
|
assertEquals(true, bs.geldAuszahlen(k2, 100));
|
||||||
|
delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// es wird zu viell ausgezhalt und es soll fehlschlagen
|
||||||
|
@Test
|
||||||
|
void auszahlenTest2() throws Exception {
|
||||||
|
Banksystem bs = new Banksystem("Testsystem");
|
||||||
|
int k2 = bs.kontoAnlegen("Testobjekt2", 1);
|
||||||
|
bs.geldEinzahlen(k2, 100);
|
||||||
|
|
||||||
|
assertEquals(false, bs.geldAuszahlen(k2, 101));
|
||||||
|
delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
//Der Pfad in den Dateien wird gelöscht
|
||||||
|
public void delete() throws Exception {
|
||||||
|
File f = new File(pfadDatei);
|
||||||
|
f.delete();
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,7 +1,6 @@
|
||||||
package de.hs_mannheim.informatik.bank.ui;
|
package de.hs_mannheim.informatik.bank.ui;
|
||||||
|
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
||||||
|
|
||||||
public class UI {
|
public class UI {
|
||||||
|
@ -10,26 +9,28 @@ public class UI {
|
||||||
|
|
||||||
public UI(Banksystem bs) {
|
public UI(Banksystem bs) {
|
||||||
this.bs = bs;
|
this.bs = bs;
|
||||||
hauptmenü();
|
hauptmenü();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void hauptmenü() {
|
private void hauptmenü() {
|
||||||
System.out.println("Willkommen bei der " + bs.getBankname() + "!");
|
System.out.println("Willkommen bei der " + bs.getBankname() + "!");
|
||||||
|
|
||||||
mainloop:
|
mainloop:
|
||||||
while (true) {
|
while (true) {
|
||||||
System.out.println();
|
System.out.println();
|
||||||
System.out.println("--------");
|
System.out.println("--------");
|
||||||
System.out.println("Hauptmenü");
|
System.out.println("Hauptmenü");
|
||||||
System.out.println("1 -> Konten anzeigen");
|
System.out.println("1 -> Konten anzeigen");
|
||||||
System.out.println("2 -> Konto anlegen");
|
System.out.println("2 -> Konto anlegen");
|
||||||
System.out.println("3 -> Geld einzahlen");
|
System.out.println("3 -> Geld einzahlen");
|
||||||
System.out.println("4 -> Geld auszahlen");
|
System.out.println("4 -> Geld auszahlen");
|
||||||
System.out.println("5 -> Kontoauszug drucken");
|
System.out.println("5 -> Kontoauszug drucken");
|
||||||
System.out.println("6 -> Überweisung beauftragen");
|
System.out.println("6 -> Überweisung beauftragen");
|
||||||
System.out.println("7 -> Saldo abfragen");
|
System.out.println("7 -> Überweisen mit Dispo");
|
||||||
|
System.out.println("8 -> Anzahl Überweisung");
|
||||||
|
// System.out.println("9 -> Dispo Überweisung");
|
||||||
|
|
||||||
System.out.println("9 -> Beenden");
|
System.out.println("10 -> Beenden");
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
System.out.print("> ");
|
System.out.print("> ");
|
||||||
|
@ -39,15 +40,15 @@ public class UI {
|
||||||
try {
|
try {
|
||||||
switch(input) {
|
switch(input) {
|
||||||
case 1: kontenAnzeigen(); break;
|
case 1: kontenAnzeigen(); break;
|
||||||
case 2:
|
case 2: kontoAnlegen(); break;
|
||||||
kontoAnlegen();
|
|
||||||
break;
|
|
||||||
case 3: geldEinzahlen(); break;
|
case 3: geldEinzahlen(); break;
|
||||||
case 4: geldAuszahlen(); break;
|
case 4: geldAuszahlen(); break;
|
||||||
case 5: kontoauszugDrucken(); break;
|
case 5: kontoauszugDrucken(); break;
|
||||||
case 6: überweisungBeauftragen(); break;
|
case 6: überweisungBeauftragen(); break;
|
||||||
case 7: saldoAbfragen(); break;
|
case 7: überweisungDispoBeauftragen();
|
||||||
case 9: break mainloop;
|
case 8: getSaldo(); break;
|
||||||
|
case 9:
|
||||||
|
case 10: break mainloop;
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
@ -58,12 +59,12 @@ public class UI {
|
||||||
|
|
||||||
System.out.println("Auf Wiedersehen!");
|
System.out.println("Auf Wiedersehen!");
|
||||||
|
|
||||||
} // hauptmenü
|
} // hauptmenü
|
||||||
|
|
||||||
private void kontenAnzeigen() {
|
private void kontenAnzeigen() {
|
||||||
String[] konten = bs.getKontenliste();
|
String[] konten = bs.getKontenliste();
|
||||||
if (konten.length > 0) {
|
if (konten.length > 0) {
|
||||||
System.out.println("Folgende Konten sind aktuell verfügbar:");
|
System.out.println("Folgende Konten sind aktuell verfügbar:");
|
||||||
for (String s : konten) {
|
for (String s : konten) {
|
||||||
System.out.println(s);
|
System.out.println(s);
|
||||||
}
|
}
|
||||||
|
@ -76,7 +77,7 @@ public class UI {
|
||||||
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
System.out.println("Bitte den Namen des Kontoinhabers angeben: ");
|
||||||
String name = sc.nextLine();
|
String name = sc.nextLine();
|
||||||
|
|
||||||
System.out.println("Möchten Sie ein Sparkonto (1) oder ein Girokonto (2) anlegen?");
|
System.out.println("Möchten Sie ein Sparkonto (1) oder ein Girokonto (2) anlegen?");
|
||||||
int auswahl = Integer.parseInt(sc.nextLine());
|
int auswahl = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
int kontonummer = bs.kontoAnlegen(name, auswahl);
|
int kontonummer = bs.kontoAnlegen(name, auswahl);
|
||||||
|
@ -85,12 +86,12 @@ public class UI {
|
||||||
|
|
||||||
private void geldEinzahlen() throws Exception {
|
private void geldEinzahlen() throws Exception {
|
||||||
System.out.println("Geld einzahlen");
|
System.out.println("Geld einzahlen");
|
||||||
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
// optional prüfen, ob Konto existiert
|
// optional prüfen, ob Konto existiert
|
||||||
|
|
||||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
||||||
|
@ -100,10 +101,10 @@ public class UI {
|
||||||
|
|
||||||
private void geldAuszahlen() throws Exception {
|
private void geldAuszahlen() throws Exception {
|
||||||
System.out.println("Geld auszahlen");
|
System.out.println("Geld auszahlen");
|
||||||
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
||||||
|
@ -113,11 +114,12 @@ public class UI {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void kontoauszugDrucken() {
|
private void kontoauszugDrucken() {
|
||||||
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
||||||
int kontonummer = Integer.parseInt(sc.nextLine());
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
// in echt auf einem Drucker
|
System.out.println();
|
||||||
System.out.println("Auszug für Konto " + kontonummer);
|
|
||||||
|
System.out.println("Auszug für Konto " + kontonummer);
|
||||||
String[] kontobewegungen = bs.erstelleKontoauszug(kontonummer);
|
String[] kontobewegungen = bs.erstelleKontoauszug(kontonummer);
|
||||||
|
|
||||||
if (kontobewegungen.length > 0)
|
if (kontobewegungen.length > 0)
|
||||||
|
@ -128,33 +130,53 @@ public class UI {
|
||||||
System.out.println("Noch keine Kontobewegungen.");
|
System.out.println("Noch keine Kontobewegungen.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void überweisungBeauftragen() throws Exception {
|
private void überweisungBeauftragen() {
|
||||||
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
||||||
int startkonto = Integer.parseInt(sc.nextLine());
|
int startkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
||||||
int zielkonto = Integer.parseInt(sc.nextLine());
|
int zielkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte den gewünschten Überweisungsbetrag eingeben: ");
|
System.out.print("Bitte den gewünschten Überweisungsbetrag eingeben: ");
|
||||||
double betrag = Double.parseDouble(sc.nextLine());
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
||||||
String verwendungszweck = sc.nextLine();
|
String verwendungszweck = sc.nextLine();
|
||||||
|
|
||||||
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long)(betrag * 100), verwendungszweck);
|
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long)(betrag * 100), verwendungszweck);
|
||||||
|
|
||||||
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void saldoAbfragen() {
|
private void überweisungDispoBeauftragen() {
|
||||||
System.out.print("Bitte die Kontonummer des gewünschten Kontos eingeben: ");
|
System.out.print("Bitte die Kontonummer des Ausgangskontos der Überweisung eingeben: ");
|
||||||
int konto = Integer.parseInt(sc.nextLine());
|
int startkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
System.out.print("Bitte die Anzahl der Kontobewegungen für den Saldo eingeben: ");
|
System.out.print("Bitte die Kontonummmer für das Zielkonto der Überweisung eingeben: ");
|
||||||
|
int zielkonto = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte Dispohöhe eingeben: ");
|
||||||
|
int dispo =Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte den gewünschten Überweisungsbetrag eingeben: ");
|
||||||
|
double betrag = Double.parseDouble(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
||||||
|
String verwendungszweck = sc.nextLine();
|
||||||
|
|
||||||
|
boolean erfolgreich = bs.überweisungDispoBeauftragen(dispo, startkonto, zielkonto, (long)(betrag * 100), verwendungszweck);
|
||||||
|
|
||||||
|
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void getSaldo() {
|
||||||
|
System.out.print("Bitte die gewünschte Kontonummer für den Auszug eingeben: ");
|
||||||
|
int kontonummer = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
|
System.out.print("Bitte die gewünschte Anzahl von Kontobewegungen: ");
|
||||||
int anzahl = Integer.parseInt(sc.nextLine());
|
int anzahl = Integer.parseInt(sc.nextLine());
|
||||||
|
|
||||||
long saldo = bs.saldoBestimmen(konto, anzahl);
|
System.out.println(bs.getSaldo(kontonummer, anzahl)/100);
|
||||||
System.out.printf("Der Saldo nach %d Kontobewegungen beträgt %.2f Euro.%n", anzahl, (saldo/100d));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue