File: types_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,512 bytes parent folder | download | duplicates (5)
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 types_test

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

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

var specStates = []SpecState{
	SpecStatePassed,
	SpecStateTimedOut,
	SpecStatePanicked,
	SpecStateFailed,
	SpecStatePending,
	SpecStateSkipped,
}

func verifySpecSummary(caller func(SpecSummary) bool, trueStates ...SpecState) {
	summary := SpecSummary{}
	trueStateLookup := map[SpecState]bool{}
	for _, state := range trueStates {
		trueStateLookup[state] = true
		summary.State = state
		Ω(caller(summary)).Should(BeTrue())
	}

	for _, state := range specStates {
		if trueStateLookup[state] {
			continue
		}
		summary.State = state
		Ω(caller(summary)).Should(BeFalse())
	}
}

var _ = Describe("Types", func() {
	Describe("IsFailureState", func() {
		It("knows when it is in a failure-like state", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.State.IsFailure()
			}, SpecStateTimedOut, SpecStatePanicked, SpecStateFailed)
		})
	})

	Describe("SpecSummary", func() {
		It("knows when it is in a failure-like state", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.HasFailureState()
			}, SpecStateTimedOut, SpecStatePanicked, SpecStateFailed)
		})

		It("knows when it passed", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.Passed()
			}, SpecStatePassed)
		})

		It("knows when it has failed", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.Failed()
			}, SpecStateFailed)
		})

		It("knows when it has panicked", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.Panicked()
			}, SpecStatePanicked)
		})

		It("knows when it has timed out", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.TimedOut()
			}, SpecStateTimedOut)
		})

		It("knows when it is pending", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.Pending()
			}, SpecStatePending)
		})

		It("knows when it is skipped", func() {
			verifySpecSummary(func(summary SpecSummary) bool {
				return summary.Skipped()
			}, SpecStateSkipped)
		})
	})

	Describe("SpecMeasurement", func() {
		It("knows how to format values when the precision is 0", func() {
			Ω(SpecMeasurement{}.PrecisionFmt()).Should(Equal("%f"))
		})

		It("knows how to format the values when the precision is 3", func() {
			Ω(SpecMeasurement{Precision: 3}.PrecisionFmt()).Should(Equal("%.3f"))
		})
	})
})