-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathrequire.go
203 lines (179 loc) · 4.32 KB
/
require.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
package require
import (
"reflect"
"testing"
)
func NoError(t *testing.T, err error, msgs ...string) {
if err != nil {
t.Errorf("Expected no error, but got: %s", err)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func NotNil(t *testing.T, object interface{}, msgs ...string) {
if isNil(object) {
t.Errorf("Expected nil, but got an object")
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func Nil(t *testing.T, object interface{}, msgs ...string) {
if !isNil(object) {
t.Errorf("Expected an object, but got nil")
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func isNil(object interface{}) bool {
if object == nil {
return true
}
value := reflect.ValueOf(object)
kind := value.Kind()
if kind >= reflect.Chan && kind <= reflect.Slice && value.IsNil() {
return true
}
return false
}
func EqualError(t *testing.T, theError error, errString string, msgs ...string) {
if theError == nil {
t.Errorf("Expected an error but got nil")
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
return
}
if theError.Error() != errString {
t.Errorf("Expected an error with message:\n%qbut got \n%q", errString, theError)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func EqualFloat64(t *testing.T, expected, actual float64, msgs ...string) {
if expected != actual {
t.Errorf("Expected %f but got %f", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func EqualStringPtr(t *testing.T, expected, actual *string, msgs ...string) {
if expected == nil && actual == nil {
return
}
if expected != nil && actual != nil {
EqualString(t, *expected, *actual, msgs...)
return
}
t.Errorf("Expected %v but got %v", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
func EqualString(t *testing.T, expected, actual string, msgs ...string) {
if expected != actual {
t.Errorf("Expected %s but got %s", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func EqualStringSlice(t *testing.T, expected, actual []string, msgs ...string) {
if len(expected) != len(actual) {
t.Errorf("Expected %v but got %v", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
for i, e := range expected {
a := actual[i]
EqualString(t, e, a, msgs...)
}
}
func EqualUInt32(t *testing.T, expected, actual uint32, msgs ...string) {
if expected != actual {
t.Errorf("Expected %d but got %d", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func EqualUInt64Ptr(t *testing.T, expected, actual *uint64, msgs ...string) {
if expected == nil && actual == nil {
return
}
if expected != nil && actual != nil {
EqualUInt64(t, *expected, *actual, msgs...)
return
}
t.Errorf("Expected %v but got %v", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
func EqualUInt64(t *testing.T, expected, actual uint64, msgs ...string) {
if expected != actual {
t.Errorf("Expected %d but got %d", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func EqualIntPtr(t *testing.T, expected, actual *int, msgs ...string) {
if expected == nil && actual == nil {
return
}
if expected != nil && actual != nil {
EqualInt(t, *expected, *actual, msgs...)
return
}
t.Errorf("Expected %v but got %v", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
func EqualInt(t *testing.T, expected, actual int, msgs ...string) {
if expected != actual {
t.Errorf("Expected %d but got %d", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func EqualErr(t *testing.T, expected, actual error, msgs ...string) {
if expected != actual {
t.Errorf("Expected %s but got %s", expected, actual)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}
func Implements(t *testing.T, interfaceObject interface{}, object interface{}, msgs ...string) {
interfaceType := reflect.TypeOf(interfaceObject).Elem()
if !reflect.TypeOf(object).Implements(interfaceType) {
t.Errorf("Expected %T but got %v", object, interfaceType)
for _, msg := range msgs {
t.Errorf("\n" + msg)
}
t.FailNow()
}
}