File: ignoring_goroutines_test.go

package info (click to toggle)
golang-gomega 1.36.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,984 kB
  • sloc: xml: 277; javascript: 59; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 1,226 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
package gleak

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

var _ = Describe("IgnoringGoroutines matcher", func() {

	It("returns an error for an invalid actual", func() {
		m := IgnoringGoroutines(Goroutines())
		Expect(m.Match(nil)).Error().To(MatchError(
			"IgnoringGoroutines matcher expects a Goroutine or *Goroutine.  Got:\n    <nil>: nil"))
	})

	It("matches", func() {
		gs := Goroutines()
		me := gs[0]
		m := IgnoringGoroutines(gs)
		Expect(m.Match(me)).To(BeTrue())
		Expect(m.Match(gs[1])).To(BeTrue())
		Expect(m.Match(Goroutine{})).To(BeFalse())
	})

	It("returns failure messages", func() {
		m := IgnoringGoroutines(Goroutines())
		Expect(m.FailureMessage(Goroutine{})).To(MatchRegexp(
			`Expected\n    <goroutine.Goroutine>: {ID: 0, State: "", TopFunction: "", CreatorFunction: "", BornAt: ""}\nto be contained in the list of expected goroutine IDs\n    <\[\]uint64 | len:\d+, cap:\d+>: [.*]`))
		Expect(m.NegatedFailureMessage(Goroutine{})).To(MatchRegexp(
			`Expected\n    <goroutine.Goroutine>: {ID: 0, State: "", TopFunction: "", CreatorFunction: "", BornAt: ""}\nnot to be contained in the list of expected goroutine IDs\n    <\[\]uint64 | len:\d+, cap:\d+>: [.*]`))
	})

})