-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_test.go
68 lines (54 loc) · 1.27 KB
/
check_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
67
68
package check_test
import (
"errors"
"testing"
"go-simpler.org/check"
)
func TestCheck(t *testing.T) {
err12 := errors.New("1 and 2 are not equal")
err34 := errors.New("3 and 4 are not equal")
state := check.
That(1 == 2, err12).
That(3 == 4, err34)
t.Run("first error", func(t *testing.T) {
err := state.FirstError()
if !errors.Is(err, err12) {
t.Errorf("got %v; want %v", err, err12)
}
})
t.Run("all errors", func(t *testing.T) {
errs := state.AllErrors()
if len(errs) != 2 {
t.Fatalf("want 2 errors")
}
if errs[0] == nil || errs[1] == nil {
t.Errorf("want all errors to be non-nil")
}
})
t.Run("join errors", func(t *testing.T) {
err := state.JoinErrors()
if !errors.Is(err, err12) {
t.Errorf("got %v; want %v", err, err12)
}
if !errors.Is(err, err34) {
t.Errorf("got %v; want %v", err, err34)
}
})
t.Run("panic on nil error", func(t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Errorf("want panic")
}
}()
check.That(false, nil)
})
//nolint:gofumpt // empty line before `if err != nil` is ok here.
t.Run("all conditions are true", func(t *testing.T) {
err := check.
Thatf(true, "not an error").
FirstError()
if err != nil {
t.Errorf("got %v; want no error", err)
}
})
}