-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwithdrawal_support_test.go
58 lines (52 loc) · 1.56 KB
/
withdrawal_support_test.go
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
package example
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestWithdrawal(t *testing.T) {
testCases := []struct {
name string
withdrawalAmount float64
expectedDispensed float64
startingBalance float64
expectedResponse string
}{
{
name: "Amount is within all parameters",
withdrawalAmount: 50.0,
expectedDispensed: 50.0,
startingBalance: 100.00,
expectedResponse: "",
},
{
name: "Amount is not multiple of 20",
withdrawalAmount: 25.0,
expectedDispensed: 0.0,
startingBalance: 100.00,
expectedResponse: "unable to process transaction as desired amount is not a multiple of 20",
},
{
name: "Amount is greater than daily limit",
withdrawalAmount: 500.0,
expectedDispensed: 0.0,
startingBalance: 100.00,
expectedResponse: "unable to process transaction as desired amount exceeds daily limit",
},
{
name: "Amount is greater than balance",
withdrawalAmount: 101.00,
expectedDispensed: 0.0,
startingBalance: 100.00,
expectedResponse: "unable to process transaction as desired amount exceeds current balance",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
testContext := &TestContext{Balance: tc.startingBalance}
resp := Withdraw(tc.withdrawalAmount, testContext)
assert.Equal(t, tc.expectedDispensed, testContext.ToDispense)
assert.Equal(t, testContext.Balance, tc.startingBalance-tc.expectedDispensed)
assert.Equal(t, tc.expectedResponse, resp)
})
}
}