-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathfixture_test.go
415 lines (321 loc) · 9.3 KB
/
fixture_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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package gunit
import (
"bytes"
"fmt"
"strings"
"sync/atomic"
"testing"
"time"
)
func TestFinalizeAfterNoActions(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.finalize()
if test.fakeT.failed {
t.Error("Fake should not have been marked as failed.")
}
if test.out.Len() > 0 {
t.Errorf("Output was not blank: '%s'", test.out.String())
}
}
func TestFinalizeAfterFailure(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fakeT.Fail()
test.fixture.finalize()
if output := strings.TrimSpace(test.out.String()); strings.Contains(output, "Failure") {
t.Errorf("Unexpected output: '%s'", output)
}
}
func TestSoPasses(t *testing.T) {
t.Parallel()
test := Setup(false)
result := test.fixture.So(true, ShouldBeTrue)
test.fixture.finalize()
if !result {
t.Error("Expected true result, got false")
}
if test.out.Len() > 0 {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if test.fakeT.failed {
t.Error("Test was erroneously marked as failed.")
}
}
func TestSoFailsAndLogs(t *testing.T) {
t.Parallel()
test := Setup(false)
result := test.fixture.So(true, ShouldBeFalse)
test.fixture.finalize()
if result {
t.Error("Expected false result, got true")
}
if output := strings.TrimSpace(test.out.String()); !strings.Contains(output, "Expected false, got true instead") {
t.Errorf("Unexpected output: [%s]", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
}
func TestAssertPasses(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.Assert(true)
test.fixture.finalize()
if test.out.Len() > 0 {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if test.fakeT.failed {
t.Error("Test was erroneously marked as failed.")
}
}
func TestAssertFailsAndLogs(t *testing.T) {
t.Parallel()
test := Setup(false)
returned := test.fixture.Assert(false)
test.fixture.finalize()
if output := test.out.String(); !strings.Contains(output, "Expected condition to be true, was false instead.") {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
if returned != false {
t.Error("The same condition should be returned form Assert.")
}
}
func TestAssertWithCustomMessageFailsAndLogs(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.Assert(false, "gophers!")
test.fixture.finalize()
if output := test.out.String(); !strings.Contains(output, "gophers!") {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
}
func TestAssertEqualPasses(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.AssertEqual(1, 1)
test.fixture.finalize()
if test.out.Len() > 0 {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if test.fakeT.failed {
t.Error("Test was erroneously marked as failed.")
}
}
func TestAssertEqualFails(t *testing.T) {
t.Parallel()
test := Setup(false)
returned := test.fixture.AssertEqual(1, 2)
test.fixture.finalize()
if output := test.out.String(); !strings.Contains(output, "Expected: [1]\nActual: [2]") {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
if returned != false {
t.Error("Should have returned the result of the assertion (false in this case).")
}
}
func TestAssertSprintEqualPasses(t *testing.T) {
t.Parallel()
test := Setup(false)
returned := test.fixture.AssertSprintEqual(1, 1.0)
test.fixture.finalize()
if test.out.Len() > 0 {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if test.fakeT.failed {
t.Error("Test was erroneously marked as failed.")
}
if returned != true {
t.Error("Should have returned the result of the assertion (true in the case).")
}
}
func TestAssertSprintEqualFails(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.AssertSprintEqual(1, 2)
test.fixture.finalize()
if output := test.out.String(); !strings.Contains(output, "Expected: [1]\nActual: [2]") {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
}
func TestAssertSprintfEqualPasses(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.AssertSprintfEqual(1, uint(1), "%d")
test.fixture.finalize()
if test.out.Len() > 0 {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if test.fakeT.failed {
t.Error("Test was erroneously marked as failed.")
}
}
func TestAssertSprintfEqualFails(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.AssertSprintfEqual(1, 2, "%d")
test.fixture.finalize()
if output := test.out.String(); !strings.Contains(output, "Expected: [1]\nActual: [2]") {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
}
func TestAssertDeepEqualPasses(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.AssertDeepEqual(1, 1)
test.fixture.finalize()
if test.out.Len() > 0 {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if test.fakeT.failed {
t.Error("Test was erroneously marked as failed.")
}
}
func TestAssertDeepEqualFails(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.AssertDeepEqual(1, 2)
test.fixture.finalize()
if output := test.out.String(); !strings.Contains(output, "Expected: [1]\nActual: [2]") {
t.Errorf("Unexpected output: '%s'", test.out.String())
}
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
}
func TestErrorFailsAndLogs(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.Error("1", "2", "3")
test.fixture.finalize()
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
if output := test.out.String(); !strings.Contains(output, "123") {
t.Errorf("Expected string containing: '123' Got: '%s'", output)
}
}
func TestErrorfFailsAndLogs(t *testing.T) {
t.Parallel()
test := Setup(false)
test.fixture.Errorf("%s%s%s", "1", "2", "3")
test.fixture.finalize()
if !test.fakeT.failed {
t.Error("Test should have been marked as failed.")
}
if output := test.out.String(); !strings.Contains(output, "123") {
t.Errorf("Expected string containing: '123' Got: '%s'", output)
}
}
func TestFixturePrinting(t *testing.T) {
t.Parallel()
test := Setup(true)
test.fixture.Print("Print")
test.fixture.Println("Println")
test.fixture.Printf("Printf")
test.fixture.finalize()
output := test.out.String()
if !strings.Contains(output, "Print") {
t.Error("Expected to see 'Print' in the output.")
}
if !strings.Contains(output, "Println") {
t.Error("Expected to see 'Println' in the output.")
}
if !strings.Contains(output, "Printf") {
t.Error("Expected to see 'Printf' in the output.")
}
if t.Failed() {
t.Logf("Actual output: \n%s\n", output)
}
}
func TestPanicIsRecoveredAndPrintedByFinalize(t *testing.T) {
t.Parallel()
test := Setup(false)
var freakOut = func() {
defer test.fixture.finalize()
panic("GOPHERS!")
}
freakOut()
output := test.out.String()
if !strings.Contains(output, "PANIC: GOPHERS!") {
t.Errorf("Expected string containing: 'PANIC: GOPHERS!' Got: '%s'", output)
}
}
func TestFailed(t *testing.T) {
t.Parallel()
test := Setup(false)
if test.fixture.Failed() {
t.Error("Expected Failed() to return false, got true instead.")
}
test.fixture.Error("HI")
if !test.fixture.Failed() {
t.Error("Expected Failed() to return true, got false instead.")
}
}
func TestRunSubTests(t *testing.T) {
counter := int32(0)
outer := newFixture(t, true)
outer.Run("A", func(*Fixture) { atomic.AddInt32(&counter, 1) })
outer.Run("B", func(*Fixture) { atomic.AddInt32(&counter, 1) })
time.Sleep(time.Millisecond)
if counter != 2 {
t.Errorf("Expected 2, got %d instead.", counter)
}
}
//////////////////////////////////////////////////////////////////////////////
type FixtureTestState struct {
fixture *Fixture
fakeT *FakeTestingT
out *bytes.Buffer
verbose bool
}
func Setup(verbose bool) *FixtureTestState {
this := &FixtureTestState{}
this.out = &bytes.Buffer{}
this.fakeT = &FakeTestingT{log: this.out}
this.fixture = newFixture(this.fakeT, verbose)
return this
}
//////////////////////////////////////////////////////////////////////////////
type FakeTestingT struct {
log *bytes.Buffer
failed bool
}
func (self *FakeTestingT) Helper() {}
func (self *FakeTestingT) Name() string { return "FakeTestingT" }
func (self *FakeTestingT) Log(args ...any) { fmt.Fprint(self.log, args...) }
func (self *FakeTestingT) Fail() { self.failed = true }
func (self *FakeTestingT) Failed() bool { return self.failed }
func (this *FakeTestingT) Errorf(format string, args ...any) {}
func (this *FakeTestingT) Fatalf(format string, args ...any) {
this.Fail()
this.Log(fmt.Sprintf(format, args...))
}
//////////////////////////////////////////////////////////////////////////////
func ShouldBeTrue(actual any, expected ...any) string {
if actual != true {
return "Expected true, got false instead"
}
return ""
}
func ShouldBeFalse(actual any, expected ...any) string {
if actual == true {
return "Expected false, got true instead"
}
return ""
}