-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexecute_error_test.go
169 lines (138 loc) · 2.81 KB
/
execute_error_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
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
package hype
import (
"context"
"errors"
"fmt"
"io"
"strings"
"testing"
"github.com/stretchr/testify/require"
)
func Test_ExecuteError(t *testing.T) {
t.Parallel()
r := require.New(t)
oce := ExecuteError{
Err: io.EOF,
}
wrapped := fmt.Errorf("error: %w", oce)
r.True(oce.As(&ExecuteError{}), oce)
r.True(oce.Is(oce), oce)
r.True(oce.Unwrap() == io.EOF, oce)
var ce ExecuteError
r.True(errors.As(wrapped, &ce), wrapped)
ce = ExecuteError{}
r.True(errors.Is(wrapped, ce), wrapped)
err := errors.Unwrap(oce)
r.Equal(io.EOF, err)
}
func Test_Execute_Errors(t *testing.T) {
t.Parallel()
tp := func() *Parser {
p := testParser(t, "testdata/parser/errors/execute")
p.NodeParsers["foo"] = func(p *Parser, el *Element) (Nodes, error) {
n := newExecuteNode(t, func(ctx context.Context, d *Document) error {
return fmt.Errorf("boom")
})
return Nodes{n}, nil
}
return p
}
type inFn func() error
ctx := context.Background()
tcs := []struct {
name string
in inFn
}{
{
name: "ParseExecute",
in: func() error {
p := tp()
_, err := p.ParseExecute(ctx, strings.NewReader("<foo></foo>"))
return err
},
},
{
name: "ParseExecuteFile",
in: func() error {
p := tp()
_, err := p.ParseExecuteFile(ctx, "hype.md")
return err
},
},
{
name: "Document.Execute",
in: func() error {
p := tp()
d, err := p.ParseFile("hype.md")
if err != nil {
return err
}
return d.Execute(ctx)
},
},
}
for _, tc := range tcs {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
r := require.New(t)
err := tc.in()
r.Error(err)
var ce ExecuteError
r.True(errors.As(err, &ce), err)
r.NotNil(ce.Document, err)
ce = ExecuteError{}
r.True(errors.Is(err, ce), err)
})
}
}
func Test_ExecuteError_MarshalJSON(t *testing.T) {
t.Parallel()
ee := ExecuteError{
Err: io.EOF,
Filename: "hype.md",
Root: "testdata/parser/errors/execute",
Document: &Document{
Title: "My Title",
},
Contents: []byte("foo"),
}
testJSON(t, "execute_error", ee)
}
func Test_ExecuteError_String(t *testing.T) {
t.Parallel()
detailed := ExecuteError{
Err: io.EOF,
Filename: "hype.md",
Root: "testdata/parser/errors/execute",
Document: &Document{
Title: "My Title",
},
Contents: []byte("foo"),
}
tcs := []struct {
name string
in ExecuteError
exp string
}{
{
name: "detailed",
in: detailed,
exp: "filepath: testdata/parser/errors/execute/hype.md\ndocument: My Title\nexecute error: EOF",
},
{
name: "basic",
in: ExecuteError{Err: io.EOF},
exp: "execute error: EOF",
},
}
for _, tc := range tcs {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
r := require.New(t)
act := tc.in.Error()
r.Equal(tc.exp, act)
})
}
}