File: fail_fixture_test.go

package info (click to toggle)
golang-ginkgo 1.2.0%2Bgit20161006.acfa16a-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,324 kB
  • ctags: 1,210
  • sloc: makefile: 12
file content (99 lines) | stat: -rw-r--r-- 2,248 bytes parent folder | download | duplicates (2)
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
package fail_fixture_test

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

var _ = It("handles top level failures", func() {
	Ω("a top level failure on line 9").Should(Equal("nope"))
	println("NEVER SEE THIS")
})

var _ = It("handles async top level failures", func(done Done) {
	Fail("an async top level failure on line 14")
	println("NEVER SEE THIS")
}, 0.1)

var _ = It("FAIL in a goroutine", func(done Done) {
	go func() {
		defer GinkgoRecover()
		Fail("a top level goroutine failure on line 21")
		println("NEVER SEE THIS")
	}()
}, 0.1)

var _ = Describe("Excercising different failure modes", func() {
	It("synchronous failures", func() {
		Ω("a sync failure").Should(Equal("nope"))
		println("NEVER SEE THIS")
	})

	It("synchronous panics", func() {
		panic("a sync panic")
		println("NEVER SEE THIS")
	})

	It("synchronous failures with FAIL", func() {
		Fail("a sync FAIL failure")
		println("NEVER SEE THIS")
	})

	It("async timeout", func(done Done) {
		Ω(true).Should(BeTrue())
	}, 0.1)

	It("async failure", func(done Done) {
		Ω("an async failure").Should(Equal("nope"))
		println("NEVER SEE THIS")
	}, 0.1)

	It("async panic", func(done Done) {
		panic("an async panic")
		println("NEVER SEE THIS")
	}, 0.1)

	It("async failure with FAIL", func(done Done) {
		Fail("an async FAIL failure")
		println("NEVER SEE THIS")
	}, 0.1)

	It("FAIL in a goroutine", func(done Done) {
		go func() {
			defer GinkgoRecover()
			Fail("a goroutine FAIL failure")
			println("NEVER SEE THIS")
		}()
	}, 0.1)

	It("Gomega in a goroutine", func(done Done) {
		go func() {
			defer GinkgoRecover()
			Ω("a goroutine failure").Should(Equal("nope"))
			println("NEVER SEE THIS")
		}()
	}, 0.1)

	It("Panic in a goroutine", func(done Done) {
		go func() {
			defer GinkgoRecover()
			panic("a goroutine panic")
			println("NEVER SEE THIS")
		}()
	}, 0.1)

	Measure("a FAIL measure", func(Benchmarker) {
		Fail("a measure FAIL failure")
		println("NEVER SEE THIS")
	}, 1)

	Measure("a gomega failed measure", func(Benchmarker) {
		Ω("a measure failure").Should(Equal("nope"))
		println("NEVER SEE THIS")
	}, 1)

	Measure("a panicking measure", func(Benchmarker) {
		panic("a measure panic")
		println("NEVER SEE THIS")
	}, 1)
})