-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_test.go
179 lines (149 loc) · 4.12 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
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
package goption_test
import (
"encoding/json"
"fmt"
"time"
"github.com/manicar2093/goption"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
type ExampleStuct struct {
Name goption.Optional[string] `json:"name"`
LastName goption.Optional[string] `json:"last_name,omitempty"`
Age goption.Optional[int] `json:"age"`
}
func asJsonString(v any) string {
return fmt.Sprintf(
`"%v"`,
v,
)
}
var _ = Describe("Json", func() {
Describe("UnmarshalJSON", func() {
It("generates optional from json number", func() {
var (
expectedNameData = 10000
expectedNameDataString = "10000"
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[int]()
)
err := holder.UnmarshalJSON(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
})
It("generates optional from json float", func() {
var (
expectedNameData = 100.00
expectedNameDataString = "100.00"
jsonData = []byte(expectedNameDataString)
holder = goption.Empty[float64]()
)
err := holder.UnmarshalJSON(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
})
DescribeTable("generates optional from json string", func(expectedNameData any) {
var (
jsonData = []byte(asJsonString(expectedNameData))
holder = goption.Empty[string]()
)
err := holder.UnmarshalJSON(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.Get()).To(Equal(expectedNameData))
},
Entry("one line string", "a name"),
Entry("multiline strings", `a name
a name
a name
a name`),
Entry("multiline strings with carriage return", "\r\na name\r\n"),
)
When("is as null", func() {
DescribeTable("creates an empty optional", func(jsonData []byte) {
var (
holder = goption.Empty[string]()
)
err := holder.UnmarshalJSON(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.IsPresent()).To(BeFalse())
},
Entry("null as string", []byte(`"null"`)),
Entry("native null", []byte(`null`)),
)
It("handles custom types", func() {
type testType time.Time
var (
holder = goption.Empty[testType]()
)
err := holder.UnmarshalJSON([]byte(`"null"`))
Expect(err).ToNot(HaveOccurred())
Expect(holder.IsPresent()).To(BeFalse())
})
})
When("is zero", func() {
It("creates an empty optional", func() {
var (
jsonData = []byte(`""`)
holder = goption.Empty[string]()
)
err := holder.UnmarshalJSON(jsonData)
Expect(err).ToNot(HaveOccurred())
Expect(holder.IsPresent()).To(BeFalse())
})
})
})
Describe("MarshalJson", func() {
It("creates json from optional", func() {
var (
expectedValue = "my name"
expectedJson = `"my name"`
expectedOptional = goption.Of(expectedValue)
)
got, err := json.Marshal(expectedOptional)
Expect(err).ToNot(HaveOccurred())
Expect(string(got)).To(Equal(expectedJson))
})
It("creates json when optional is in a struct", func() {
var (
expectedName = "expectedName"
expectedLastName = "expectedLastName"
expectedAge = 40
expectedStruct = ExampleStuct{
Name: goption.Of(expectedName),
LastName: goption.Of(expectedLastName),
Age: goption.Of(expectedAge),
}
)
got, err := json.Marshal(expectedStruct)
Expect(err).ToNot(HaveOccurred())
Expect(got).To(
MatchJSON(
fmt.Sprintf(`{"name":"%v",
"last_name":"%v",
"age":%v}`, expectedName, expectedLastName, expectedAge),
),
)
})
When("optional has omitempty in a struct", func() {
It("send it as null in json", func() {
var (
expectedName = "expectedName"
expectedAge = 40
expectedStruct = ExampleStuct{
Name: goption.Of(expectedName),
Age: goption.Of(expectedAge),
}
)
got, err := json.Marshal(expectedStruct)
Expect(err).ToNot(HaveOccurred())
Expect(got).To(
MatchJSON(
fmt.Sprintf(`{"name":"%v",
"last_name":null,
"age":%v}`, expectedName, expectedAge),
),
)
})
})
})
})