-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
111 lines (91 loc) · 2.1 KB
/
example_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
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
package errassert_test
import (
"errors"
"fmt"
"strconv"
"testing"
"github.com/zoido/errassert"
)
func Example() {
t := testing.T{} // Provided by the testing package.
type testCase struct {
in string
errassert errassert.ErrorAssertion
}
run := func(t *testing.T, tc testCase) {
_, err := strconv.Atoi(tc.in)
tc.errassert.Require(t, err)
}
testCases := map[string]testCase{
"ok": {
in: "42",
errassert: errassert.NilError(),
},
"invalid input fails": {
in: "invalid",
errassert: errassert.SomeError(),
},
"empty input fails": {
in: "",
errassert: errassert.ErrorEndsWith("invalid syntax"),
},
}
for name, tc := range testCases {
t.Run(name, func(t *testing.T) { run(t, tc) })
}
}
func ExampleErrorAssertion_custom() {
t := testing.T{} // Provided by the testing package.
type testCase struct {
in string
errassert errassert.ErrorAssertion
}
run := func(t *testing.T, tc testCase) {
_, err := strconv.Atoi(tc.in)
tc.errassert.Require(t, err)
}
testCases := map[string]testCase{
"empty input fails": {
in: "very specific error input",
errassert: func(err error) error {
if err == nil {
return errors.New("expected error, got nil")
}
if err.Error() != "very specific error" {
return fmt.Errorf("expected very specific error, got: '%v'", err.Error())
}
return nil
},
},
}
for name, tc := range testCases {
t.Run(name, func(t *testing.T) { run(t, tc) })
}
}
func ExampleWant() {
t := testing.T{} // Provided by the testing package.
type testCase struct {
in string
errassert errassert.ErrorAssertion
}
run := func(t *testing.T, tc testCase) {
_, err := strconv.Atoi(tc.in)
tc.errassert.Require(t, err)
}
testCases := map[string]testCase{
"ok": {
in: "42",
errassert: errassert.NilError(),
},
"invalid input": {
in: "input",
errassert: errassert.Want(
errassert.ErrorContains("\"input\""),
errassert.ErrorEndsWith("invalid syntax"),
),
},
}
for name, tc := range testCases {
t.Run(name, func(t *testing.T) { run(t, tc) })
}
}