-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecode_test.go
More file actions
211 lines (194 loc) · 4.65 KB
/
decode_test.go
File metadata and controls
211 lines (194 loc) · 4.65 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package execx
import (
"encoding/json"
"errors"
"runtime"
"strings"
"testing"
)
type testPayload struct {
Name string `json:"name"`
}
func TestDecodeYAMLInto(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("decode yaml test uses printf")
}
type payload struct {
Name string `yaml:"name"`
}
var out payload
if err := Command("printf", "name: gopher").
DecodeYAML().
Into(&out); err != nil {
t.Fatalf("expected no error, got %v", err)
}
if out.Name != "gopher" {
t.Fatalf("unexpected name: %q", out.Name)
}
}
func TestDecodeFromStdout(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("decode stdout test uses printf")
}
var out testPayload
if err := Command("printf", `{"name":"gopher"}`).
DecodeJSON().
FromStdout().
Into(&out); err != nil {
t.Fatalf("expected no error, got %v", err)
}
if out.Name != "gopher" {
t.Fatalf("unexpected name: %q", out.Name)
}
}
func TestDecodeNilCmd(t *testing.T) {
var out testPayload
err := (*Cmd)(nil).
DecodeJSON().
Into(&out)
if err == nil {
t.Fatalf("expected error for nil command")
}
}
func TestDecodeWithJSON(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("output into test uses printf")
}
var out testPayload
err := Command("printf", `{"name":"gopher"}`).
DecodeWith(&out, DecoderFunc(json.Unmarshal))
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if out.Name != "gopher" {
t.Fatalf("unexpected name: %q", out.Name)
}
}
func TestDecodeTrim(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("decode trim test uses printf")
}
var out testPayload
err := Command("printf", ` {"name":"gopher"} `).
DecodeJSON().
Trim().
Into(&out)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if out.Name != "gopher" {
t.Fatalf("unexpected name: %q", out.Name)
}
}
func TestDecodeCombined(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("combined output test uses sh")
}
var out testPayload
err := Command("sh", "-c", `printf '{"name":"gopher"}'`).
DecodeJSON().
FromCombined().
Into(&out)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if out.Name != "gopher" {
t.Fatalf("unexpected name: %q", out.Name)
}
}
func TestDecodeCombinedStartError(t *testing.T) {
var out testPayload
err := Command("execx-does-not-exist").
DecodeJSON().
FromCombined().
Into(&out)
if err == nil {
t.Fatalf("expected error for combined start failure")
}
}
func TestDecodeCombinedDecodeError(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("combined output test uses sh")
}
var out testPayload
err := Command("sh", "-c", "printf not-json").
DecodeJSON().
FromCombined().
Into(&out)
if err == nil || !strings.Contains(err.Error(), "combined output") {
t.Fatalf("expected combined output decode error, got %v", err)
}
}
func TestDecodeStderr(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("stderr output test uses sh")
}
var out testPayload
err := Command("sh", "-c", `printf '{"name":"gopher"}' 1>&2`).
DecodeJSON().
FromStderr().
Into(&out)
if err != nil {
t.Fatalf("expected no error, got %v", err)
}
if out.Name != "gopher" {
t.Fatalf("unexpected name: %q", out.Name)
}
}
func TestDecodeStderrStartError(t *testing.T) {
var out testPayload
err := Command("execx-does-not-exist").
DecodeJSON().
FromStderr().
Into(&out)
if err == nil {
t.Fatalf("expected error for stderr start failure")
}
}
func TestDecodeStderrDecodeError(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("stderr output test uses sh")
}
var out testPayload
err := Command("sh", "-c", "printf not-json 1>&2").
DecodeJSON().
FromStderr().
Into(&out)
if err == nil || !strings.Contains(err.Error(), "stderr") {
t.Fatalf("expected stderr decode error, got %v", err)
}
}
func TestDecodeWithErrors(t *testing.T) {
err := Command("printf", `{"name":"gopher"}`).
DecodeWith(nil, DecoderFunc(json.Unmarshal))
if err == nil {
t.Fatalf("expected error for nil destination")
}
var out testPayload
err = Command("printf", `{"name":"gopher"}`).
DecodeWith(out, DecoderFunc(json.Unmarshal))
if err == nil {
t.Fatalf("expected error for non-pointer destination")
}
err = Command("printf", `{"name":"gopher"}`).
DecodeWith(&out, nil)
if err == nil {
t.Fatalf("expected error for nil decoder")
}
}
func TestDecodeErrorWrap(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("decode error test uses printf")
}
var out testPayload
err := Command("printf", `not-json`).
DecodeJSON().
Into(&out)
if err == nil {
t.Fatalf("expected decode error")
}
var syntaxErr *json.SyntaxError
if !errors.As(err, &syntaxErr) && err.Error() == "" {
t.Fatalf("expected decode error detail")
}
}