-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes-string_test.go
277 lines (270 loc) · 8.42 KB
/
types-string_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
package sqljson_test
import (
"database/sql"
"reflect"
"testing"
"github.com/rhaseven7h/sqljson"
. "github.com/smartystreets/goconvey/convey"
)
func TestNullStringValidateValuer(t *testing.T) {
Convey("Given a Nil sqljson.NullString value", t, func() {
nullStringIn := sqljson.NullString{
NullString: sql.NullString{
String: "",
Valid: false,
},
}
Convey("When I get its value using NullStringValidateValuer", func() {
nullStringOut := sqljson.NullStringValidateValuer(reflect.ValueOf(interface{}(nullStringIn)))
Convey("Then I should get nil", func() {
So(nullStringOut, ShouldBeNil)
})
})
})
Convey("Given an empty string sqljson.NullString value", t, func() {
nullStringIn := sqljson.NullString{
NullString: sql.NullString{
String: "",
Valid: true,
},
}
Convey("When I get its value using NullStringValidateValuer", func() {
nullStringOut := sqljson.NullStringValidateValuer(reflect.ValueOf(interface{}(nullStringIn)))
Convey("Then I should get an empty string", func() {
str, ok := nullStringOut.(string)
So(ok, ShouldBeTrue)
So(str, ShouldEqual, "")
})
})
})
Convey("Given a non-empty string sqljson.NullString value", t, func() {
nullStringIn := sqljson.NullString{
NullString: sql.NullString{
String: "dummy",
Valid: true,
},
}
Convey("When I get its value using NullStringValidateValuer", func() {
nullStringOut := sqljson.NullStringValidateValuer(reflect.ValueOf(interface{}(nullStringIn)))
Convey("Then I should get the non-empty string value", func() {
str, ok := nullStringOut.(string)
So(ok, ShouldBeTrue)
So(str, ShouldEqual, "dummy")
})
})
})
}
func TestStringMarshalJSON(t *testing.T) {
Convey("Given a non-empty sqljson.NullString string value", t, func() {
valueIn := sqljson.NullString{
NullString: sql.NullString{
String: "dummy",
Valid: true,
},
}
Convey("When I marshal it", func() {
b, err := valueIn.MarshalJSON()
Convey("Then I should get a string", func() {
So(err, ShouldBeNil)
So(string(b), ShouldEqual, `"dummy"`)
})
})
})
Convey("Given an empty sqljson.NullString string value", t, func() {
valueIn := sqljson.NullString{
NullString: sql.NullString{
String: "",
Valid: true,
},
}
Convey("When I marshal it", func() {
b, err := valueIn.MarshalJSON()
Convey("Then I should get an empty string", func() {
So(err, ShouldBeNil)
So(string(b), ShouldEqual, `""`)
})
})
})
Convey("Given a nil sqljson.NullString string value", t, func() {
valueIn := sqljson.NullString{
NullString: sql.NullString{
String: "",
Valid: false,
},
}
Convey("When I marshal it", func() {
b, err := valueIn.MarshalJSON()
Convey("Then I should get null", func() {
So(err, ShouldBeNil)
So(string(b), ShouldEqual, `null`)
})
})
})
}
func TestStringUnmarshalJSON(t *testing.T) {
Convey("Given a sqljson.NullString value pointer, and an empty JSON value (empty, not just null)", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(``)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "unexpected end of JSON input")
})
})
})
Convey("Given a sqljson.NullString value pointer, and a null JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`null`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get a Null NullString", func() {
So(err, ShouldBeNil)
So(ns.Valid, ShouldBeFalse)
})
})
})
Convey("Given a sqljson.NullString value pointer, and an empty string JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`""`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get a an empty string, not-Null NullString", func() {
So(err, ShouldBeNil)
So(ns.Valid, ShouldBeTrue)
So(ns.String, ShouldEqual, "")
})
})
})
Convey("Given a sqljson.NullString value pointer, and a non-empty string JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`"Hello World!"`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get a a non-empty string, not-Null NullString", func() {
So(err, ShouldBeNil)
So(ns.Valid, ShouldBeTrue)
So(ns.String, ShouldEqual, "Hello World!")
})
})
})
Convey("Given a sqljson.NullString value pointer, and an invalid JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`xyz`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "invalid character")
})
})
})
Convey("Given a sqljson.NullString value pointer, and a boolean true JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`true`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "cannot unmarshal bool")
})
})
})
Convey("Given a sqljson.NullString value pointer, and a boolean false JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`false`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "cannot unmarshal bool")
})
})
})
Convey("Given a sqljson.NullString value pointer, and an integer zero JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`0`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "cannot unmarshal number")
})
})
})
Convey("Given a sqljson.NullString value pointer, and an integer non-zero JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`10`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "cannot unmarshal number")
})
})
})
Convey("Given a sqljson.NullString value pointer, and a float zero JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`0.0`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "cannot unmarshal number")
})
})
})
Convey("Given a sqljson.NullString value pointer, and a float non-zero JSON value", t, func() {
ns := &sqljson.NullString{}
bJSON := []byte(`123.45`)
So(ns.Valid, ShouldBeFalse)
Convey("When I Unmarshal it using UnmarshalJSON", func() {
err := ns.UnmarshalJSON(bJSON)
Convey("Then I should get an error", func() {
So(err, ShouldNotBeNil)
So(err.Error(), ShouldContainSubstring, "cannot unmarshal number")
})
})
})
}
func TestStringPtrOrNil(t *testing.T) {
Convey("Given a valid non-Null NullString value", t, func() {
value := sqljson.NullString{
NullString: sql.NullString{
String: "somemail@someserver.net",
Valid: true,
},
}
Convey("When we get the StringPtrOrNil", func() {
res := value.StringPtrOrNil()
Convey("Then we get the string value", func() {
So(res, ShouldNotBeNil)
So(*res, ShouldEqual, "somemail@someserver.net")
})
})
})
Convey("Given a valid null NullString value", t, func() {
value := sqljson.NullString{
NullString: sql.NullString{
String: "",
Valid: false,
},
}
Convey("When we get the StringPtrOrNil", func() {
res := value.StringPtrOrNil()
Convey("Then we get the string value", func() {
So(res, ShouldBeNil)
})
})
})
}