-
Notifications
You must be signed in to change notification settings - Fork 1
/
null_test.go
104 lines (93 loc) · 2.15 KB
/
null_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
// Copyright (c) 2018 Danilo Bürger <[email protected]>
package null
import (
"encoding"
"encoding/json"
"encoding/xml"
"reflect"
"testing"
)
type nullTestValue interface {
json.Marshaler
json.Unmarshaler
encoding.TextMarshaler
encoding.TextUnmarshaler
xml.Marshaler
xml.Unmarshaler
}
type nullTest struct {
new func() nullTestValue
jsonValue nullTestValue
json string
textValue nullTestValue
text string
xmlValue nullTestValue
xml string
}
func nullTestMarshalJSON(t *testing.T, tt nullTest) {
got, err := json.Marshal(tt.jsonValue)
if err != nil {
t.Error(err)
}
if string(got) != tt.json {
t.Errorf("got %s; expected %s", got, tt.json)
}
}
func nullTestUnmarshalJSON(t *testing.T, tt nullTest) {
got := tt.new()
if err := json.Unmarshal([]byte(tt.json), got); err != nil {
t.Error(err)
}
if !reflect.DeepEqual(got, tt.jsonValue) {
t.Errorf("got %v; expected %v", got, tt.jsonValue)
}
}
func nullTestMarshalText(t *testing.T, tt nullTest) {
got, err := tt.textValue.MarshalText()
if err != nil {
t.Error(err)
}
if string(got) != tt.text {
t.Errorf("got %s; expected %s", got, tt.text)
}
}
func nullTestUnmarshalText(t *testing.T, tt nullTest) {
got := tt.new()
if err := got.UnmarshalText([]byte(tt.text)); err != nil {
t.Error(err)
}
if !reflect.DeepEqual(got, tt.textValue) {
t.Errorf("got %v; expected %v", got, tt.textValue)
}
}
func nullTestMarshalXML(t *testing.T, tt nullTest) {
got, err := xml.Marshal(tt.xmlValue)
if err != nil {
t.Error(err)
}
if string(got) != tt.xml {
t.Errorf("got %s; expected %s", got, tt.xml)
}
}
func nullTestUnmarshalXML(t *testing.T, tt nullTest) {
got := tt.new()
if err := xml.Unmarshal([]byte(tt.xml), got); err != nil {
t.Error(err)
}
if !reflect.DeepEqual(got, tt.xmlValue) {
t.Errorf("got %v; expected %v", got, tt.xmlValue)
}
}
func nullTestRun(t *testing.T, tests []nullTest) {
for _, tt := range tests {
tt := tt
t.Run("", func(t *testing.T) {
nullTestMarshalJSON(t, tt)
nullTestUnmarshalJSON(t, tt)
nullTestMarshalText(t, tt)
nullTestUnmarshalText(t, tt)
nullTestMarshalXML(t, tt)
nullTestUnmarshalXML(t, tt)
})
}
}