-
Notifications
You must be signed in to change notification settings - Fork 10
/
hooks_test.go
188 lines (164 loc) · 4.58 KB
/
hooks_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
package testcase_test
import (
"strconv"
"testing"
"go.llib.dev/testcase/sandbox"
"go.llib.dev/testcase"
"go.llib.dev/testcase/assert"
"go.llib.dev/testcase/internal/doubles"
)
func TestSpec_Before_Ordered(t *testing.T) {
var (
actually []int
expected []int
)
t.Run(``, func(t *testing.T) {
s := testcase.NewSpec(t)
s.Sequential()
s.Context("", func(s *testcase.Spec) {
last := s
for i := 0; i < 5; i++ {
currentValue := i
expected = append(expected, currentValue)
last.Context(strconv.Itoa(currentValue), func(next *testcase.Spec) {
next.Before(func(t *testcase.T) {
actually = append(actually, currentValue)
})
last = next
})
}
last.Test(`trigger hooks now`, func(t *testcase.T) {})
})
})
assert.Must(t).Equal(expected, actually)
}
func TestSpec_After(t *testing.T) {
var afters []int
t.Run(``, func(t *testing.T) {
s := testcase.NewSpec(t)
s.After(func(t *testcase.T) { afters = append(afters, 1) })
s.After(func(t *testcase.T) { afters = append(afters, 2) })
s.After(func(t *testcase.T) { afters = append(afters, 3) })
s.Context(`in spec`, func(s *testcase.Spec) {
s.After(func(t *testcase.T) { afters = append(afters, 4) })
s.After(func(t *testcase.T) { afters = append(afters, 5) })
s.After(func(t *testcase.T) { afters = append(afters, 6) })
s.Test(`in testCase`, func(t *testcase.T) {})
})
})
assert.Must(t).Equal([]int{6, 5, 4, 3, 2, 1}, afters)
}
func TestSpec_BeforeAll_blkRunsOnlyOnce(t *testing.T) {
s := testcase.NewSpec(t)
var counter int
blk := func(t *testcase.T) { assert.Must(t).Equal(1, counter) }
s.BeforeAll(func(tb testing.TB) { counter++ })
s.Test(``, blk)
s.Test(``, blk)
s.Test(``, blk)
s.Context(``, func(s *testcase.Spec) {
s.Test(``, blk)
s.Test(``, blk)
s.Test(``, blk)
})
assert.Must(t).Equal(1, counter)
}
func TestSpec_BeforeAll_failIfDefinedAfterTestCases(t *testing.T) {
stub := &doubles.TB{}
sandbox.Run(func() {
s := testcase.NewSpec(stub)
s.Test(``, func(t *testcase.T) {})
s.BeforeAll(func(tb testing.TB) {})
s.Test(``, func(t *testcase.T) {})
s.Finish()
})
assert.Must(t).True(stub.IsFailed)
}
func ExampleSpec_AfterAll() {
s := testcase.NewSpec(nil)
s.AfterAll(func(tb testing.TB) {
// do something after all the test finished running
})
s.Test("this test will run before the AfterAll hook", func(t *testcase.T) {})
}
func TestSpec_AfterAll(t *testing.T) {
stub := &doubles.TB{}
var order []string
sandbox.Run(func() {
s := testcase.NewSpec(stub)
s.HasSideEffect()
s.AfterAll(func(tb testing.TB) {
order = append(order, "AfterAll")
})
s.Test(``, func(t *testcase.T) {
order = append(order, "Test")
})
s.Test(``, func(t *testcase.T) {
order = append(order, "Test")
})
s.Finish()
})
assert.Must(t).False(stub.IsFailed)
assert.Equal(t, []string{"Test", "Test", "AfterAll"}, order,
`expected to only run once (single "AfterAll" in the order array)`,
`and it should have run in order (After all the "Test")`,
)
}
func TestSpec_AfterAll_nested(t *testing.T) {
stub := &doubles.TB{}
var order []string
sandbox.Run(func() {
s := testcase.NewSpec(stub)
s.HasSideEffect()
s.AfterAll(func(tb testing.TB) {
order = append(order, "AfterAll")
})
s.Context(``, func(s *testcase.Spec) {
s.AfterAll(func(tb testing.TB) {
order = append(order, "AfterAll")
})
s.Test(``, func(t *testcase.T) {
order = append(order, "Test")
})
})
s.Test(``, func(t *testcase.T) {
order = append(order, "Test")
})
s.Finish()
})
assert.Must(t).False(stub.IsFailed)
assert.Equal(t, []string{"Test", "Test", "AfterAll", "AfterAll"}, order)
}
func TestSpec_AfterAll_suite(t *testing.T) {
stub := &doubles.TB{}
var order []string
sandbox.Run(func() {
suiteSpec1 := testcase.NewSpec(nil)
suiteSpec1.HasSideEffect()
suiteSpec1.AfterAll(func(tb testing.TB) {
order = append(order, "AfterAll")
})
suiteSpec1.Test(``, func(t *testcase.T) {
order = append(order, "Test")
})
suite1 := suiteSpec1.AsSuite("suite")
suiteSpec2 := testcase.NewSpec(nil)
suiteSpec2.Context("", suite1.Spec)
ss := testcase.NewSpec(stub)
ss.Context("", suiteSpec2.Spec)
ss.Finish()
})
assert.Must(t).False(stub.IsFailed)
assert.Equal(t, []string{"Test", "AfterAll"}, order, "expected to only run once, in the real spec execution")
}
func TestSpec_AfterAll_failIfDefinedAfterTestCases(t *testing.T) {
stub := &doubles.TB{}
sandbox.Run(func() {
s := testcase.NewSpec(stub)
s.Test(``, func(t *testcase.T) {})
s.AfterAll(func(tb testing.TB) {})
s.Test(``, func(t *testcase.T) {})
s.Finish()
})
assert.Must(t).True(stub.IsFailed)
}