-
Notifications
You must be signed in to change notification settings - Fork 0
/
assert.go
72 lines (61 loc) · 1.36 KB
/
assert.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
67
68
69
70
71
72
package assert
import (
"fmt"
"reflect"
"strings"
)
// Raise panics with Error.
func Raise(text string) {
panic(Error{Text: text})
}
// Raisef panics with Error.
func Raisef(format string, v ...interface{}) {
text := fmt.Sprintf(format, v...)
panic(Error{Text: text})
}
// Assert panics with Error if cond is false.
func Assert(cond bool, text string) {
if cond {
return
}
Raise(text)
}
// Assertf panics with Error if cond is false.
func Assertf(cond bool, format string, v ...interface{}) {
if cond {
return
}
Raisef(format, v...)
}
// NotNil takes a pointer to a nil-able type (pointer, interface, etc) and
// panics with Error if the pointed-to value is nil.
func NotNil(v interface{}) {
r0 := reflect.ValueOf(v)
r1 := r0.Elem()
if !r1.IsNil() {
return
}
Raisef("%s is nil", r1.Type().String())
}
// Error is the error type for Assert failure panics.
type Error struct {
Text string
}
// Error fulfills the error interface.
func (err Error) Error() string {
var buf strings.Builder
buf.Grow(16 + len(err.Text))
buf.WriteString("AssertionError")
if err.Text != "" {
buf.WriteString(": ")
buf.WriteString(err.Text)
}
return buf.String()
}
var _ error = Error{}
// AssertNotNil is a compatibility alias for NotNil.
func AssertNotNil(v interface{}) {
NotNil(v)
}
// AssertionError is a compatibility alias for Error.
type AssertionError = Error