summaryrefslogtreecommitdiff
path: root/sandbox/src/test/kotlin/DatabaseTest.kt
blob: eb7ef4d8cf9eae20f2f3d683a72d27471479effc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import org.junit.Test
import tech.libeufin.sandbox.*
import tech.libeufin.util.execCommand

class DatabaseTest {
    private val customerFoo = Customer(
        login = "foo",
        passwordHash = "hash",
        name = "Foo",
        phone = "+00",
        email = "foo@b.ar",
        cashoutPayto = "payto://external-IBAN",
        cashoutCurrency = "KUDOS"
    )
    private val customerBar = Customer(
        login = "bar",
        passwordHash = "hash",
        name = "Bar",
        phone = "+00",
        email = "foo@b.ar",
        cashoutPayto = "payto://external-IBAN",
        cashoutCurrency = "KUDOS"
    )
    private val bankAccountFoo = BankAccount(
        iban = "FOO-IBAN-XYZ",
        bic = "FOO-BIC",
        bankAccountLabel = "foo",
        lastNexusFetchRowId = 1L,
        owningCustomerId = 1L,
        hasDebt = false
    )
    private val bankAccountBar = BankAccount(
        iban = "BAR-IBAN-ABC",
        bic = "BAR-BIC",
        bankAccountLabel = "bar",
        lastNexusFetchRowId = 1L,
        owningCustomerId = 2L,
        hasDebt = false
    )

    fun initDb(): Database {
        execCommand(
            listOf(
                "libeufin-bank-dbinit",
                "-d",
                "libeufincheck",
                "-r"
            ),
            throwIfFails = true
        )
        val db = Database("jdbc:postgresql:///libeufincheck")
        // Need accounts first.
        db.customerCreate(customerFoo)
        db.customerCreate(customerBar)
        db.bankAccountCreate(bankAccountFoo)
        db.bankAccountCreate(bankAccountBar)
        db.bankAccountSetMaxDebt(
            "foo",
            TalerAmount(100, 0)
        )
        db.bankAccountSetMaxDebt(
            "bar",
            TalerAmount(50, 0)
        )
        return db
    }

    @Test
    fun bankTransactionsTest() {
        val db = initDb()
        var fooAccount = db.bankAccountGetFromLabel("foo")
        assert(fooAccount?.hasDebt == false) // Foo has NO debit.
        // Preparing the payment data.
        val fooPaysBar = BankInternalTransaction(
            creditorAccountId = 2,
            debtorAccountId = 1,
            subject = "test",
            amount = TalerAmount(10, 0),
            accountServicerReference = "acct-svcr-ref",
            endToEndId = "end-to-end-id",
            paymentInformationId = "pmtinfid",
            transactionDate = 100000L
        )
        val firstSpending = db.bankTransactionCreate(fooPaysBar) // Foo pays Bar and goes debit.
        assert(firstSpending == Database.BankTransactionResult.SUCCESS)
        fooAccount = db.bankAccountGetFromLabel("foo")
        // Foo: credit -> debit
        assert(fooAccount?.hasDebt == true) // Asserting Foo's debit.
        // Now checking that more spending doesn't get Foo out of debit.
        val secondSpending = db.bankTransactionCreate(fooPaysBar)
        assert(secondSpending == Database.BankTransactionResult.SUCCESS)
        fooAccount = db.bankAccountGetFromLabel("foo")
        // Checking that Foo's debit is two times the paid amount
        // Foo: debit -> debit
        assert(fooAccount?.balance?.value == 20L
                && fooAccount.balance?.frac == 0
                && fooAccount.hasDebt
        )
        // Asserting Bar has a positive balance and what Foo paid so far.
        var barAccount = db.bankAccountGetFromLabel("bar")
        val barBalance: TalerAmount? = barAccount?.balance
        assert(
            barAccount?.hasDebt == false
                    && barBalance?.value == 20L && barBalance.frac == 0
        )
        // Bar pays so that its balance remains positive.
        val barPaysFoo = BankInternalTransaction(
            creditorAccountId = 1,
            debtorAccountId = 2,
            subject = "test",
            amount = TalerAmount(10, 0),
            accountServicerReference = "acct-svcr-ref",
            endToEndId = "end-to-end-id",
            paymentInformationId = "pmtinfid",
            transactionDate = 100000L
        )
        val barPays = db.bankTransactionCreate(barPaysFoo)
        assert(barPays == Database.BankTransactionResult.SUCCESS)
        barAccount = db.bankAccountGetFromLabel("bar")
        val barBalanceTen: TalerAmount? = barAccount?.balance
        // Bar: credit -> credit
        assert(barAccount?.hasDebt == false && barBalanceTen?.value == 10L && barBalanceTen.frac == 0)
        // Bar pays again to let Foo return in credit.
        val barPaysAgain = db.bankTransactionCreate(barPaysFoo)
        assert(barPaysAgain == Database.BankTransactionResult.SUCCESS)
        // Refreshing the two accounts.
        barAccount = db.bankAccountGetFromLabel("bar")
        fooAccount = db.bankAccountGetFromLabel("foo")
        // Foo should have returned to zero and no debt, same for Bar.
        // Foo: debit -> credit
        assert(fooAccount?.hasDebt == false && barAccount?.hasDebt == false)
        assert(fooAccount?.balance?.equals(TalerAmount(0, 0)) == true)
        assert(barAccount?.balance?.equals(TalerAmount(0, 0)) == true)
        // Bringing Bar to debit.
        val barPaysMore = db.bankTransactionCreate(barPaysFoo)
        assert(barPaysAgain == Database.BankTransactionResult.SUCCESS)
        barAccount = db.bankAccountGetFromLabel("bar")
        fooAccount = db.bankAccountGetFromLabel("foo")
        // Bar: credit -> debit
        assert(fooAccount?.hasDebt == false && barAccount?.hasDebt == true)
        assert(fooAccount?.balance?.equals(TalerAmount(10, 0)) == true)
        assert(barAccount?.balance?.equals(TalerAmount(10, 0)) == true)
    }
    @Test
    fun customerCreationTest() {
        val db = initDb()
        assert(db.customerGetFromLogin("foo") == null)
        db.customerCreate(customerFoo)
        assert(db.customerGetFromLogin("foo")?.name == "Foo")
        // Trigger conflict.
        assert(!db.customerCreate(customerFoo))
    }
    @Test
    fun configTest() {
        val db = initDb()
        assert(db.configGet("bar") == null)
        assert(db.configGet("bar") == null)
        db.configSet("foo", "bar")
        assert(db.configGet("foo") == "bar")
    }
    @Test
    fun bankAccountTest() {
        val db = initDb()
        assert(db.bankAccountGetFromLabel("foo") == null)
        val bankAccount = BankAccount(
            iban = "not used",
            bic = "not used",
            bankAccountLabel = "foo",
            lastNexusFetchRowId = 1L,
            owningCustomerId = 1L,
            hasDebt = false
        )
        db.customerCreate(customerFoo) // Satisfies the REFERENCE
        assert(db.bankAccountCreate(bankAccount))
        assert(!db.bankAccountCreate(bankAccount)) // Triggers conflict.
        assert(db.bankAccountGetFromLabel("foo")?.bankAccountLabel == "foo")
        assert(db.bankAccountGetFromLabel("foo")?.balance?.equals(TalerAmount(0, 0)) == true)
    }
}