-
Notifications
You must be signed in to change notification settings - Fork 2
/
integration_test.go
437 lines (379 loc) · 12.8 KB
/
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
package biteship
import (
"github.com/stretchr/testify/assert"
"log"
"testing"
)
const secretKey = "biteship_test.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoidGVzLXBrZyIsInVzZXJJZCI6IjYxNjQzYmJiNzRkYWMxMzdjMDIyMjUxYyIsImlhdCI6MTY0MTc3OTY0Nn0.LA2Opjs1wNTHeSLDAZpD3W9CqMoMfZvAkOhvSYfIftk"
const invalidSecretKey = "biteship_test.eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoidGVzLXBrZyIsInVzZXJJZCI6IjYxNjQzYmJiNzRkYWMxMzdjMDIyMjUxYyIsImlhdCI6MTY0MTc3OTY0Nn0.LA2Opjs1wNTHeSLDAZpD3W9CqMoMfZvAkOhvSYfIftks"
// CHANGE ORDER ID BELOW WITH YOUR ORDER ID
var orderIdConfirmed = "61E02D940904D76428ADA74E"
var orderIdNotConfirmed = ""
var orderIdCancelled = "61DBB6B1A4720916B2D1F576"
// TEST GET COURIER
func TestGetCourier(t *testing.T) {
biteship := New(secretKey)
resp, _ := biteship.GetCourier()
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Object, "courier")
}
// TEST FAIL GET COURIER WITH INVALID SECRET KEY
func TestGetCourierWithInvalidSecretKey(t *testing.T) {
biteship := New(invalidSecretKey)
resp, err := biteship.GetCourier()
assert.Equal(t, *resp, ResponseListCourier{})
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40000001)
}
// TEST CHECK RATES OF COURIER
func TestGetRatesCouriers(t *testing.T) {
biteship := New(secretKey)
var items []ItemCourierRate
items = append(items, ItemCourierRate{
Name: "Shoes",
Description: "Black colored size 45",
Value: 199000,
Length: 30,
Width: 15,
Height: 20,
Weight: 200,
Quantity: 2,
})
req := RequestCourierRates{
//OriginLatitude: -6.3031123,
//OriginLongitude: 106.7794934999,
DestinationLatitude: -6.2441792,
DestinationLongitude: 106.783529000,
OriginPostalCode: 12440,
//DestinationPostalCode: 12240,
Couriers: "jne,tiki",
Items: items,
}
resp, _ := biteship.GetRatesCouriers(&req)
log.Println(resp)
assert.Equal(t, resp.Success, true)
}
func TestGetFailRatesCouriers(t *testing.T) {
biteship := New(invalidSecretKey)
var items []ItemCourierRate
items = append(items, ItemCourierRate{
Name: "Shoes",
Description: "Black colored size 45",
Value: 199000,
Length: 30,
Width: 15,
Height: 20,
Weight: 200,
Quantity: 2,
})
req := RequestCourierRates{
//OriginLatitude: -6.3031123,
//OriginLongitude: 106.7794934999,
DestinationLatitude: -6.2441792,
DestinationLongitude: 106.783529000,
OriginPostalCode: 12440,
//DestinationPostalCode: 12240,
Couriers: "jne,tiki",
Items: items,
}
resp, err := biteship.GetRatesCouriers(&req)
assert.Equal(t, *resp, ResponseListRatesCouriers{})
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40000001)
}
func TestGetMissingRequiredParamRatesCouriers(t *testing.T) {
biteship := New(secretKey)
var items []ItemCourierRate
items = append(items, ItemCourierRate{
Name: "Shoes",
Description: "Black colored size 45",
Value: 199000,
Length: 30,
Width: 15,
Height: 20,
Weight: 200,
Quantity: 2,
})
req := RequestCourierRates{
//OriginLatitude: -6.3031123,
//OriginLongitude: 106.7794934999,
DestinationLatitude: -6.2441792,
DestinationLongitude: 106.783529000,
OriginPostalCode: 12440,
//DestinationPostalCode: 12240,
//Couriers: "jne,tiki", // required
Items: items,
}
resp, err := biteship.GetRatesCouriers(&req)
assert.Equal(t, *resp, ResponseListRatesCouriers{})
assert.Equal(t, err.Status, 400)
}
func TestCreateAnOrderDirectConfirm(t *testing.T) {
biteship := New(secretKey)
var items []ProductItem
items = append(items, ProductItem{
Id: "5db7ee67382e185bd6a14608",
Name: "Black L",
Image: "",
Description: "White Shirt",
Value: 165000,
Quantity: 1,
Height: 0,
Length: 0,
Width: 0,
Weight: 0,
})
req := CreateOrderRequestParam{
ShipperContactName: "Amir",
ShipperContactPhone: "081277882932",
ShipperContactEmail: "biteship@test.com",
ShipperOrganization: "Biteship Org Test",
OriginContactName: "Amir",
OriginContactPhone: "081740781720",
OriginAddress: "Plaza Senayan, Jalan Asia Afrik...",
OriginNote: "Deket pintu masuk STC",
OriginPostalCode: 12440,
OriginCoordinate: Coordinate{
Latitude: -6.2253114,
Longitude: 106.7993735,
},
DestinationContactName: "John Doe",
DestinationContactPhone: "08170032123",
DestinationContactEmail: "jon@test.com",
DestinationAddress: "Lebak Bulus MRT...",
DestinationPostalCode: 12950,
DestinationNote: "Near the gas station",
DestinationCoordinate: Coordinate{
Latitude: -6.28927,
Longitude: 106.77492000000007,
},
DestinationCashOnDelivery: nil,
DestinationCashOnDeliveryType: nil,
CourierCompany: "jne",
CourierType: "reg",
CourierInsurance: 500000,
DeliveryType: "now", // later or now
DeliveryDate: "2022-01-14",
DeliveryTime: "12:00",
OrderNote: "Please be carefull",
Metadata: nil,
Items: items,
}
resp, _ := biteship.CreateOrder(&req)
orderIdConfirmed = resp.Id
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Message, "Order successfully created")
assert.Equal(t, resp.Object, "order")
}
func TestCreateAnOrderWithDeliveryLater(t *testing.T) {
biteship := New(secretKey)
var items []ProductItem
items = append(items, ProductItem{
Id: "5db7ee67382e185bd6a14608",
Name: "Black L",
Image: "",
Description: "White Shirt",
Value: 165000,
Quantity: 1,
Height: 0,
Length: 0,
Width: 0,
Weight: 0,
})
req := CreateOrderRequestParam{
ShipperContactName: "Amir",
ShipperContactPhone: "081277882932",
ShipperContactEmail: "biteship@test.com",
ShipperOrganization: "Biteship Org Test",
OriginContactName: "Amir",
OriginContactPhone: "081740781720",
OriginAddress: "Plaza Senayan, Jalan Asia Afrik...",
OriginNote: "Deket pintu masuk STC",
OriginPostalCode: 12440,
OriginCoordinate: Coordinate{
Latitude: -6.2253114,
Longitude: 106.7993735,
},
DestinationContactName: "John Doe",
DestinationContactPhone: "08170032123",
DestinationContactEmail: "jon@test.com",
DestinationAddress: "Lebak Bulus MRT...",
DestinationPostalCode: 12950,
DestinationNote: "Near the gas station",
DestinationCoordinate: Coordinate{
Latitude: -6.28927,
Longitude: 106.77492000000007,
},
DestinationCashOnDelivery: nil,
DestinationCashOnDeliveryType: nil,
CourierCompany: "jne",
CourierType: "reg",
CourierInsurance: 500000,
DeliveryType: "later", // later or now
DeliveryDate: "2025-12-14",
DeliveryTime: "12:00",
OrderNote: "Please be carefull",
Metadata: nil,
Items: items,
}
resp, _ := biteship.CreateOrder(&req)
orderIdNotConfirmed = resp.Id
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Message, "Order successfully created")
assert.Equal(t, resp.Object, "order")
}
func TestCreateAnOrderWithInvalidSecretKey(t *testing.T) {
biteship := New(invalidSecretKey)
var items []ProductItem
items = append(items, ProductItem{
Id: "5db7ee67382e185bd6a14608",
Name: "Black L",
Image: "",
Description: "White Shirt",
Value: 165000,
Quantity: 1,
Height: 0,
Length: 0,
Width: 0,
Weight: 0,
})
req := CreateOrderRequestParam{
ShipperContactName: "Amir",
ShipperContactPhone: "081277882932",
ShipperContactEmail: "biteship@test.com",
ShipperOrganization: "Biteship Org Test",
OriginContactName: "Amir",
OriginContactPhone: "081740781720",
OriginAddress: "Plaza Senayan, Jalan Asia Afrik...",
OriginNote: "Deket pintu masuk STC",
OriginPostalCode: 12440,
OriginCoordinate: Coordinate{
Latitude: -6.2253114,
Longitude: 106.7993735,
},
DestinationContactName: "John Doe",
DestinationContactPhone: "08170032123",
DestinationContactEmail: "jon@test.com",
DestinationAddress: "Lebak Bulus MRT...",
DestinationPostalCode: 12950,
DestinationNote: "Near the gas station",
DestinationCoordinate: Coordinate{
Latitude: -6.28927,
Longitude: 106.77492000000007,
},
DestinationCashOnDelivery: nil,
DestinationCashOnDeliveryType: nil,
CourierCompany: "jne",
CourierType: "reg",
CourierInsurance: 500000,
DeliveryType: "now",
DeliveryDate: "2022-01-11",
DeliveryTime: "12:00",
OrderNote: "Please be carefull",
Metadata: nil,
Items: items,
}
resp, err := biteship.CreateOrder(&req)
assert.Equal(t, *resp, ResponseCreateOrder{})
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40000001)
}
func TestRetrieveOrder(t *testing.T) {
biteship := New(secretKey)
resp, _ := biteship.RetrieveOrder(orderIdConfirmed)
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Object, "order")
assert.Equal(t, resp.Message, "Order successfully retrieved")
}
func TestRetrieveOrderWithInvalidKey(t *testing.T) {
biteship := New(invalidSecretKey)
resp, err := biteship.RetrieveOrder(orderIdConfirmed)
assert.Equal(t, *resp, ResponseRetrieveOrder{})
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40000001)
}
func TestRetrieveOrderWithInvalidOrderId(t *testing.T) {
biteship := New(secretKey)
resp, err := biteship.RetrieveOrder("61dce8889a096b081e70198f")
assert.Equal(t, *resp, ResponseRetrieveOrder{})
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40002057)
}
func TestUpdateOrderBeforeConfirmed(t *testing.T) {
biteship := New(secretKey)
requestUpdate := struct {
OriginAddress string `json:"origin_address"`
}{OriginAddress: "Jalan Perubahan nomor 5"}
resp, _ := biteship.UpdateOrder(orderIdNotConfirmed, requestUpdate)
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Object, "order")
assert.Equal(t, resp.Message, "Order has been updated")
}
func TestUpdateOrderThatWasConfirmed(t *testing.T) {
biteship := New(secretKey)
requestUpdate := struct {
OriginAddress string `json:"origin_address"`
}{OriginAddress: "Jalan Perubahan nomor 5"}
_, err := biteship.UpdateOrder(orderIdConfirmed, requestUpdate)
log.Println(err)
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40002044)
assert.Equal(t, err.RawError, "Order has already been confirmed therefore cannot edit order. Please create new order instead.")
}
func TestUpdateOrderThatWasPassedTime(t *testing.T) {
biteship := New(secretKey)
requestUpdate := struct {
OriginAddress string `json:"origin_address"`
}{OriginAddress: "Jalan Perubahan nomor 5"}
_, err := biteship.UpdateOrder(orderIdCancelled, requestUpdate)
log.Println(err)
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40002013)
assert.Equal(t, err.RawError, "Time already passed. Set new delivery time.")
}
func TestConfirmOrder(t *testing.T) {
biteship := New(secretKey)
resp, _ := biteship.ConfirmOrder(orderIdNotConfirmed)
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Object, "order")
assert.Equal(t, resp.Status, "confirmed")
assert.Equal(t, resp.Message, "Success: Order status updated to confirmed")
}
func TestConfirmOrderThatWasBeenConfirmed(t *testing.T) {
biteship := New(secretKey)
_, err := biteship.ConfirmOrder(orderIdConfirmed)
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40002050)
assert.Equal(t, err.RawError, "Order has already been confirmed")
}
func TestConfirmOrderThatWasBeenCancelled(t *testing.T) {
biteship := New(secretKey)
_, err := biteship.ConfirmOrder(orderIdCancelled)
assert.Equal(t, err.Status, 400)
assert.Equal(t, err.Code, 40002050)
assert.Equal(t, err.RawError, "Order has already been cancelled")
}
func TestCancelOrder(t *testing.T) {
biteship := New(secretKey)
reason := "Ingin mengganti kurir"
resp, err := biteship.CancelOrder(orderIdNotConfirmed, reason)
log.Println(err)
log.Println(resp)
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Object, "order")
assert.Equal(t, resp.Status, "cancelled")
assert.Equal(t, resp.Id, orderIdNotConfirmed)
assert.Equal(t, resp.CancellationReason, reason)
}
func TestCancelOrderThatWasConfirmed(t *testing.T) {
biteship := New(secretKey)
reason := "Ingin mengganti kurir"
resp, err := biteship.CancelOrder(orderIdConfirmed, reason)
log.Println(err)
log.Println(resp)
assert.Equal(t, resp.Success, true)
assert.Equal(t, resp.Object, "order")
assert.Equal(t, resp.Status, "cancelled")
assert.Equal(t, resp.Id, orderIdConfirmed)
assert.Equal(t, resp.CancellationReason, reason)
}