File: ignoring_in_backtrace_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 (39 lines) | stat: -rw-r--r-- 1,255 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
package gleak

import (
	"reflect"

	"github.com/onsi/gomega/gleak/goroutine"

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

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

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

	It("matches", func() {
		type T struct{}
		pkg := reflect.TypeOf(T{}).PkgPath()
		m := IgnoringInBacktrace(pkg + "/goroutine.stacks")
		Expect(m.Match(somefunction())).To(BeTrue())
	})

	It("returns failure messages", func() {
		m := IgnoringInBacktrace("foo.bar")
		Expect(m.FailureMessage(Goroutine{Backtrace: "abc"})).To(MatchRegexp(
			`Expected\n    <goroutine.Goroutine>: {ID: 0, State: "", TopFunction: "", CreatorFunction: "", BornAt: ""}\nto contain "foo.bar" in the goroutine's backtrace`))
		Expect(m.NegatedFailureMessage(Goroutine{Backtrace: "abc"})).To(MatchRegexp(
			`Expected\n    <goroutine.Goroutine>: {ID: 0, State: "", TopFunction: "", CreatorFunction: "", BornAt: ""}\nnot to contain "foo.bar" in the goroutine's backtrace`))
	})

})

func somefunction() Goroutine {
	return goroutine.Current()
}