Fertig
parent
666fd4909a
commit
917dda46eb
|
@ -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>
|
||||||
|
|
|
@ -4,6 +4,8 @@ import java.io.Serializable;
|
||||||
|
|
||||||
public class Girokonto extends Konto implements Serializable {
|
public class Girokonto extends Konto implements Serializable {
|
||||||
|
|
||||||
|
private long dispo = 1000;
|
||||||
|
|
||||||
public Girokonto(String inhaber, int kontozähler) {
|
public Girokonto(String inhaber, int kontozähler) {
|
||||||
super(inhaber, kontozähler);
|
super(inhaber, kontozähler);
|
||||||
}
|
}
|
||||||
|
@ -14,6 +16,30 @@ public class Girokonto extends Konto implements Serializable {
|
||||||
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
ziel.einzahlen(betrag, zweck, "Überweisungseingang", super.getInhaber());
|
||||||
|
|
||||||
return true;
|
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;
|
return false;
|
||||||
|
@ -24,4 +50,8 @@ public class Girokonto extends Konto implements Serializable {
|
||||||
return "Giro-" + super.toString();
|
return "Giro-" + super.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getDispo() {
|
||||||
|
return dispo;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ import java.util.ArrayList;
|
||||||
|
|
||||||
public class Konto implements Serializable {
|
public class Konto implements Serializable {
|
||||||
private int nummer;
|
private int nummer;
|
||||||
private long stand = 0;
|
protected long stand = 0;
|
||||||
private String inhaber;
|
private String inhaber;
|
||||||
|
|
||||||
private ArrayList<Kontobewegung> kontobewegungen;
|
private ArrayList<Kontobewegung> kontobewegungen;
|
||||||
|
@ -38,6 +38,7 @@ public class Konto implements Serializable {
|
||||||
stand += betrag;
|
stand += betrag;
|
||||||
|
|
||||||
kontobewegungen.add(new Kontobewegung(betrag, zweck, art, auftraggeber));
|
kontobewegungen.add(new Kontobewegung(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) {
|
||||||
|
@ -63,4 +64,19 @@ public class Konto implements Serializable {
|
||||||
return auflistung;
|
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());
|
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);
|
Konto ziel = bank.findeKonto(zielkonto);
|
||||||
|
|
||||||
if (start instanceof Girokonto && ziel instanceof Girokonto) {
|
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;
|
return false;
|
||||||
|
@ -81,4 +81,17 @@ public class Banksystem {
|
||||||
return konto.getKontostand();
|
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.assertEquals;
|
||||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
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;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
class SystemTest {
|
class SystemTest {
|
||||||
|
@ -16,4 +20,43 @@ class SystemTest {
|
||||||
assertEquals("Testsystem", bs.getBankname());
|
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,43 +16,53 @@ public class UI {
|
||||||
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("9 -> Beenden");
|
System.out.println("9 -> Beenden");
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
System.out.print("> ");
|
System.out.print("> ");
|
||||||
int input = Integer.parseInt(sc.nextLine());
|
int input = Integer.parseInt(sc.nextLine());
|
||||||
System.out.println();
|
System.out.println();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
switch(input) {
|
switch (input) {
|
||||||
case 1: kontenAnzeigen(); break;
|
case 1:
|
||||||
case 2:
|
kontenAnzeigen();
|
||||||
kontoAnlegen();
|
break;
|
||||||
break;
|
case 2:
|
||||||
case 3: geldEinzahlen(); break;
|
kontoAnlegen();
|
||||||
case 4: geldAuszahlen(); break;
|
break;
|
||||||
case 5: kontoauszugDrucken(); break;
|
case 3:
|
||||||
case 6: überweisungBeauftragen(); break;
|
geldEinzahlen();
|
||||||
case 9: break mainloop;
|
break;
|
||||||
}
|
case 4:
|
||||||
|
geldAuszahlen();
|
||||||
} catch (Exception e) {
|
break;
|
||||||
System.err.println(e.getLocalizedMessage());
|
case 5:
|
||||||
|
kontoauszugDrucken();
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
überweisungBeauftragen();
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
break mainloop;
|
||||||
}
|
}
|
||||||
System.out.println();
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println(e.getLocalizedMessage());
|
||||||
}
|
}
|
||||||
|
System.out.println();
|
||||||
|
}
|
||||||
|
|
||||||
System.out.println("Auf Wiedersehen!");
|
System.out.println("Auf Wiedersehen!");
|
||||||
|
|
||||||
|
@ -91,8 +101,13 @@ public class UI {
|
||||||
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);
|
||||||
|
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));
|
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: ");
|
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);
|
||||||
|
if (checkSaldo(kontonummer)) {
|
||||||
System.out.printf("Auszahlung" + ((!erfolgreich)? " nicht" : "" )+ " erfolgreich. ");
|
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));
|
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: ");
|
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);
|
||||||
|
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