-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtypes_test.go
More file actions
82 lines (69 loc) · 2 KB
/
types_test.go
File metadata and controls
82 lines (69 loc) · 2 KB
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
package retailcrm
import (
"encoding/json"
"reflect"
"testing"
)
func TestClient_OrderDeliveryData(t *testing.T) {
d := OrderDeliveryData{
OrderDeliveryDataBasic: OrderDeliveryDataBasic{
"track",
"status",
"address",
"type",
},
}
data, _ := json.Marshal(d)
expectedStr := `{"payerType":"type","pickuppointAddress":"address","status":"status","trackNumber":"track"}`
if string(data) != expectedStr {
t.Errorf("Marshaled: %s\nExpected: %s\n", data, expectedStr)
}
d.AdditionalFields = map[string]interface{}{
"customFirst": "one",
"customSecond": "two",
}
data, _ = json.Marshal(d)
expectedStr = `{"customFirst":"one","customSecond":"two","payerType":"type","pickuppointAddress":"address","status":"status","trackNumber":"track"}`
if string(data) != expectedStr {
t.Errorf("Marshaled: %s\nExpected: %s\n", data, expectedStr)
}
d = OrderDeliveryData{}
json.Unmarshal(data, &d)
expected := OrderDeliveryData{
OrderDeliveryDataBasic: OrderDeliveryDataBasic{
"track",
"status",
"address",
"type",
},
AdditionalFields: map[string]interface{}{
"customFirst": "one",
"customSecond": "two",
},
}
eq := reflect.DeepEqual(expected, d)
if eq != true {
t.Errorf("Unmarshaled: %#v\nExpected: %#v\n", d, expected)
}
}
func TestCustomer_IsContactJSON(t *testing.T) {
customer := Customer{ID: 1, IsContact: true}
data, err := json.Marshal(customer)
if err != nil {
t.Fatalf("marshal customer: %v", err)
}
var marshaled map[string]interface{}
if err := json.Unmarshal(data, &marshaled); err != nil {
t.Fatalf("unmarshal marshaled payload: %v", err)
}
if value, ok := marshaled["isContact"]; !ok || value != true {
t.Fatalf("expected isContact=true in marshaled payload, got %#v", marshaled["isContact"])
}
var decoded Customer
if err := json.Unmarshal([]byte(`{"id":2,"isContact":true}`), &decoded); err != nil {
t.Fatalf("unmarshal customer with isContact: %v", err)
}
if !decoded.IsContact {
t.Fatalf("expected IsContact=true after unmarshal")
}
}