-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson_test.go
152 lines (142 loc) · 2.74 KB
/
json_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
package sieve
import (
"bytes"
"encoding/json"
"testing"
)
type ObjectOption struct {
Name string `json:"name"`
Value string `json:"value"`
}
type Object struct {
idx uint64
Name string `json:"name" sieve:"s:*"`
FullName string `json:"full_name" sieve:"s:private"`
CreatedAt uint64 `json:"created_at"`
UpdatedAt uint64 `json:"updated_at" sieve:"eef:CreatedAt"`
Options []ObjectOption `json:"options" sieve:"k:Name"`
}
type Nesting struct {
ObjectOption
CreatedAt uint64 `json:"created_at"`
UpdatedAt uint64 `json:"updated_at" sieve:"eef:CreatedAt"`
}
type ObjectN struct {
a ObjectOption
CreatedAt uint64 `json:"created_at"`
UpdatedAt uint64 `json:"updated_at" sieve:"eef:CreatedAt"`
}
func TestSieveMarshalJSON_UnexportedFields(t *testing.T) {
obj := ObjectN{
a: ObjectOption{
Name: "One",
Value: "Value",
},
CreatedAt: 100,
UpdatedAt: 100,
}
b, err := json.Marshal(Sieve(&obj, "public"))
if err != nil {
t.Error(err)
return
}
if bytes.Contains(b, []byte("name")) {
t.Fail()
return
}
if bytes.Contains(b, []byte("value")) {
t.Fail()
return
}
}
func TestSieveMarshalJSON_Nested(t *testing.T) {
obj := Nesting{
ObjectOption: ObjectOption{
Name: "One",
Value: "Value",
},
CreatedAt: 100,
UpdatedAt: 100,
}
b, err := json.Marshal(Sieve(&obj, "public"))
if err != nil {
t.Error(err)
return
}
if !bytes.Contains(b, []byte("name")) {
t.Fail()
return
}
if !bytes.Contains(b, []byte("value")) {
t.Fail()
return
}
}
func TestSieveMarshalJSON_Scopes(t *testing.T) {
obj := Object{
idx: 100,
Name: "One",
FullName: "Full",
}
b, err := json.Marshal(Sieve(&obj, "public"))
if err != nil {
t.Error(err)
return
}
if bytes.Contains(b, []byte("full_name")) {
t.Fail()
return
}
b, err = json.Marshal(Sieve(&obj, "private"))
if err != nil {
t.Error(err)
return
}
if !bytes.Contains(b, []byte("full_name")) {
t.Fail()
return
}
}
func TestSieveMarshalJSON_ExcludeEqualField(t *testing.T) {
obj := Object{
CreatedAt: 100,
UpdatedAt: 100,
}
b, err := json.Marshal(Sieve(&obj))
if err != nil {
t.Error(err)
return
}
if bytes.Contains(b, []byte("updated_at")) {
t.Fail()
return
}
obj.UpdatedAt = 120
b, err = json.Marshal(Sieve(&obj))
if err != nil {
t.Error(err)
return
}
if !bytes.Contains(b, []byte("updated_at")) {
t.Fail()
return
}
}
func TestSieveMarshalJSON_ExportKeys(t *testing.T) {
obj := Object{
Options: []ObjectOption{
ObjectOption{"1", "First"},
ObjectOption{"2", "Two"},
ObjectOption{"3", "Three"},
},
}
b, err := json.Marshal(Sieve(&obj))
if err != nil {
t.Error(err)
return
}
if !bytes.Contains(b, []byte("[\"1\",\"2\",\"3\"]")) {
t.Fail()
return
}
}