-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_test.go
103 lines (88 loc) · 1.88 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
package types
import (
"encoding/json"
"testing"
)
func TestJSON(t *testing.T) {
type Value struct {
Name string `json:"name"`
}
v := JSON[Value]{}
t.Run("Scan", func(t *testing.T) {
t.Run("nil", func(t *testing.T) {
if err := v.Scan(nil); err != nil {
t.Error(err)
}
if v.Valid {
t.Error("expected false")
}
})
t.Run("[]byte", func(t *testing.T) {
if err := v.Scan([]byte(`{"name":"test"}`)); err != nil {
t.Error(err)
}
if !v.Valid {
t.Error("expected true")
}
if v.V.Name != "test" {
t.Error("expected test")
}
})
t.Run("string", func(t *testing.T) {
if err := v.Scan(`{"name":"test"}`); err != nil {
t.Error(err)
}
if !v.Valid {
t.Error("expected true")
}
})
t.Run("unsupported", func(t *testing.T) {
if err := v.Scan(1); err == nil {
t.Error("expected error")
}
})
t.Run("json marshal", func(t *testing.T) {
v := JSON[Value]{V: Value{Name: "test"}, Valid: true}
vByte, err := json.Marshal(v)
if err != nil {
t.Error(err)
}
if string(vByte) != `{"name":"test"}` {
t.Error("expected {\"name\":\"test\"}")
}
})
t.Run("json unmarshal", func(t *testing.T) {
v := JSON[Value]{}
if err := json.Unmarshal([]byte(`{"name":"test"}`), &v); err != nil {
t.Error(err)
}
if v.V.Name != "test" {
t.Error("expected test")
}
if !v.Valid {
t.Error("expected true")
}
})
t.Run("json unmarshal null", func(t *testing.T) {
v := JSON[Value]{}
if err := json.Unmarshal([]byte("null"), &v); err != nil {
t.Error(err)
}
if v.Valid {
t.Error("expected false")
}
})
t.Run("json marshal number", func(t *testing.T) {
v := map[string]interface{}{
"name": json.Number("1"),
}
res, err := json.Marshal(v)
if err != nil {
t.Error(err)
}
if string(res) != `{"name":1}` {
t.Error("expected false")
}
})
})
}