summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/gomega/matchers/panic_matcher_test.go
blob: 326bb10a48a6f4065b714ca71dbb7a75bb532d64 (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
package matchers_test

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

var _ = Describe("Panic", func() {
	Context("when passed something that's not a function that takes zero arguments and returns nothing", func() {
		It("should error", func() {
			success, err := (&PanicMatcher{}).Match("foo")
			Expect(success).To(BeFalse())
			Expect(err).To(HaveOccurred())

			success, err = (&PanicMatcher{}).Match(nil)
			Expect(success).To(BeFalse())
			Expect(err).To(HaveOccurred())

			success, err = (&PanicMatcher{}).Match(func(foo string) {})
			Expect(success).To(BeFalse())
			Expect(err).To(HaveOccurred())

			success, err = (&PanicMatcher{}).Match(func() string { return "bar" })
			Expect(success).To(BeFalse())
			Expect(err).To(HaveOccurred())
		})
	})

	Context("when passed a function of the correct type", func() {
		It("should call the function and pass if the function panics", func() {
			Expect(func() { panic("ack!") }).To(Panic())
			Expect(func() {}).NotTo(Panic())
		})
	})

	Context("when assertion fails", func() {
		It("prints the object passed to Panic when negative", func() {
			failuresMessages := InterceptGomegaFailures(func() {
				Expect(func() { panic("ack!") }).NotTo(Panic())
			})
			Expect(failuresMessages).To(ConsistOf(ContainSubstring("not to panic, but panicked with\n    <string>: ack!")))
		})

		It("prints simple message when positive", func() {
			failuresMessages := InterceptGomegaFailures(func() {
				Expect(func() {}).To(Panic())
			})
			Expect(failuresMessages).To(ConsistOf(MatchRegexp("Expected\n\\s+<func\\(\\)>: .+\nto panic")))
		})
	})
})