-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
institutions_endpoints_test.go
78 lines (60 loc) · 1.94 KB
/
institutions_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
package gocardless_test
import (
"context"
"testing"
"github.com/cksidharthan/go-gocardless"
"github.com/stretchr/testify/assert"
)
func TestClient_ListInstitutions(t *testing.T) {
t.Parallel()
t.Run("list institutions", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
institutions, err := client.ListInstitutions(context.Background(), gocardless.ListInstitutionsParams{
Country: gocardless.NetherlandsInstitution,
PaymentsEnabled: "true",
})
assert.NoError(t, err)
assert.NotNil(t, institutions)
})
t.Run("list institutions with invalid token", func(t *testing.T) {
t.Parallel()
client, err := getInvalidTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
institutions, err := client.ListInstitutions(context.Background(), gocardless.ListInstitutionsParams{
Country: gocardless.NetherlandsInstitution,
PaymentsEnabled: "true",
})
assert.Error(t, err)
assert.Nil(t, institutions)
checkErr := gocardless.ExtractError(err)
assert.Equal(t, 401, checkErr.StatusCode)
})
}
func TestClient_FetchInstitution(t *testing.T) {
t.Parallel()
t.Run("fetch institution", func(t *testing.T) {
t.Parallel()
client, err := getTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
institution, err := client.FetchInstitution(context.Background(), gocardless.TestInstitutionID)
assert.NoError(t, err)
assert.NotNil(t, institution)
assert.Equal(t, gocardless.TestInstitutionID, institution.ID)
})
t.Run("fetch institution with invalid token", func(t *testing.T) {
t.Parallel()
client, err := getInvalidTestClient(t)
assert.NoError(t, err)
assert.NotNil(t, client)
institution, err := client.FetchInstitution(context.Background(), gocardless.TestInstitutionID)
assert.Error(t, err)
assert.Nil(t, institution)
checkErr := gocardless.ExtractError(err)
assert.Equal(t, 401, checkErr.StatusCode)
})
}