forked from braintree-go/braintree-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer_integration_test.go
299 lines (248 loc) · 7 KB
/
customer_integration_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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
// +build integration
package braintree
import (
"context"
"net/http"
"reflect"
"testing"
"github.com/lionelbarrow/braintree-go/testhelpers"
)
// This test will fail unless you set up your Braintree sandbox account correctly. See TESTING.md for details.
func TestCustomer(t *testing.T) {
t.Parallel()
ctx := context.Background()
oc := &Customer{
FirstName: "Lionel",
LastName: "Barrow",
Company: "Braintree",
Email: "[email protected]",
Phone: "312.555.1234",
Fax: "614.555.5678",
Website: "http://www.example.com",
CreditCard: &CreditCard{
Number: testCreditCards["visa"].Number,
ExpirationDate: "05/14",
CVV: "200",
Options: &CreditCardOptions{
VerifyCard: testhelpers.BoolPtr(true),
},
},
}
// Create with errors
_, err := testGateway.Customer().Create(ctx, oc)
if err == nil {
t.Fatal("Did not receive error when creating invalid customer")
}
// Create
oc.CreditCard.CVV = ""
oc.CreditCard.Options = nil
customer, err := testGateway.Customer().Create(ctx, oc)
t.Log(customer)
if err != nil {
t.Fatal(err)
}
if customer.Id == "" {
t.Fatal("invalid customer id")
}
if card := customer.DefaultCreditCard(); card == nil {
t.Fatal("invalid credit card")
}
if card := customer.DefaultCreditCard(); card.Token == "" {
t.Fatal("invalid token")
}
// Update
unique := testhelpers.RandomString()
newFirstName := "John" + unique
c2, err := testGateway.Customer().Update(ctx, &Customer{
Id: customer.Id,
FirstName: newFirstName,
})
t.Log(c2)
if err != nil {
t.Fatal(err)
}
if c2.FirstName != newFirstName {
t.Fatal("first name not changed")
}
// Find
c3, err := testGateway.Customer().Find(ctx, customer.Id)
t.Log(c3)
if err != nil {
t.Fatal(err)
}
if c3.Id != customer.Id {
t.Fatal("ids do not match")
}
// Search
query := new(SearchQuery)
f := query.AddTextField("first-name")
f.Is = newFirstName
searchResult, err := testGateway.Customer().Search(ctx, query)
if err != nil {
t.Fatal(err)
}
if len(searchResult.Customers) == 0 {
t.Fatal("could not search for a customer")
}
if id := searchResult.Customers[0].Id; id != customer.Id {
t.Fatalf("id from search does not match: got %s, wanted %s", id, customer.Id)
}
// Delete
err = testGateway.Customer().Delete(ctx, customer.Id)
if err != nil {
t.Fatal(err)
}
// Test customer 404
c4, err := testGateway.Customer().Find(ctx, customer.Id)
if err == nil {
t.Fatal("should return 404")
}
if err.Error() != "Not Found (404)" {
t.Fatal(err)
}
if apiErr, ok := err.(APIError); !(ok && apiErr.StatusCode() == http.StatusNotFound) {
t.Fatal(err)
}
if c4 != nil {
t.Fatal(c4)
}
}
func TestCustomerWithCustomFields(t *testing.T) {
t.Parallel()
ctx := context.Background()
customFields := map[string]string{
"custom_field_1": "custom value",
}
c := &Customer{
CustomFields: customFields,
}
customer, err := testGateway.Customer().Create(ctx, c)
if err != nil {
t.Fatal(err)
}
if x := map[string]string(customer.CustomFields); !reflect.DeepEqual(x, customFields) {
t.Fatalf("Returned custom fields doesn't match input, got %q, want %q", x, customFields)
}
customer, err = testGateway.Customer().Find(ctx, customer.Id)
if err != nil {
t.Fatal(err)
}
if x := map[string]string(customer.CustomFields); !reflect.DeepEqual(x, customFields) {
t.Fatalf("Returned custom fields doesn't match input, got %q, want %q", x, customFields)
}
}
func TestCustomerPaymentMethods(t *testing.T) {
t.Parallel()
ctx := context.Background()
customer, err := testGateway.Customer().Create(ctx, &Customer{})
if err != nil {
t.Fatal(err)
}
paymentMethod1, err := testGateway.PaymentMethod().Create(ctx, &PaymentMethodRequest{
CustomerId: customer.Id,
PaymentMethodNonce: FakeNoncePayPalBillingAgreement,
})
if err != nil {
t.Fatal(err)
}
paymentMethod2, err := testGateway.PaymentMethod().Create(ctx, &PaymentMethodRequest{
CustomerId: customer.Id,
PaymentMethodNonce: FakeNonceTransactable,
})
if err != nil {
t.Fatal(err)
}
expectedPaymentMethods := []PaymentMethod{
paymentMethod2,
paymentMethod1,
}
customerFound, err := testGateway.Customer().Find(ctx, customer.Id)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(customerFound.PaymentMethods(), expectedPaymentMethods) {
t.Fatalf("Got Customer %#v PaymentMethods %#v, want %#v", customerFound, customerFound.PaymentMethods(), expectedPaymentMethods)
}
}
func TestCustomerDefaultPaymentMethod(t *testing.T) {
t.Parallel()
ctx := context.Background()
customer, err := testGateway.Customer().Create(ctx, &Customer{})
if err != nil {
t.Fatal(err)
}
defaultPaymentMethod, err := testGateway.PaymentMethod().Create(ctx, &PaymentMethodRequest{
CustomerId: customer.Id,
PaymentMethodNonce: FakeNonceTransactable,
})
if err != nil {
t.Fatal(err)
}
_, err = testGateway.PaymentMethod().Create(ctx, &PaymentMethodRequest{
CustomerId: customer.Id,
PaymentMethodNonce: FakeNoncePayPalBillingAgreement,
})
if err != nil {
t.Fatal(err)
}
customerFound, err := testGateway.Customer().Find(ctx, customer.Id)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(customerFound.DefaultPaymentMethod(), defaultPaymentMethod) {
t.Fatalf("Got Customer %#v DefaultPaymentMethod %#v, want %#v", customerFound, customerFound.DefaultPaymentMethod(), defaultPaymentMethod)
}
}
func TestCustomerDefaultPaymentMethodManuallySet(t *testing.T) {
t.Parallel()
ctx := context.Background()
customer, err := testGateway.Customer().Create(ctx, &Customer{})
if err != nil {
t.Fatal(err)
}
_, err = testGateway.PaymentMethod().Create(ctx, &PaymentMethodRequest{
CustomerId: customer.Id,
PaymentMethodNonce: FakeNonceTransactable,
})
if err != nil {
t.Fatal(err)
}
paymentMethod2, err := testGateway.PaymentMethod().Create(ctx, &PaymentMethodRequest{
CustomerId: customer.Id,
PaymentMethodNonce: FakeNoncePayPalBillingAgreement,
})
if err != nil {
t.Fatal(err)
}
paypalAccount, err := testGateway.PayPalAccount().Update(ctx, &PayPalAccount{
Token: paymentMethod2.GetToken(),
Options: &PayPalAccountOptions{
MakeDefault: true,
},
})
if err != nil {
t.Fatal(err)
}
customerFound, err := testGateway.Customer().Find(ctx, customer.Id)
if err != nil {
t.Fatal(err)
}
if !reflect.DeepEqual(customerFound.DefaultPaymentMethod(), paypalAccount) {
t.Fatalf("Got Customer %#v DefaultPaymentMethod %#v, want %#v", customerFound, customerFound.DefaultPaymentMethod(), paypalAccount)
}
}
func TestCustomerPaymentMethodNonce(t *testing.T) {
t.Parallel()
ctx := context.Background()
customer, err := testGateway.Customer().Create(ctx, &Customer{PaymentMethodNonce: FakeNonceTransactable})
if err != nil {
t.Fatal(err)
}
customerFound, err := testGateway.Customer().Find(ctx, customer.Id)
if err != nil {
t.Fatal(err)
}
if len(customer.PaymentMethods()) != 1 {
t.Fatalf("Customer %#v has %#v payment method(s), want 1 payment method", customerFound, len(customer.PaymentMethods()))
}
}