ipld-eth-server/vendor/github.com/aristanetworks/goarista/test/panic.go
Matt K 293dd2e848 Add vendor dir (#16) (#4)
* Add vendor dir so builds dont require dep

* Pin specific version go-eth version
2018-01-29 13:44:18 -06:00

48 lines
1.0 KiB
Go

// Copyright (c) 2015 Arista Networks, Inc.
// Use of this source code is governed by the Apache License 2.0
// that can be found in the COPYING file.
package test
import (
"fmt"
"runtime"
"testing"
)
// ShouldPanic will test is a function is panicking
func ShouldPanic(t *testing.T, fn func()) {
defer func() {
if r := recover(); r == nil {
t.Errorf("%sThe function %p should have panicked",
getCallerInfo(), fn)
}
}()
fn()
}
// ShouldPanicWith will test is a function is panicking with a specific message
func ShouldPanicWith(t *testing.T, msg interface{}, fn func()) {
defer func() {
if r := recover(); r == nil {
t.Errorf("%sThe function %p should have panicked",
getCallerInfo(), fn)
} else if d := Diff(msg, r); len(d) != 0 {
t.Errorf("%sThe function %p panicked with the wrong message.\n"+
"Expected: %#v\nReceived: %#v\nDiff:%s",
getCallerInfo(), fn, msg, r, d)
}
}()
fn()
}
func getCallerInfo() string {
_, file, line, ok := runtime.Caller(4)
if !ok {
return ""
}
return fmt.Sprintf("%s:%d\n", file, line)
}