File: panic_test.go

package info (click to toggle)
golang-github-smartystreets-assertions 1.10.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 580 kB
  • sloc: python: 80; makefile: 41; sh: 15
file content (50 lines) | stat: -rw-r--r-- 2,669 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
package assertions

import "fmt"

func (this *AssertionsFixture) TestShouldPanic() {
	this.fail(so(func() {}, ShouldPanic, 1), "This assertion requires exactly 0 comparison values (you provided 1).")
	this.fail(so(func() {}, ShouldPanic, 1, 2, 3), "This assertion requires exactly 0 comparison values (you provided 3).")

	this.fail(so(1, ShouldPanic), shouldUseVoidNiladicFunction)
	this.fail(so(func(i int) {}, ShouldPanic), shouldUseVoidNiladicFunction)
	this.fail(so(func() int { panic("hi") }, ShouldPanic), shouldUseVoidNiladicFunction)

	this.fail(so(func() {}, ShouldPanic), shouldHavePanicked)
	this.pass(so(func() { panic("hi") }, ShouldPanic))
}

func (this *AssertionsFixture) TestShouldNotPanic() {
	this.fail(so(func() {}, ShouldNotPanic, 1), "This assertion requires exactly 0 comparison values (you provided 1).")
	this.fail(so(func() {}, ShouldNotPanic, 1, 2, 3), "This assertion requires exactly 0 comparison values (you provided 3).")

	this.fail(so(1, ShouldNotPanic), shouldUseVoidNiladicFunction)
	this.fail(so(func(i int) {}, ShouldNotPanic), shouldUseVoidNiladicFunction)

	this.fail(so(func() { panic("hi") }, ShouldNotPanic), fmt.Sprintf(shouldNotHavePanicked, "hi"))
	this.pass(so(func() {}, ShouldNotPanic))
}

func (this *AssertionsFixture) TestShouldPanicWith() {
	this.fail(so(func() {}, ShouldPanicWith), "This assertion requires exactly 1 comparison values (you provided 0).")
	this.fail(so(func() {}, ShouldPanicWith, 1, 2, 3), "This assertion requires exactly 1 comparison values (you provided 3).")

	this.fail(so(1, ShouldPanicWith, 1), shouldUseVoidNiladicFunction)
	this.fail(so(func(i int) {}, ShouldPanicWith, "hi"), shouldUseVoidNiladicFunction)
	this.fail(so(func() {}, ShouldPanicWith, "bye"), shouldHavePanicked)
	this.fail(so(func() { panic("hi") }, ShouldPanicWith, "bye"), "bye|hi|Expected func() to panic with 'bye' (but it panicked with 'hi')!")

	this.pass(so(func() { panic("hi") }, ShouldPanicWith, "hi"))
}

func (this *AssertionsFixture) TestShouldNotPanicWith() {
	this.fail(so(func() {}, ShouldNotPanicWith), "This assertion requires exactly 1 comparison values (you provided 0).")
	this.fail(so(func() {}, ShouldNotPanicWith, 1, 2, 3), "This assertion requires exactly 1 comparison values (you provided 3).")

	this.fail(so(1, ShouldNotPanicWith, 1), shouldUseVoidNiladicFunction)
	this.fail(so(func(i int) {}, ShouldNotPanicWith, "hi"), shouldUseVoidNiladicFunction)
	this.fail(so(func() { panic("hi") }, ShouldNotPanicWith, "hi"), "Expected func() NOT to panic with 'hi' (but it did)!")

	this.pass(so(func() {}, ShouldNotPanicWith, "bye"))
	this.pass(so(func() { panic("hi") }, ShouldNotPanicWith, "bye"))
}