-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_helpers_test.go
85 lines (76 loc) · 1.8 KB
/
test_helpers_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
package faket
import (
"testing"
"github.com/prashantv/faket/internal/want"
)
func TestMustHelpers(t *testing.T) {
tests := []struct {
name string
fn func(testing.TB)
mustPass bool
mustFail bool
mustPanic bool
}{
{
name: "passing test",
fn: func(testing.TB) {},
mustPass: true,
},
{
name: "failing test",
fn: func(t testing.TB) {
t.Error("failed with Error")
},
mustFail: true,
},
{
name: "panic test",
fn: func(testing.TB) {
panic("failed with panic")
},
mustFail: true,
mustPanic: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
fnTR := RunTest(tt.fn)
t.Run("MustPass", func(t *testing.T) {
tr := RunTest(func(t testing.TB) {
fnTR.MustPass(t)
})
want.Equal(t, "Failed", tr.Failed(), !tt.mustPass)
})
t.Run("MustFail", func(t *testing.T) {
tr := RunTest(func(t testing.TB) {
fnTR.MustFail(t, "failed")
})
want.Equal(t, "Failed", tr.Failed(), !tt.mustFail)
})
if tt.mustFail {
t.Run("MustFail wrong message", func(t *testing.T) {
tr := RunTest(func(t testing.TB) {
fnTR.MustFail(t, "unknown")
})
want.Equal(t, "Failed", tr.Failed(), true)
want.Contains(t, "Message", tr.Logs().String(), "missing expected log")
})
}
t.Run("MustPanic", func(t *testing.T) {
tr := RunTest(func(t testing.TB) {
fnTR.MustPanic(t, "panic")
})
want.Equal(t, "Failed", tr.Failed(), !tt.mustPanic)
})
if tt.mustPanic {
t.Run("MustPanic wrong contains", func(t *testing.T) {
tr := RunTest(func(t testing.TB) {
fnTR.MustPanic(t, "unknown")
})
want.Equal(t, "Failed", tr.Failed(), true)
want.Contains(t, "Message", tr.Logs().String(), "panic string doesn't contain")
})
}
})
}
}