-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexec_test.go
More file actions
407 lines (366 loc) · 9.68 KB
/
exec_test.go
File metadata and controls
407 lines (366 loc) · 9.68 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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
package exec
import (
"bytes"
"context"
"errors"
"fmt"
"os"
"os/exec"
"runtime"
"strings"
"syscall"
"testing"
"time"
)
var (
shellcmd = `/bin/sh`
shellflag = "-c"
stubCmd = `./testdata/stubcmd`
)
func init() {
if runtime.GOOS == "windows" {
shellcmd = "cmd"
shellflag = "/c"
stubCmd = `.\testdata\stubcmd.exe`
}
err := exec.Command("go", "build", "-o", stubCmd, "testdata/stubcmd.go").Run()
if err != nil {
panic(err)
}
}
func TestCommand(t *testing.T) {
tests := gentests(false)
for _, tt := range tests {
_ = killprocess()
if checkprocess() {
t.Fatalf("%s", "the process has not exited")
}
var (
stdout bytes.Buffer
stderr bytes.Buffer
)
cmd := Command(tt.cmd[0], tt.cmd[1:]...) //nolint:gosec
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Run()
if err != nil {
t.Errorf("%v: %v", tt.cmd, err)
}
if strings.TrimRight(stdout.String(), "\n\r") != tt.want {
t.Errorf("%v: want = %#v, got = %#v", tt.cmd, tt.want, stdout.String())
}
if checkprocess() {
t.Errorf("%v: %s", tt.cmd, "the process has not exited")
}
}
}
func TestCommandContext(t *testing.T) {
tests := gentests(false)
for _, tt := range tests {
_ = killprocess()
var (
stdout bytes.Buffer
stderr bytes.Buffer
)
ctx := context.Background()
cmd := CommandContext(ctx, tt.cmd[0], tt.cmd[1:]...) //nolint:gosec
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Run()
if err != nil {
t.Fatalf("%v: %v", tt.cmd, err)
}
if strings.TrimRight(stdout.String(), "\n\r") != tt.want {
t.Errorf("%v: want = %#v, got = %#v", tt.cmd, tt.want, stdout.String())
}
if checkprocess() {
t.Errorf("%v: %s", tt.cmd, "the process has not exited")
}
}
}
func TestCommandContextCancel(t *testing.T) {
tests := gentests(true)
for _, tt := range tests {
_ = killprocess()
if checkprocess() {
t.Fatalf("%s", "the process has not exited")
}
var (
stdout bytes.Buffer
stderr bytes.Buffer
)
ctx, cancel := context.WithCancel(context.Background())
cmd := CommandContext(ctx, tt.cmd[0], tt.cmd[1:]...) //nolint:gosec
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Start()
if err != nil {
cancel()
t.Fatalf("%v: %v", tt.cmd, err)
}
go func() {
_ = cmd.Wait()
}()
if !checkprocess() && !tt.processFinished {
cancel()
t.Fatalf("%v: %s", tt.cmd, "the process has been exited")
}
cancel()
if checkprocess() {
t.Errorf("%v: %s", tt.cmd, "the process has not exited")
}
}
}
func TestTerminateCommand(t *testing.T) {
tests := gentests(true)
for _, tt := range tests {
_ = killprocess()
if checkprocess() {
t.Fatalf("%s", "the process has not exited")
}
var (
stdout bytes.Buffer
stderr bytes.Buffer
)
cmd := Command(tt.cmd[0], tt.cmd[1:]...) //nolint:gosec
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Start()
if err != nil {
t.Fatalf("%v: %v", tt.cmd, err)
}
go func() {
_ = cmd.Wait()
}()
if !checkprocess() && !tt.processFinished {
t.Fatalf("%v: %s", tt.cmd, "the process has been exited")
}
if runtime.GOOS == "windows" {
sig := os.Interrupt
err = TerminateCommand(cmd, sig)
} else {
sig := syscall.SIGTERM
err = TerminateCommand(cmd, sig)
}
if err != nil && !tt.processFinished {
t.Errorf("%v: %v", tt.cmd, err)
}
if checkprocess() {
t.Errorf("%v: %s", tt.cmd, "the process has not exited")
}
}
}
func TestKillCommand(t *testing.T) {
tests := gentests(true)
for _, tt := range tests {
_ = killprocess()
if checkprocess() {
t.Fatalf("%s", "the process has not exited")
}
var (
stdout bytes.Buffer
stderr bytes.Buffer
)
cmd := Command(tt.cmd[0], tt.cmd[1:]...) //nolint:gosec
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Start()
if err != nil {
t.Fatalf("%v: %v", tt.cmd, err)
}
go func() {
_ = cmd.Wait()
}()
if !checkprocess() && !tt.processFinished {
t.Fatalf("%v: %s", tt.cmd, "the process has been exited")
}
err = KillCommand(cmd)
if err != nil && !tt.processFinished {
t.Fatalf("%v: %v", tt.cmd, err)
}
if checkprocess() {
t.Errorf("%v: %s", tt.cmd, "the process has not exited")
}
}
}
func TestCommandCancel(t *testing.T) {
tests := gentests(true)
for _, tt := range tests {
t.Run(fmt.Sprintf("%v", tt.cmd), func(t *testing.T) {
_ = killprocess()
if checkprocess() {
t.Fatal("the process has not exited")
}
var (
stdout bytes.Buffer
stderr bytes.Buffer
)
ctx, cancel := context.WithCancel(context.Background())
t.Cleanup(cancel)
cmd := CommandContext(ctx, tt.cmd[0], tt.cmd[1:]...) //nolint:gosec
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Start()
if err != nil {
t.Fatalf("%v: %v", tt.cmd, err)
}
go func() {
_ = cmd.Wait()
}()
if !checkprocess() && !tt.processFinished {
t.Errorf("%v: %s", tt.cmd, "the process has been exited")
}
_ = cmd.Cancel()
if checkprocess() {
t.Errorf("%v: %s", tt.cmd, "the process has not exited")
}
})
}
}
type testcase struct {
name string
cmd []string
want string
processFinished bool
}
func checkprocess() bool {
time.Sleep(500 * time.Millisecond)
var (
out []byte
err error
)
if runtime.GOOS == "windows" {
out, err = exec.Command("cmd", "/c", "tasklist | grep stubcmd.exe | grep -v grep").Output()
} else {
out, err = exec.Command("bash", "-c", "ps aux | grep stubcmd | grep -v grep").Output()
}
return (err == nil || strings.TrimRight(string(out), "\n\r") != "")
}
func killprocess() error {
var (
out []byte
err error
)
if runtime.GOOS == "windows" {
out, err = exec.Command("taskkill", "/im", "stubcmd.exe").Output()
} else {
out, err = exec.Command("bash", "-c", "ps aux | grep stubcmd | grep -v grep | xargs kill -9").Output()
}
if err != nil {
if strings.TrimRight(string(out), "\n\r") != "" {
_, _ = fmt.Fprintf(os.Stderr, "%s", string(out))
}
return err
}
return nil
}
func gentests(withSleepTest bool) []testcase {
tests := []testcase{}
tests = append(tests, testcase{"echo", []string{stubCmd, "-echo", "!!!"}, "!!!", true})
tests = append(tests, testcase{"sh -c echo", []string{shellcmd, shellflag, fmt.Sprintf("%s -echo %s", stubCmd, "!!!")}, "!!!", true})
if withSleepTest {
tests = append(tests, testcase{"sleep", []string{stubCmd, "-sleep", "10", "-echo", "!!!"}, "!!!", false})
tests = append(tests, testcase{"sh -c sleep", []string{shellcmd, shellflag, fmt.Sprintf("%s -sleep %s -echo %s", stubCmd, "10", "!!!")}, "!!!", false})
}
return tests
}
func TestExitError(t *testing.T) {
t.Run("TypeIdentity", func(t *testing.T) {
// Test that exec.ExitError is identical to os/exec.ExitError
var execExitError *ExitError
var osExecExitError *exec.ExitError
// Type assertion should work both ways
_ = (*exec.ExitError)(execExitError)
_ = (*ExitError)(osExecExitError)
})
t.Run("ActualErrorCase", func(t *testing.T) {
// Create a command that will fail with non-zero exit code
var cmd *exec.Cmd
if runtime.GOOS == "windows" {
cmd = Command("cmd", "/c", "exit 1")
} else {
cmd = Command("sh", "-c", "exit 1")
}
err := cmd.Run()
if err == nil {
t.Fatal("Expected command to fail with exit code 1")
}
// Test that the error can be type asserted to exec.ExitError (our alias)
var exitError *ExitError
if !errors.As(err, &exitError) {
t.Fatalf("Expected error to be *exec.ExitError, got %T", err)
}
// Test that the error can also be type asserted to os/exec.ExitError
var osExitError *exec.ExitError
if !errors.As(err, &osExitError) {
t.Fatalf("Expected error to be *os/exec.ExitError, got %T", err)
}
// Verify ExitCode method works correctly
if exitError.ExitCode() != 1 {
t.Errorf("Expected exit code 1, got %d", exitError.ExitCode())
}
if osExitError.ExitCode() != 1 {
t.Errorf("Expected exit code 1, got %d", osExitError.ExitCode())
}
// Verify they are the same underlying object
if exitError != osExitError {
t.Error("Expected both type assertions to return the same object")
}
})
t.Run("ErrorMessageAndMethods", func(t *testing.T) {
// Test with a different exit code
var cmd *exec.Cmd
if runtime.GOOS == "windows" {
cmd = Command("cmd", "/c", "exit 42")
} else {
cmd = Command("sh", "-c", "exit 42")
}
err := cmd.Run()
if err == nil {
t.Fatal("Expected command to fail with exit code 42")
}
var exitError *ExitError
if !errors.As(err, &exitError) {
t.Fatalf("Expected error to be *exec.ExitError, got %T", err)
}
// Test ExitCode method
if exitError.ExitCode() != 42 {
t.Errorf("Expected exit code 42, got %d", exitError.ExitCode())
}
// Test Error method (inherited from os/exec.ExitError)
errorMsg := exitError.Error()
if errorMsg == "" {
t.Error("Expected non-empty error message")
}
// Test that ProcessState is accessible
if exitError.ProcessState == nil {
t.Error("Expected ProcessState to be non-nil")
}
// Test ProcessState.ExitCode() method
if exitError.ExitCode() != 42 {
t.Errorf("Expected ProcessState.ExitCode() to return 42, got %d", exitError.ExitCode())
}
})
t.Run("CommandContextWithError", func(t *testing.T) {
// Test with CommandContext function
ctx := context.Background()
var cmd *exec.Cmd
if runtime.GOOS == "windows" {
cmd = CommandContext(ctx, "cmd", "/c", "exit 5")
} else {
cmd = CommandContext(ctx, "sh", "-c", "exit 5")
}
err := cmd.Run()
if err == nil {
t.Fatal("Expected command to fail with exit code 5")
}
// Verify the alias works with CommandContext as well
var exitError *ExitError
if !errors.As(err, &exitError) {
t.Fatalf("Expected error to be *exec.ExitError, got %T", err)
}
if exitError.ExitCode() != 5 {
t.Errorf("Expected exit code 5, got %d", exitError.ExitCode())
}
})
}