summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/internal/leafnodes/suite_nodes_test.go
blob: 246b329fe2ba1d311b5083c940e49a14f6005ac1 (plain)
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
package leafnodes_test

import (
	. "github.com/onsi/ginkgo"
	. "github.com/onsi/gomega"

	. "github.com/onsi/ginkgo/internal/leafnodes"

	"time"

	"github.com/onsi/ginkgo/internal/codelocation"
	Failer "github.com/onsi/ginkgo/internal/failer"
	"github.com/onsi/ginkgo/types"
)

var _ = Describe("SuiteNodes", func() {
	Describe("BeforeSuite nodes", func() {
		var befSuite SuiteNode
		var failer *Failer.Failer
		var codeLocation types.CodeLocation
		var innerCodeLocation types.CodeLocation
		var outcome bool

		BeforeEach(func() {
			failer = Failer.New()
			codeLocation = codelocation.New(0)
			innerCodeLocation = codelocation.New(0)
		})

		Context("when the body passes", func() {
			BeforeEach(func() {
				befSuite = NewBeforeSuiteNode(func() {
					time.Sleep(10 * time.Millisecond)
				}, codeLocation, 0, failer)
				outcome = befSuite.Run(0, 0, "")
			})

			It("should return true when run and report as passed", func() {
				Ω(outcome).Should(BeTrue())
				Ω(befSuite.Passed()).Should(BeTrue())
			})

			It("should have the correct summary", func() {
				summary := befSuite.Summary()
				Ω(summary.ComponentType).Should(Equal(types.SpecComponentTypeBeforeSuite))
				Ω(summary.CodeLocation).Should(Equal(codeLocation))
				Ω(summary.State).Should(Equal(types.SpecStatePassed))
				Ω(summary.RunTime).Should(BeNumerically(">=", 10*time.Millisecond))
				Ω(summary.Failure).Should(BeZero())
			})
		})

		Context("when the body fails", func() {
			BeforeEach(func() {
				befSuite = NewBeforeSuiteNode(func() {
					failer.Fail("oops", innerCodeLocation)
				}, codeLocation, 0, failer)
				outcome = befSuite.Run(0, 0, "")
			})

			It("should return false when run and report as failed", func() {
				Ω(outcome).Should(BeFalse())
				Ω(befSuite.Passed()).Should(BeFalse())
			})

			It("should have the correct summary", func() {
				summary := befSuite.Summary()
				Ω(summary.State).Should(Equal(types.SpecStateFailed))
				Ω(summary.Failure.Message).Should(Equal("oops"))
				Ω(summary.Failure.Location).Should(Equal(innerCodeLocation))
				Ω(summary.Failure.ForwardedPanic).Should(BeEmpty())
				Ω(summary.Failure.ComponentIndex).Should(Equal(0))
				Ω(summary.Failure.ComponentType).Should(Equal(types.SpecComponentTypeBeforeSuite))
				Ω(summary.Failure.ComponentCodeLocation).Should(Equal(codeLocation))
			})
		})

		Context("when the body times out", func() {
			BeforeEach(func() {
				befSuite = NewBeforeSuiteNode(func(done Done) {
				}, codeLocation, time.Millisecond, failer)
				outcome = befSuite.Run(0, 0, "")
			})

			It("should return false when run and report as failed", func() {
				Ω(outcome).Should(BeFalse())
				Ω(befSuite.Passed()).Should(BeFalse())
			})

			It("should have the correct summary", func() {
				summary := befSuite.Summary()
				Ω(summary.State).Should(Equal(types.SpecStateTimedOut))
				Ω(summary.Failure.ForwardedPanic).Should(BeEmpty())
				Ω(summary.Failure.ComponentIndex).Should(Equal(0))
				Ω(summary.Failure.ComponentType).Should(Equal(types.SpecComponentTypeBeforeSuite))
				Ω(summary.Failure.ComponentCodeLocation).Should(Equal(codeLocation))
			})
		})

		Context("when the body panics", func() {
			BeforeEach(func() {
				befSuite = NewBeforeSuiteNode(func() {
					panic("bam")
				}, codeLocation, 0, failer)
				outcome = befSuite.Run(0, 0, "")
			})

			It("should return false when run and report as failed", func() {
				Ω(outcome).Should(BeFalse())
				Ω(befSuite.Passed()).Should(BeFalse())
			})

			It("should have the correct summary", func() {
				summary := befSuite.Summary()
				Ω(summary.State).Should(Equal(types.SpecStatePanicked))
				Ω(summary.Failure.ForwardedPanic).Should(Equal("bam"))
				Ω(summary.Failure.ComponentIndex).Should(Equal(0))
				Ω(summary.Failure.ComponentType).Should(Equal(types.SpecComponentTypeBeforeSuite))
				Ω(summary.Failure.ComponentCodeLocation).Should(Equal(codeLocation))
			})
		})
	})

	Describe("AfterSuite nodes", func() {
		var aftSuite SuiteNode
		var failer *Failer.Failer
		var codeLocation types.CodeLocation
		var innerCodeLocation types.CodeLocation
		var outcome bool

		BeforeEach(func() {
			failer = Failer.New()
			codeLocation = codelocation.New(0)
			innerCodeLocation = codelocation.New(0)
		})

		Context("when the body passes", func() {
			BeforeEach(func() {
				aftSuite = NewAfterSuiteNode(func() {
					time.Sleep(10 * time.Millisecond)
				}, codeLocation, 0, failer)
				outcome = aftSuite.Run(0, 0, "")
			})

			It("should return true when run and report as passed", func() {
				Ω(outcome).Should(BeTrue())
				Ω(aftSuite.Passed()).Should(BeTrue())
			})

			It("should have the correct summary", func() {
				summary := aftSuite.Summary()
				Ω(summary.ComponentType).Should(Equal(types.SpecComponentTypeAfterSuite))
				Ω(summary.CodeLocation).Should(Equal(codeLocation))
				Ω(summary.State).Should(Equal(types.SpecStatePassed))
				Ω(summary.RunTime).Should(BeNumerically(">=", 10*time.Millisecond))
				Ω(summary.Failure).Should(BeZero())
			})
		})

		Context("when the body fails", func() {
			BeforeEach(func() {
				aftSuite = NewAfterSuiteNode(func() {
					failer.Fail("oops", innerCodeLocation)
				}, codeLocation, 0, failer)
				outcome = aftSuite.Run(0, 0, "")
			})

			It("should return false when run and report as failed", func() {
				Ω(outcome).Should(BeFalse())
				Ω(aftSuite.Passed()).Should(BeFalse())
			})

			It("should have the correct summary", func() {
				summary := aftSuite.Summary()
				Ω(summary.State).Should(Equal(types.SpecStateFailed))
				Ω(summary.Failure.Message).Should(Equal("oops"))
				Ω(summary.Failure.Location).Should(Equal(innerCodeLocation))
				Ω(summary.Failure.ForwardedPanic).Should(BeEmpty())
				Ω(summary.Failure.ComponentIndex).Should(Equal(0))
				Ω(summary.Failure.ComponentType).Should(Equal(types.SpecComponentTypeAfterSuite))
				Ω(summary.Failure.ComponentCodeLocation).Should(Equal(codeLocation))
			})
		})

		Context("when the body times out", func() {
			BeforeEach(func() {
				aftSuite = NewAfterSuiteNode(func(done Done) {
				}, codeLocation, time.Millisecond, failer)
				outcome = aftSuite.Run(0, 0, "")
			})

			It("should return false when run and report as failed", func() {
				Ω(outcome).Should(BeFalse())
				Ω(aftSuite.Passed()).Should(BeFalse())
			})

			It("should have the correct summary", func() {
				summary := aftSuite.Summary()
				Ω(summary.State).Should(Equal(types.SpecStateTimedOut))
				Ω(summary.Failure.ForwardedPanic).Should(BeEmpty())
				Ω(summary.Failure.ComponentIndex).Should(Equal(0))
				Ω(summary.Failure.ComponentType).Should(Equal(types.SpecComponentTypeAfterSuite))
				Ω(summary.Failure.ComponentCodeLocation).Should(Equal(codeLocation))
			})
		})

		Context("when the body panics", func() {
			BeforeEach(func() {
				aftSuite = NewAfterSuiteNode(func() {
					panic("bam")
				}, codeLocation, 0, failer)
				outcome = aftSuite.Run(0, 0, "")
			})

			It("should return false when run and report as failed", func() {
				Ω(outcome).Should(BeFalse())
				Ω(aftSuite.Passed()).Should(BeFalse())
			})

			It("should have the correct summary", func() {
				summary := aftSuite.Summary()
				Ω(summary.State).Should(Equal(types.SpecStatePanicked))
				Ω(summary.Failure.ForwardedPanic).Should(Equal("bam"))
				Ω(summary.Failure.ComponentIndex).Should(Equal(0))
				Ω(summary.Failure.ComponentType).Should(Equal(types.SpecComponentTypeAfterSuite))
				Ω(summary.Failure.ComponentCodeLocation).Should(Equal(codeLocation))
			})
		})
	})
})