Fertig
parent
666fd4909a
commit
917dda46eb
|
@ -1,11 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
|
|
@ -4,6 +4,8 @@ import java.io.Serializable;
|
|||
|
||||
public class Girokonto extends Konto implements Serializable {
|
||||
|
||||
private long dispo = 1000;
|
||||
|
||||
public Girokonto(String inhaber, int kontozähler) {
|
||||
super(inhaber, kontozähler);
|
||||
}
|
||||
|
@ -14,6 +16,30 @@ public class Girokonto extends Konto implements Serializable {
|
|||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||
|
||||
return true;
|
||||
} else if (super.getKontostand() + dispo - betrag >= 0) {
|
||||
dispo = dispo - betrag + super.getKontostand();
|
||||
this.auszahlen(super.getKontostand(), zweck, "Überweisungsausgang", super.getInhaber()); // wenn dispo
|
||||
// verwendet
|
||||
// wird ist
|
||||
// kontostand 0
|
||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
if (stand - betrag >= 0) {
|
||||
stand = stand - betrag;
|
||||
|
||||
getKontobw().add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||
|
||||
return true;
|
||||
} else if (stand + dispo - betrag >= 0) {
|
||||
dispo = dispo - betrag + super.getKontostand();
|
||||
stand = 0;
|
||||
getKontobw().add(new Kontobewegung(betrag * -1, zweck, art, auftraggeber));
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -24,4 +50,8 @@ public class Girokonto extends Konto implements Serializable {
|
|||
return "Giro-" + super.toString();
|
||||
}
|
||||
|
||||
public long getDispo() {
|
||||
return dispo;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.ArrayList;
|
|||
|
||||
public class Konto implements Serializable {
|
||||
private int nummer;
|
||||
private long stand = 0;
|
||||
protected long stand = 0;
|
||||
private String inhaber;
|
||||
|
||||
private ArrayList<Kontobewegung> kontobewegungen;
|
||||
|
@ -38,6 +38,7 @@ public class Konto implements Serializable {
|
|||
stand += betrag;
|
||||
|
||||
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
||||
|
||||
}
|
||||
|
||||
public boolean auszahlen(long betrag, String zweck, String art, String auftraggeber) {
|
||||
|
@ -63,4 +64,19 @@ public class Konto implements Serializable {
|
|||
return auflistung;
|
||||
}
|
||||
|
||||
public ArrayList<Kontobewegung> getKontobw() {
|
||||
return kontobewegungen;
|
||||
}
|
||||
|
||||
public String[] getSaldo() {
|
||||
String[] saldo = new String[11];
|
||||
for (int i = 10; i > 0; i--) {
|
||||
saldo[i - 1] = kontobewegungen.get(kontobewegungen.size() - i).toString();
|
||||
}
|
||||
|
||||
saldo[10] = "Kontostand: " + stand;
|
||||
|
||||
return saldo;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -32,4 +32,43 @@ class KontoTest {
|
|||
assertEquals(50, k2.getKontostand());
|
||||
}
|
||||
|
||||
@Test
|
||||
void dispoTest() {
|
||||
Girokonto k = new Girokonto("Müller", 0);
|
||||
Girokonto k2 = new Girokonto("Mayer", 0);
|
||||
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.überweise(k2, 200, "Test");
|
||||
assertEquals(900, k.getDispo());
|
||||
assertEquals(0, k.getKontostand());
|
||||
assertEquals(200, k2.getKontostand());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
void saldoTest() {
|
||||
Girokonto k = new Girokonto("Müller", 0);
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
k.einzahlen(100, "Test", "Einzahlung", "JUnit");
|
||||
assertNotNull(k.getSaldo());
|
||||
String[] saldo = k.getSaldo();
|
||||
assertEquals("Kontostand: 1800", saldo[10]);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -69,7 +69,7 @@ public class Banksystem {
|
|||
Konto ziel = bank.findeKonto(zielkonto);
|
||||
|
||||
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
||||
return ((Girokonto)start).überweise((Girokonto)ziel, betrag, verwendungszweck);
|
||||
return ((Girokonto) start).überweise((Girokonto) ziel, betrag, verwendungszweck);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -81,4 +81,17 @@ public class Banksystem {
|
|||
return konto.getKontostand();
|
||||
}
|
||||
|
||||
public boolean checkSaldo(int kontonummer) {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
if (konto.getKontobw().size() % 1 == 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public String[] printSaldo(int kontonummer) {
|
||||
Konto konto = bank.findeKonto(kontonummer);
|
||||
return konto.getSaldo();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -3,6 +3,10 @@ package de.hs_mannheim.informatik.bank.facade;
|
|||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
|
||||
import java.io.*;
|
||||
|
||||
import de.hs_mannheim.informatik.bank.infrastructure.Persistenz;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
class SystemTest {
|
||||
|
@ -16,4 +20,43 @@ class SystemTest {
|
|||
assertEquals("Testsystem", bs.getBankname());
|
||||
}
|
||||
|
||||
@Test
|
||||
void einzahlenTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||
assertEquals(500, bs.getKontostand(1000));
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
}
|
||||
|
||||
@Test
|
||||
void auszahlenTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||
bs.geldAuszahlen(1000, 400);
|
||||
|
||||
assertEquals(100, bs.getKontostand(1000));
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
}
|
||||
|
||||
@Test
|
||||
void persistenzTest() throws Exception {
|
||||
Banksystem bs = new Banksystem("Testsystem");
|
||||
|
||||
bs.geldEinzahlen(bs.kontoAnlegen("Kai", 1), 500);
|
||||
|
||||
bs = null;
|
||||
|
||||
Banksystem bs1 = new Banksystem("Testsystem");
|
||||
|
||||
assertEquals(500, bs1.getKontostand(1000));
|
||||
|
||||
File file = new File("C:\\Users\\Kai\\git\\Bank-System\\Bank-Beispiel\\Testsystem-bank-data.ser");
|
||||
file.delete();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -16,8 +16,7 @@ public class UI {
|
|||
private void hauptmenü() {
|
||||
System.out.println("Willkommen bei der " + bs.getBankname() + "!");
|
||||
|
||||
mainloop:
|
||||
while (true) {
|
||||
mainloop: while (true) {
|
||||
System.out.println();
|
||||
System.out.println("--------");
|
||||
System.out.println("Hauptmenü");
|
||||
|
@ -36,16 +35,27 @@ public class UI {
|
|||
System.out.println();
|
||||
|
||||
try {
|
||||
switch(input) {
|
||||
case 1: kontenAnzeigen(); break;
|
||||
switch (input) {
|
||||
case 1:
|
||||
kontenAnzeigen();
|
||||
break;
|
||||
case 2:
|
||||
kontoAnlegen();
|
||||
break;
|
||||
case 3: geldEinzahlen(); break;
|
||||
case 4: geldAuszahlen(); break;
|
||||
case 5: kontoauszugDrucken(); break;
|
||||
case 6: überweisungBeauftragen(); break;
|
||||
case 9: break mainloop;
|
||||
case 3:
|
||||
geldEinzahlen();
|
||||
break;
|
||||
case 4:
|
||||
geldAuszahlen();
|
||||
break;
|
||||
case 5:
|
||||
kontoauszugDrucken();
|
||||
break;
|
||||
case 6:
|
||||
überweisungBeauftragen();
|
||||
break;
|
||||
case 9:
|
||||
break mainloop;
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
|
@ -91,8 +101,13 @@ public class UI {
|
|||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||
double betrag = Double.parseDouble(sc.nextLine());
|
||||
|
||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long)betrag * 100);
|
||||
|
||||
long neuerKontostand = bs.geldEinzahlen(kontonummer, (long) betrag * 100);
|
||||
if (checkSaldo(kontonummer)) {
|
||||
String[] saldo = printSaldo(kontonummer);
|
||||
for (int i = 0; i < 11; i++) {
|
||||
System.out.println(saldo[i]);
|
||||
}
|
||||
}
|
||||
System.out.printf("Einzahlung erfolgreich, neuer Kontostand = %.2f Euro", (neuerKontostand / 100.0));
|
||||
}
|
||||
|
||||
|
@ -104,9 +119,14 @@ public class UI {
|
|||
System.out.print("Bitte den gewünschten Betrag eingeben: ");
|
||||
double betrag = Double.parseDouble(sc.nextLine());
|
||||
|
||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long)betrag * 100);
|
||||
|
||||
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
||||
boolean erfolgreich = bs.geldAuszahlen(kontonummer, (long) betrag * 100);
|
||||
if (checkSaldo(kontonummer)) {
|
||||
String[] saldo = printSaldo(kontonummer);
|
||||
for (int i = 0; i < 11; i++) {
|
||||
System.out.println(saldo[i]);
|
||||
}
|
||||
}
|
||||
System.out.printf("Auszahlung" + ((!erfolgreich) ? " nicht" : "") + " erfolgreich. ");
|
||||
System.out.printf("Neuer Kontostand = %.2f Euro.", (bs.getKontostand(kontonummer) / 100.0));
|
||||
}
|
||||
|
||||
|
@ -141,9 +161,23 @@ public class UI {
|
|||
System.out.print("Bitte den Verwendungszweck eingeben: ");
|
||||
String verwendungszweck = sc.nextLine();
|
||||
|
||||
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long)(betrag * 100), verwendungszweck);
|
||||
boolean erfolgreich = bs.überweisungBeauftragen(startkonto, zielkonto, (long) (betrag * 100), verwendungszweck);
|
||||
if (checkSaldo(startkonto)) {
|
||||
String[] saldo = printSaldo(startkonto);
|
||||
for (int i = 0; i < 11; i++) {
|
||||
System.out.println(saldo[i]);
|
||||
}
|
||||
}
|
||||
System.out.println("Überweisung" + ((!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||
}
|
||||
|
||||
System.out.println("Überweisung" + ( (!erfolgreich) ? " nicht" : "") + " erfolgreich ausgeführt.");
|
||||
private boolean checkSaldo(int kontonummer) {
|
||||
return bs.checkSaldo(kontonummer);
|
||||
|
||||
}
|
||||
|
||||
private String[] printSaldo(int kontonummer) {
|
||||
return bs.printSaldo(kontonummer);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue