mirror of
https://github.com/getsops/sops.git
synced 2026-02-05 21:45:26 +01:00
51 lines
2.6 KiB
Go
51 lines
2.6 KiB
Go
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"))
|
|
}
|