-
Notifications
You must be signed in to change notification settings - Fork 28
/
panic_with_message_to_matcher_test.go
66 lines (55 loc) · 1.84 KB
/
panic_with_message_to_matcher_test.go
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package pegomock_test
import (
"fmt"
"reflect"
"github.com/onsi/gomega/format"
"github.com/onsi/gomega/types"
"github.com/petergtz/pegomock/v4/internal/verify"
)
type PanicWithMessageToMatcher struct {
expectedWith types.GomegaMatcher
actualWith interface{}
}
func PanicWithMessageTo(object types.GomegaMatcher) types.GomegaMatcher {
verify.Argument(object != nil, "You must provide a non-nil object to PanicWith")
return &PanicWithMessageToMatcher{expectedWith: object}
}
func (matcher *PanicWithMessageToMatcher) Match(actual interface{}) (success bool, err error) {
if actual == nil {
return false, fmt.Errorf("PanicWithMatcher expects a non-nil actual.")
}
actualType := reflect.TypeOf(actual)
if actualType.Kind() != reflect.Func {
return false, fmt.Errorf("PanicWithMatcher expects a function. Got:\n%s", format.Object(actual, 1))
}
if !(actualType.NumIn() == 0 && actualType.NumOut() == 0) {
return false, fmt.Errorf("PanicWithMatcher expects a function with no arguments and no return value. Got:\n%s", format.Object(actual, 1))
}
success = false
defer func() {
if object := recover(); object != nil {
var e error
success, e = matcher.expectedWith.Match(object)
if e != nil {
// TODO is there something needed here?
}
if !success {
matcher.actualWith = object
}
} else {
matcher.actualWith = object
}
}()
reflect.ValueOf(actual).Call([]reflect.Value{})
return
}
func (matcher *PanicWithMessageToMatcher) FailureMessage(actual interface{}) (message string) {
if matcher.actualWith == nil {
return format.Message(actual, "to panic")
} else {
return fmt.Sprintf("Panic message does not match.\n\n%v", matcher.expectedWith.FailureMessage(matcher.actualWith))
}
}
func (matcher *PanicWithMessageToMatcher) NegatedFailureMessage(actual interface{}) (message string) {
panic("Not implemented")
}