-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtester_test.go
More file actions
248 lines (199 loc) · 4.84 KB
/
Copy pathtester_test.go
File metadata and controls
248 lines (199 loc) · 4.84 KB
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
package toaster_test
import (
"context"
"slices"
"testing"
"github.com/moshenahmias/toaster"
)
func TestCaseAndRun_SingleCase(t *testing.T) {
var called bool
var gotA int
var gotB string
toaster.Case(42, "hello").Run(func(a int, b string) {
called = true
gotA = a
gotB = b
})
if !called {
t.Error("expected function to be called")
}
if gotA != 42 || gotB != "hello" {
t.Errorf("unexpected arguments: gotA=%v, gotB=%v", gotA, gotB)
}
}
func TestCaseAndRun_MultipleCases(t *testing.T) {
var results []string
toaster.Case(1, "a").Case(2, "b").Case(3, "c").Run(func(a int, b string) {
results = append(results, b)
})
if len(results) != 3 {
t.Errorf("expected 3 calls, got %d", len(results))
}
if results[0] != "a" || results[1] != "b" || results[2] != "c" {
t.Errorf("unexpected results: %v", results)
}
}
func TestRun_PanicOnNonFunc(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Error("expected panic for non-function argument")
}
}()
toaster.Case(1).Run(123)
}
func TestRun_PanicOnWrongParamCount(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Error("expected panic for wrong parameter count")
}
}()
toaster.Case(1, 2).Run(func(a int) {})
}
func TestCase_Chaining(t *testing.T) {
var count int
c := toaster.Case(1).Case(2).Case(3)
c.Run(func(a int) {
count += a
})
if count != 6 {
t.Errorf("expected sum 6, got %d", count)
}
}
func TestCase_Empty(t *testing.T) {
var called bool
toaster.Case().Run(func() {
called = true
})
if called {
t.Error("expected function not to be called for empty case")
}
}
func TestSkip(t *testing.T) {
var s []int
toaster.Skip(1).Case(2).Skip(3).Run(func(x int) {
s = append(s, x)
})
if len(s) != 1 || s[0] != 2 {
t.Errorf("expected slice to contain only 2, got %v", s)
}
}
func TestSkip_Empty(t *testing.T) {
var called bool
toaster.Skip().Run(func() {
called = true
})
if called {
t.Error("expected function not to be called for empty skip")
}
}
func TestSkip_Chaining(t *testing.T) {
var results []int
toaster.Skip(1).Case(2).Skip(3).Case(4).Run(func(x int) {
results = append(results, x)
})
if len(results) != 2 || results[0] != 2 || results[1] != 4 {
t.Errorf("expected results to be [2, 4], got %v", results)
}
}
func TestSkip_CaseAfterSkip(t *testing.T) {
var results []int
toaster.Skip(1).Case(2).Skip(3).Case(4).Run(func(x int) {
results = append(results, x)
})
if len(results) != 2 || results[0] != 2 || results[1] != 4 {
t.Errorf("expected results to be [2, 4], got %v", results)
}
}
func TestSkip_CaseBeforeSkip(t *testing.T) {
var results []int
toaster.Case(1).Skip(2).Case(3).Run(func(x int) {
results = append(results, x)
})
if len(results) != 2 || results[0] != 1 || results[1] != 3 {
t.Errorf("expected results to be [1, 3], got %v", results)
}
}
func TestSkip_CaseBeforeAndAfterSkip(t *testing.T) {
var results []int
toaster.Case(1).Skip(2).Case(3).Run(func(x int) {
results = append(results, x)
})
if len(results) != 2 || results[0] != 1 || results[1] != 3 {
t.Errorf("expected results to be [1, 3], got %v", results)
}
}
func TestSkip_EmptyCase(t *testing.T) {
var called bool
toaster.Skip().Case().Run(func() {
called = true
})
if called {
t.Error("expected function not to be called for empty case after skip")
}
}
func TestSkip_EmptyCaseAfterSkip(t *testing.T) {
var called bool
toaster.Skip().Case().Run(func() {
called = true
})
if called {
t.Error("expected function not to be called for empty case after skip")
}
}
func TestEvaluator(t *testing.T) {
var called bool
var gotA int
var gotB string
toaster.Case(42, toaster.EvaluatorFunc(func() any {
return "hello"
})).Run(func(a int, b string) {
called = true
gotA = a
gotB = b
})
if !called {
t.Error("expected function to be called")
}
if gotA != 42 || gotB != "hello" {
t.Errorf("unexpected arguments: gotA=%v, gotB=%v", gotA, gotB)
}
}
func TestSkipAll(t *testing.T) {
var called bool
toaster.SkipAll("because we can").Case(1, 2, 3).Case(4, 5, 6).Run(func() {
called = true
})
if called {
t.Error("expected function not to be called for Skip without cases")
}
}
func TestBind(t *testing.T) {
var called bool
var gotA int
var gotB string
toaster.Bind(context.Background(), 42).Case("hello").Run(func(ctx context.Context, a int, b string) {
if ctx.Err() == nil {
called = true
gotA = a
gotB = b
}
})
if !called {
t.Error("expected function to be called")
}
if gotA != 42 || gotB != "hello" {
t.Errorf("unexpected arguments: gotA=%v, gotB=%v", gotA, gotB)
}
}
func TestGo(t *testing.T) {
var results [3]int
toaster.Case(0).Case(1).Case(2).Go(func(x int) {
results[x] = x
})
if len(results) != 3 {
t.Errorf("expected 3 calls, got %d", len(results))
}
if slices.Compare(results[:], []int{0, 1, 2}) != 0 {
t.Errorf("unexpected results: %v", results)
}
}