-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrapper-float_test.go
242 lines (227 loc) · 5.47 KB
/
wrapper-float_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
package wrappers
import (
"encoding/json"
"math"
"testing"
)
func TestWrapperFloat_Wrap(t *testing.T) {
tests := []struct {
name string
input any
discard bool
want float64
wantError bool
wantDiscard bool
}{
{
name: "Wrap float64",
input: 3.1415,
discard: false,
want: 3.1415,
wantError: false,
wantDiscard: false,
},
{
name: "Wrap float32",
input: float32(2.718),
discard: false,
want: 2.718,
wantError: false,
wantDiscard: false,
},
{
name: "Wrap int",
input: 42,
discard: false,
want: 42.0,
wantError: false,
wantDiscard: false,
},
{
name: "Wrap string valid float",
input: "123.456",
discard: false,
want: 123.456,
wantError: false,
wantDiscard: false,
},
{
name: "Wrap string invalid float",
input: "invalid",
discard: false,
want: 0.0,
wantError: true,
wantDiscard: true,
},
{
name: "Wrap string invalid float discard",
input: "invalid",
discard: true,
want: 0.0,
wantError: false,
wantDiscard: true,
},
{
name: "Wrap unsupported type",
input: true,
discard: false,
want: 0.0,
wantError: true,
wantDiscard: true,
},
{
name: "Wrap unsupported type discard",
input: true,
discard: true,
want: 0.0,
wantError: false,
wantDiscard: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
wrapper := New[*WrapperFloat]()
err := wrapper.Wrap(tt.input, tt.discard)
if tt.wantError && err == nil {
t.Fatalf("Expected error but got none")
}
if !tt.wantError && err != nil {
t.Fatalf("Did not expect error but got: %v", err)
}
if tt.wantDiscard && !wrapper.IsDiscarded() {
t.Errorf("Expected wrapper to be discarded")
}
// Due to floating point precision, we need to use an epsilon for comparison.
// To explain: if the input is a float32, the unwrapped value will be a float64.
// In the case of float32, it has a precision of about 7 decimal digits, while float64 has a precision of
// about 15-16 decimal digits. When you convert from float32 to float64, you may see slight differences
// due to how these values are stored in binary format.
// The value float32(2.718) is actually stored as 2.7179999351501465 in binary representation,
// which is the closest representable value in float32.
const epsilon = 1e-6
unwrapped := wrapper.Unwrap()
if math.Abs(unwrapped-tt.want) > epsilon {
t.Errorf("Unwrapped value = %v, want %v", unwrapped, tt.want)
}
})
}
}
// TestWrapperFloat_JSONMarshal tests JSON marshalling of WrapperFloat.
func TestWrapperFloat_JSONMarshal(t *testing.T) {
tests := []struct {
name string
wrapper *WrapperFloat
expectedJSON string
}{
{
name: "Marshal positive float",
wrapper: func() *WrapperFloat {
w := New[*WrapperFloat]()
w.Wrap(3.14, false)
return w
}(),
expectedJSON: "3.14",
},
{
name: "Marshal negative float",
wrapper: func() *WrapperFloat {
w := New[*WrapperFloat]()
w.Wrap(-2.71, false)
return w
}(),
expectedJSON: "-2.71",
},
{
name: "Marshal discarded float",
wrapper: func() *WrapperFloat {
w := New[*WrapperFloat]()
w.Discard()
return w
}(),
expectedJSON: "null",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
jsonData, err := json.Marshal(tt.wrapper)
if err != nil {
t.Fatalf("Failed to marshal WrapperFloat: %v", err)
}
if string(jsonData) != tt.expectedJSON {
t.Errorf("Marshalled JSON = %v, want %v", string(jsonData), tt.expectedJSON)
}
})
}
}
// TestWrapperFloat_JSONUnmarshal tests JSON unmarshalling of WrapperFloat.
func TestWrapperFloat_JSONUnmarshal(t *testing.T) {
tests := []struct {
name string
jsonInput string
want float64
wantDiscard bool
wantError bool
}{
{
name: "Unmarshal positive float",
jsonInput: "3.14",
want: 3.14,
wantDiscard: false,
wantError: false,
},
{
name: "Unmarshal negative float",
jsonInput: "-2.71",
want: -2.71,
wantDiscard: false,
wantError: false,
},
{
name: "Unmarshal valid string float",
jsonInput: `"123.456"`,
want: 123.456,
wantDiscard: false,
wantError: false,
},
{
name: "Unmarshal invalid string float",
jsonInput: `"invalid"`,
want: 0.0,
wantDiscard: true,
wantError: true,
},
{
name: "Unmarshal null",
jsonInput: "null",
want: 0.0,
wantDiscard: true,
wantError: true,
},
{
name: "Unmarshal unsupported type",
jsonInput: `"true"`,
want: 0.0,
wantDiscard: false,
wantError: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
wrapper := New[*WrapperFloat]()
err := json.Unmarshal([]byte(tt.jsonInput), wrapper)
if tt.wantError && err == nil {
t.Fatalf("Expected error but got none")
}
if !tt.wantError && err != nil {
t.Fatalf("Did not expect error but got: %v", err)
}
if tt.wantDiscard && !wrapper.IsDiscarded() {
t.Errorf("Expected wrapper to be discarded")
}
unwrapped := wrapper.Unwrap()
if unwrapped != tt.want {
t.Errorf("Unwrapped value = %v, want %v", unwrapped, tt.want)
}
})
}
}