forked from bold-commerce/go-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
payouts_test.go
207 lines (182 loc) · 5.83 KB
/
payouts_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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
package goshopify
import (
"context"
"errors"
"fmt"
"net/http"
"reflect"
"testing"
"time"
"github.com/jarcoal/httpmock"
"github.com/shopspring/decimal"
)
func TestPayoutsList(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/shopify_payments/payouts.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("payouts_filtered.json")))
date1 := OnlyDate{time.Date(2013, 11, 0o1, 0, 0, 0, 0, time.UTC)}
payouts, err := client.Payouts.List(context.Background(), PayoutsListOptions{Date: &date1})
if err != nil {
t.Errorf("Payouts.List returned error: %v", err)
}
expected := []Payout{{Id: 854088011, Date: date1, Currency: "USD", Amount: decimal.NewFromFloat(43.12), Status: PayoutStatusScheduled}}
if !reflect.DeepEqual(payouts, expected) {
t.Errorf("Payouts.List returned %+v, expected %+v", payouts, expected)
}
}
func TestPayoutsListIncorrectDate(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/shopify_payments/payouts.json", client.pathPrefix),
httpmock.NewStringResponder(200, `{"payouts": [{"id":1, "date":"20-02-2"}]}`))
date1 := OnlyDate{time.Date(2022, 0o2, 0o3, 0, 0, 0, 0, time.Local)}
_, err := client.Payouts.List(context.Background(), PayoutsListOptions{Date: &date1})
if err == nil {
t.Errorf("Payouts.List returned success, expected error: %v", err)
}
}
func TestPayoutsListError(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/shopify_payments/payouts.json", client.pathPrefix),
httpmock.NewStringResponder(500, ""))
expectedErrMessage := "Unknown Error"
payouts, err := client.Payouts.List(context.Background(), nil)
if payouts != nil {
t.Errorf("Payouts.List returned payouts, expected nil: %v", err)
}
if err == nil || err.Error() != expectedErrMessage {
t.Errorf("Payouts.List err returned %+v, expected %+v", err, expectedErrMessage)
}
}
func TestPayoutsListWithPagination(t *testing.T) {
setup()
defer teardown()
listURL := fmt.Sprintf("https://fooshop.myshopify.com/%s/shopify_payments/payouts.json", client.pathPrefix)
cases := []struct {
body string
linkHeader string
expectedPayouts []Payout
expectedPagination *Pagination
expectedErr error
}{
// Expect empty pagination when there is no link header
{
string(loadFixture("payouts.json")),
"",
[]Payout{
{Id: 854088011, Date: OnlyDate{time.Date(2013, 11, 1, 0, 0, 0, 0, time.UTC)}, Currency: "USD", Amount: decimal.NewFromFloat(43.12), Status: PayoutStatusScheduled},
{Id: 512467833, Date: OnlyDate{time.Date(2013, 11, 1, 0, 0, 0, 0, time.UTC)}, Currency: "USD", Amount: decimal.NewFromFloat(43.12), Status: PayoutStatusFailed},
},
new(Pagination),
nil,
},
// Invalid link header responses
{
"{}",
"invalid link",
[]Payout(nil),
nil,
ResponseDecodingError{Message: "could not extract pagination link header"},
},
{
"{}",
`<:invalid.url>; rel="next"`,
[]Payout(nil),
nil,
ResponseDecodingError{Message: "pagination does not contain a valid URL"},
},
{
"{}",
`<http://valid.url?%invalid_query>; rel="next"`,
[]Payout(nil),
nil,
errors.New(`invalid URL escape "%in"`),
},
{
"{}",
`<http://valid.url>; rel="next"`,
[]Payout(nil),
nil,
ResponseDecodingError{Message: "page_info is missing"},
},
{
"{}",
`<http://valid.url?page_info=foo&limit=invalid>; rel="next"`,
[]Payout(nil),
nil,
errors.New(`strconv.Atoi: parsing "invalid": invalid syntax`),
},
// Valid link header responses
{
`{"payouts": [{"id":1}]}`,
`<http://valid.url?page_info=foo&limit=2>; rel="next"`,
[]Payout{{Id: 1}},
&Pagination{
NextPageOptions: &ListOptions{PageInfo: "foo", Limit: 2},
},
nil,
},
{
`{"payouts": [{"id":2}]}`,
`<http://valid.url?page_info=foo>; rel="next", <http://valid.url?page_info=bar>; rel="previous"`,
[]Payout{{Id: 2}},
&Pagination{
NextPageOptions: &ListOptions{PageInfo: "foo"},
PreviousPageOptions: &ListOptions{PageInfo: "bar"},
},
nil,
},
}
for i, c := range cases {
response := &http.Response{
StatusCode: 200,
Body: httpmock.NewRespBodyFromString(c.body),
Header: http.Header{
"Link": {c.linkHeader},
},
}
httpmock.RegisterResponder("GET", listURL, httpmock.ResponderFromResponse(response))
payouts, pagination, err := client.Payouts.ListWithPagination(context.Background(), nil)
if !reflect.DeepEqual(payouts, c.expectedPayouts) {
t.Errorf("test %d Payouts.ListWithPagination payouts returned %+v, expected %+v", i, payouts, c.expectedPayouts)
}
if !reflect.DeepEqual(pagination, c.expectedPagination) {
t.Errorf(
"test %d Payouts.ListWithPagination pagination returned %+v, expected %+v",
i,
pagination,
c.expectedPagination,
)
}
if (c.expectedErr != nil || err != nil) && err.Error() != c.expectedErr.Error() {
t.Errorf(
"test %d Payouts.ListWithPagination err returned %+v, expected %+v",
i,
err,
c.expectedErr,
)
}
}
}
func TestPayoutsGet(t *testing.T) {
setup()
defer teardown()
httpmock.RegisterResponder("GET", fmt.Sprintf("https://fooshop.myshopify.com/%s/shopify_payments/payouts/623721858.json", client.pathPrefix),
httpmock.NewBytesResponder(200, loadFixture("payout.json")))
payout, err := client.Payouts.Get(context.Background(), 623721858, nil)
if err != nil {
t.Errorf("Payouts.Get returned error: %v", err)
}
expected := &Payout{
Id: 623721858,
Date: OnlyDate{time.Date(2012, 11, 12, 0, 0, 0, 0, time.UTC)},
Status: PayoutStatusPaid,
Currency: "USD",
Amount: decimal.NewFromFloat(41.9),
}
if !reflect.DeepEqual(payout, expected) {
t.Errorf("Payouts.Get returned %+v, expected %+v", payout, expected)
}
}