-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_test.go
89 lines (81 loc) · 1.52 KB
/
utils_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
package e5
import (
"io"
"os"
"testing"
)
type closer func() error
func (c closer) Close() error {
return c()
}
func TestClose(t *testing.T) {
err := Wrap.With(
Close(closer(func() error {
return io.ErrClosedPipe
})),
Close(closer(func() error {
return nil
})),
)(io.EOF)
if !is(err, io.EOF) {
t.Fatal()
}
if !is(err, io.ErrClosedPipe) {
t.Fatal()
}
}
func TestIgnore(t *testing.T) {
err := func() (err error) {
defer Handle(&err, Ignore(io.EOF))
return io.EOF
}()
if err != nil {
t.Fatal()
}
err = func() (err error) {
defer Handle(&err, Ignore(io.EOF))
return io.ErrClosedPipe
}()
if !is(err, io.ErrClosedPipe) {
t.Fatal()
}
}
func TestIgnoreAs(t *testing.T) {
err := func() (err error) {
defer Handle(&err, IgnoreAs(new(*os.PathError)))
return new(os.PathError)
}()
if err != nil {
t.Fatal()
}
err = func() (err error) {
defer Handle(&err, IgnoreAs(new(*os.PathError)))
return io.EOF
}()
if !is(err, io.EOF) {
t.Fatal()
}
}
func TestIgnoreContains(t *testing.T) {
err := func() (err error) {
defer Handle(&err, IgnoreContains("EOF"))
return io.EOF
}()
if err != nil {
t.Fatal()
}
err = func() (err error) {
defer Handle(&err, IgnoreContains("EOF"))
return io.ErrClosedPipe
}()
if !is(err, io.ErrClosedPipe) {
t.Fatal()
}
}
func TestUtilFuncs(t *testing.T) {
TestWrapFunc(t, Close(io.NopCloser(os.Stderr)))
TestWrapFunc(t, Do(func() {}))
TestWrapFunc(t, Ignore(io.EOF))
TestWrapFunc(t, IgnoreAs(new(*os.PathError)))
TestWrapFunc(t, IgnoreContains("foo"))
}