-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounts_endpoints_test.go
133 lines (98 loc) · 3.11 KB
/
accounts_endpoints_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
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
package gocardless_test
import (
"context"
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestClient_GetAccount(t *testing.T) {
t.Parallel()
t.Run("get an account by ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NotNil(t, client)
assert.NoError(t, err)
testAccountID := os.Getenv("GOCARDLESS_TEST_ACCOUNT_ID")
account, err := client.GetAccount(context.Background(), testAccountID)
assert.NoError(t, err)
assert.NotNil(t, account)
})
t.Run("get an account by invalid ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
account, err := client.GetAccount(context.Background(), "invalid")
assert.Error(t, err)
assert.Nil(t, account)
})
}
func TestClient_GetAccountBalances(t *testing.T) {
t.Parallel()
t.Run("get balances for an account by ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
testAccountID := os.Getenv("GOCARDLESS_TEST_ACCOUNT_ID")
balances, err := client.GetAccountBalances(context.Background(), testAccountID)
assert.NoError(t, err)
assert.NotNil(t, balances)
})
t.Run("get balances for an account by invalid ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
balances, err := client.GetAccountBalances(context.Background(), "invalid")
assert.Error(t, err)
assert.Nil(t, balances)
})
}
func TestClient_GetAccountDetails(t *testing.T) {
t.Parallel()
t.Run("get details for an account by ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
testAccountID := os.Getenv("GOCARDLESS_TEST_ACCOUNT_ID")
details, err := client.GetAccountDetails(context.Background(), testAccountID)
assert.NoError(t, err)
assert.NotNil(t, details)
})
t.Run("get details for an account by invalid ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
token, err := client.NewToken(context.Background())
assert.NoError(t, err)
assert.NotNil(t, token)
details, err := client.GetAccountDetails(context.Background(), "invalid")
assert.Error(t, err)
assert.Nil(t, details)
})
}
func TestClient_GetAccountTransactions(t *testing.T) {
t.Parallel()
t.Run("get transactions for an account by ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
testAccountID := os.Getenv("GOCARDLESS_TEST_ACCOUNT_ID")
transactions, err := client.GetAccountTransactions(context.Background(), testAccountID, nil, nil)
assert.NoError(t, err)
assert.NotNil(t, transactions)
})
t.Run("get transactions for an account by invalid ID", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
transactions, err := client.GetAccountTransactions(context.Background(), "invalid", nil, nil)
assert.Error(t, err)
assert.Nil(t, transactions)
})
}