-
Notifications
You must be signed in to change notification settings - Fork 0
/
json_nullable_test.go
149 lines (125 loc) · 4.15 KB
/
json_nullable_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
package nulls
import (
"encoding/json"
"errors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/suite"
"testing"
)
type aStruct struct {
An int `json:"an"`
}
// TestNewJSONNullable tests NewJSONNullable.
func TestNewJSONNullable(t *testing.T) {
n := NewJSONNullable[aStruct](aStruct{An: 12})
assert.True(t, n.Valid, "should be valid")
assert.Equal(t, 12, n.V.An, "should have set correct value")
}
// jSONNullableValueMock implements JSONNullableValue.
type jSONNullableValueMock struct {
mock.Mock
}
func (n *jSONNullableValueMock) MarshalJSON() ([]byte, error) {
args := n.Called()
var b []byte
b, _ = args.Get(0).([]byte)
return b, args.Error(1)
}
func (n *jSONNullableValueMock) UnmarshalJSON(data []byte) error {
return n.Called(data).Error(0)
}
// JSONNullableMarshalJSONSuite tests JSONNullable.MarshalJSON.
type JSONNullableMarshalJSONSuite struct {
suite.Suite
}
func (suite *JSONNullableMarshalJSONSuite) TestNotValid() {
n := JSONNullable[*jSONNullableValueMock]{V: &jSONNullableValueMock{}}
raw, err := json.Marshal(n)
suite.Require().NoError(err, "should not fail")
suite.Equal(jsonNull, raw, "should return correct value")
}
func (suite *JSONNullableMarshalJSONSuite) TestMarshalFail() {
n := NewJSONNullable(&jSONNullableValueMock{})
n.V.On("MarshalJSON").Return(nil, errors.New("sad life"))
defer n.V.AssertExpectations(suite.T())
_, err := json.Marshal(n)
suite.Require().Error(err, "should fail")
}
func (suite *JSONNullableMarshalJSONSuite) TestOK() {
n := NewJSONNullable(&jSONNullableValueMock{})
expectRaw := marshalMust("meow")
n.V.On("MarshalJSON").Return(expectRaw, nil)
defer n.V.AssertExpectations(suite.T())
raw, err := json.Marshal(n)
suite.Require().NoError(err, "should not fail")
suite.Equal(expectRaw, raw, "should return correct value")
}
func TestJSONNullable_MarshalJSON(t *testing.T) {
suite.Run(t, new(JSONNullableMarshalJSONSuite))
}
// JSONNullableUnmarshalJSONSuite tests JSONNullable.UnmarshalJSON.
type JSONNullableUnmarshalJSONSuite struct {
suite.Suite
}
func (suite *JSONNullableUnmarshalJSONSuite) TestNull() {
var n JSONNullable[*jSONNullableValueMock]
err := json.Unmarshal(jsonNull, &n)
suite.Require().NoError(err, "should not fail")
suite.False(n.Valid, "should not be valid")
}
func (suite *JSONNullableUnmarshalJSONSuite) TestUnmarshalFail() {
raw := marshalMust("meow")
n := JSONNullable[*jSONNullableValueMock]{V: &jSONNullableValueMock{}}
n.V.On("UnmarshalJSON", raw).Return(errors.New("sad life"))
defer n.V.AssertExpectations(suite.T())
err := json.Unmarshal(raw, &n)
suite.Require().Error(err, "should fail")
}
func (suite *JSONNullableUnmarshalJSONSuite) TestOK() {
raw := marshalMust(`{"an": 12}`)
n := JSONNullable[*jSONNullableValueMock]{V: &jSONNullableValueMock{}}
n.V.On("UnmarshalJSON", raw).Return(nil)
defer n.V.AssertExpectations(suite.T())
err := json.Unmarshal(raw, &n)
suite.Require().NoError(err, "should not fail")
suite.True(n.Valid, "should be valid")
}
func TestJSONNullable_UnmarshalJSON(t *testing.T) {
suite.Run(t, new(JSONNullableUnmarshalJSONSuite))
}
// JSONNullableScanSuite tests JSONNullable.Scan.
type JSONNullableScanSuite struct {
suite.Suite
}
func (suite *JSONNullableScanSuite) TestNull() {
n := JSONNullable[*jSONNullableValueMock]{V: &jSONNullableValueMock{}}
err := n.Scan(nil)
suite.Error(err, "should fail")
}
func (suite *JSONNullableScanSuite) TestOK() {
src := "Hello World!"
n := JSONNullable[*jSONNullableValueMock]{V: &jSONNullableValueMock{}}
err := n.Scan(src)
suite.Error(err, "should fail")
}
func TestJSONNullable_Scan(t *testing.T) {
suite.Run(t, new(JSONNullableScanSuite))
}
// JSONNullableValueSuite tests JSONNullable.Value.
type JSONNullableValueSuite struct {
suite.Suite
}
func (suite *JSONNullableValueSuite) TestNull() {
n := JSONNullable[*jSONNullableValueMock]{V: &jSONNullableValueMock{}}
_, err := n.Value()
suite.Error(err, "should fail")
}
func (suite *JSONNullableValueSuite) TestOK() {
n := NewJSONNullable(&jSONNullableValueMock{})
_, err := n.Value()
suite.Error(err, "should fail")
}
func TestJSONNullable_Value(t *testing.T) {
suite.Run(t, new(JSONNullableValueSuite))
}