-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patherrors.go
56 lines (49 loc) · 1.21 KB
/
errors.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
package test
import (
"regexp"
"testing"
"k8s.io/apimachinery/pkg/api/errors"
)
// AssertNoError will fail if the provided err value is an error.
func AssertNoError(t *testing.T, err error) {
t.Helper()
if err != nil {
t.Fatal(err)
}
}
// AssertErrorMatch will fail if the error doesn't match the provided error.
func AssertErrorMatch(t *testing.T, s string, e error) {
t.Helper()
if !MatchErrorString(t, s, e) {
t.Fatalf("error did not match, got %s, want %s", e, s)
}
}
// AssertNotFound will fail if the provided err value not a NotFound error from
// the K8s client API.
func AssertNotFound(t *testing.T, err error) {
t.Helper()
if !errors.IsNotFound(err) {
t.Fatalf("got err %v instead of NotFound", err)
}
}
// MatchErrorString takes a string and matches on the error and returns true if the
// string matches the error.
//
// This is useful in table tests.
//
// If the string can't be compiled as an regexp, then this will fail with a
// Fatal error.
func MatchErrorString(t *testing.T, s string, e error) bool {
t.Helper()
if s == "" && e == nil {
return true
}
if s != "" && e == nil {
return false
}
match, err := regexp.MatchString(s, e.Error())
if err != nil {
t.Fatal(err)
}
return match
}