-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption_test.go
258 lines (245 loc) · 5.05 KB
/
option_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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package option
import (
"reflect"
"strconv"
"testing"
)
func TestFlatMap(t *testing.T) {
type args struct {
opt Option[Option[bool]]
mapper func(Option[bool]) Option[bool]
}
tests := []struct {
name string
args args
want Option[bool]
}{
{
name: "FlatMap with Some[Some[true]] get converted to Some[true]",
args: args{
opt: Some[Option[bool]](
Some[bool](true),
),
mapper: func(o1 Option[bool]) Option[bool] {
return o1
},
},
want: Some[bool](true),
},
{
name: "FlatMap with Some[None] get converted to None",
args: args{
opt: Some[Option[bool]](
None[bool](),
),
mapper: func(o1 Option[bool]) Option[bool] {
return o1
},
},
want: None[bool](),
},
{
name: "FlatMap with None[Option[true]] get converted to None",
args: args{
opt: None[Option[bool]](),
mapper: func(o1 Option[bool]) Option[bool] {
return o1
},
},
want: None[bool](),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := FlatMap(tt.args.opt, tt.args.mapper); !reflect.DeepEqual(got, tt.want) {
t.Errorf("FlatMap() = %v, want %v", got, tt.want)
}
})
}
}
func TestMap(t *testing.T) {
type args struct {
opt Option[int]
mapper func(int) string
}
tests := []struct {
name string
args args
want Option[string]
}{
{
name: "Map with Some[int] get converted to Some[string]",
args: args{
opt: Some[int](4),
mapper: func(i int) string {
return strconv.Itoa(i)
},
},
want: Some[string]("4"),
},
{
name: "Map with None[int] get converted to None[string]",
args: args{
opt: None[int](),
mapper: func(i int) string {
return strconv.Itoa(i)
},
},
want: None[string](),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Map(tt.args.opt, tt.args.mapper); !reflect.DeepEqual(got, tt.want) {
t.Errorf("Map() = %v, want %v", got, tt.want)
}
})
}
}
func TestToOption(t *testing.T) {
type args struct {
v map[int]string
}
tests := []struct {
name string
args args
want Option[map[int]string]
}{
{
name: "NewOption with value is converted to Some(value)",
args: args{v: map[int]string{}},
want: Some[map[int]string](map[int]string{}),
},
{
name: "NewOption without value is converted to None",
args: args{v: nil},
want: None[map[int]string](),
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewOption(tt.args.v); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewOption() = %v, want %v", got, tt.want)
}
})
}
}
func TestNewOptionFromPointer(t *testing.T) {
type T = int
cases := []struct {
name string
input *T
expected Option[T]
}{
{
name: "Test with nil pointer should return None",
input: nil,
expected: None[T](),
},
{
name: "Test with valid pointer should return Some",
input: func() *T {
var v T = 5
return &v
}(),
expected: Some[T](5),
},
}
for _, tt := range cases {
t.Run(tt.name, func(t *testing.T) {
result := NewOptionFromPointer(tt.input)
if !result.Equal(tt.expected) {
t.Errorf("Expected: %v, got: %v", tt.expected, result)
}
})
}
}
func TestOptionEqual(t *testing.T) {
type T = int
cases := []struct {
name string
x Option[T]
y Option[T]
expected bool
}{
{
name: "Both options are None, should be equal",
x: None[T](),
y: None[T](),
expected: true,
},
{
name: "Both options are None with implicit type, should be equal",
x: None[T](),
y: None[T](),
expected: true,
},
{
name: "One is None, one is Some, should not be equal",
x: None[T](),
y: Some[T](1),
expected: false,
},
{
name: "Both are Some and same value, should be equal",
x: Some[T](1),
y: Some[T](1),
expected: true,
},
{
name: "Both are Some and same value with implicit type, should be equal",
x: Some[T](1),
y: Some(1),
expected: true,
},
{
name: "Both are Some but different values, should not be equal",
x: Some[T](1),
y: Some[T](2),
expected: false,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
actual := tc.x.Equal(tc.y)
if actual != tc.expected {
t.Errorf("Equal() = %v, want %v", actual, tc.expected)
}
})
}
}
func TestMatch(t *testing.T) {
type T1 = int
type T2 = string
cases := []struct {
name string
actual T2
expected T2
}{
{
name: "Test Match method with Some value",
actual: Match(Some(1), func(v T1) T2 {
return "Some"
}, func() T2 {
return "None"
}),
expected: "Some",
},
{
name: "Test Match method with None value",
actual: Match(None[T1](), func(v T1) T2 {
return "Some"
}, func() T2 {
return "None"
}),
expected: "None",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
if tc.actual != tc.expected {
t.Errorf("Match() = %v, want %v", tc.actual, tc.expected)
}
})
}
}