forked from rogpeppe/go-internal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testscript_test.go
469 lines (428 loc) · 12.5 KB
/
testscript_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
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testscript
import (
"bytes"
"errors"
"flag"
"fmt"
"io/ioutil"
"os"
"os/exec"
"os/signal"
"path/filepath"
"reflect"
"regexp"
"strconv"
"strings"
"testing"
"time"
)
func printArgs() int {
fmt.Printf("%q\n", os.Args)
return 0
}
func fprintArgs() int {
s := strings.Join(os.Args[2:], " ")
switch os.Args[1] {
case "stdout":
fmt.Println(s)
case "stderr":
fmt.Fprintln(os.Stderr, s)
}
return 0
}
func exitWithStatus() int {
n, _ := strconv.Atoi(os.Args[1])
return n
}
func signalCatcher() int {
// Note: won't work under Windows.
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
// Create a file so that the test can know that
// we will catch the signal.
if err := ioutil.WriteFile("catchsignal", nil, 0o666); err != nil {
fmt.Println(err)
return 1
}
<-c
fmt.Println("caught interrupt")
return 0
}
func TestMain(m *testing.M) {
timeSince = func(t time.Time) time.Duration {
return 0
}
showVerboseEnv = false
os.Exit(RunMain(m, map[string]func() int{
"printargs": printArgs,
"fprintargs": fprintArgs,
"status": exitWithStatus,
"signalcatcher": signalCatcher,
}))
}
func TestEnv(t *testing.T) {
e := &Env{
Vars: []string{
"HOME=/no-home",
"PATH=/usr/bin",
"PATH=/usr/bin:/usr/local/bin",
"INVALID",
},
}
if got, want := e.Getenv("HOME"), "/no-home"; got != want {
t.Errorf("e.Getenv(\"HOME\") == %q, want %q", got, want)
}
e.Setenv("HOME", "/home/user")
if got, want := e.Getenv("HOME"), "/home/user"; got != want {
t.Errorf(`e.Getenv("HOME") == %q, want %q`, got, want)
}
if got, want := e.Getenv("PATH"), "/usr/bin:/usr/local/bin"; got != want {
t.Errorf(`e.Getenv("PATH") == %q, want %q`, got, want)
}
if got, want := e.Getenv("INVALID"), ""; got != want {
t.Errorf(`e.Getenv("INVALID") == %q, want %q`, got, want)
}
for _, key := range []string{
"",
"=",
"key=invalid",
} {
var panicValue interface{}
func() {
defer func() {
panicValue = recover()
}()
e.Setenv(key, "")
}()
if panicValue == nil {
t.Errorf("e.Setenv(%q) did not panic, want panic", key)
}
}
}
func TestSetupFailure(t *testing.T) {
dir := t.TempDir()
if err := os.WriteFile(filepath.Join(dir, "foo.txt"), nil, 0o666); err != nil {
t.Fatal(err)
}
ft := &fakeT{}
func() {
defer catchAbort()
RunT(ft, Params{
Dir: dir,
Setup: func(*Env) error {
return fmt.Errorf("some failure")
},
})
}()
if !ft.failed {
t.Fatal("test should have failed because of setup failure")
}
want := regexp.MustCompile(`^FAIL: .*: some failure\n$`)
if got := ft.log.String(); !want.MatchString(got) {
t.Fatalf("expected msg to match `%v`; got:\n%q", want, got)
}
}
func TestScripts(t *testing.T) {
// TODO set temp directory.
testDeferCount := 0
Run(t, Params{
UpdateScripts: os.Getenv("TESTSCRIPT_UPDATE") != "",
Dir: "testdata",
Cmds: map[string]func(ts *TestScript, neg bool, args []string){
"setSpecialVal": setSpecialVal,
"ensureSpecialVal": ensureSpecialVal,
"interrupt": interrupt,
"waitfile": waitFile,
"testdefer": func(ts *TestScript, neg bool, args []string) {
testDeferCount++
n := testDeferCount
ts.Defer(func() {
if testDeferCount != n {
t.Errorf("defers not run in reverse order; got %d want %d", testDeferCount, n)
}
testDeferCount--
})
},
"setup-filenames": func(ts *TestScript, neg bool, want []string) {
got := ts.Value("setupFilenames")
if !reflect.DeepEqual(want, got) {
ts.Fatalf("setup did not see expected files; got %q want %q", got, want)
}
},
"test-values": func(ts *TestScript, neg bool, args []string) {
if ts.Value("somekey") != 1234 {
ts.Fatalf("test-values did not see expected value")
}
if ts.Value("t").(T) != ts.t {
ts.Fatalf("test-values did not see expected t")
}
if _, ok := ts.Value("t").(testing.TB); !ok {
ts.Fatalf("test-values t does not implement testing.TB")
}
},
"testreadfile": func(ts *TestScript, neg bool, args []string) {
if len(args) != 1 {
ts.Fatalf("testreadfile <filename>")
}
got := ts.ReadFile(args[0])
want := args[0] + "\n"
if got != want {
ts.Fatalf("reading %q; got %q want %q", args[0], got, want)
}
},
"testscript": func(ts *TestScript, neg bool, args []string) {
// Run testscript in testscript. Oooh! Meta!
fset := flag.NewFlagSet("testscript", flag.ContinueOnError)
fUpdate := fset.Bool("update", false, "update scripts when cmp fails")
fExplicitExec := fset.Bool("explicit-exec", false, "require explicit use of exec for commands")
fUniqueNames := fset.Bool("unique-names", false, "require unique names in txtar archive")
fVerbose := fset.Bool("v", false, "be verbose with output")
fContinue := fset.Bool("continue", false, "continue on error")
if err := fset.Parse(args); err != nil {
ts.Fatalf("failed to parse args for testscript: %v", err)
}
if fset.NArg() != 1 {
ts.Fatalf("testscript [-v] [-continue] [-update] [-explicit-exec] <dir>")
}
dir := fset.Arg(0)
t := &fakeT{verbose: *fVerbose}
func() {
defer catchAbort()
RunT(t, Params{
Dir: ts.MkAbs(dir),
UpdateScripts: *fUpdate,
RequireExplicitExec: *fExplicitExec,
RequireUniqueNames: *fUniqueNames,
Cmds: map[string]func(ts *TestScript, neg bool, args []string){
"some-param-cmd": func(ts *TestScript, neg bool, args []string) {
},
"echoandexit": echoandexit,
},
ContinueOnError: *fContinue,
})
}()
stdout := t.log.String()
stdout = strings.ReplaceAll(stdout, ts.workdir, "$WORK")
fmt.Fprint(ts.Stdout(), stdout)
if neg {
if !t.failed {
ts.Fatalf("testscript unexpectedly succeeded")
}
return
}
if t.failed {
ts.Fatalf("testscript unexpectedly failed with errors: %q", &t.log)
}
},
"echoandexit": echoandexit,
},
Setup: func(env *Env) error {
infos, err := ioutil.ReadDir(env.WorkDir)
if err != nil {
return fmt.Errorf("cannot read workdir: %v", err)
}
var setupFilenames []string
for _, info := range infos {
setupFilenames = append(setupFilenames, info.Name())
}
env.Values["setupFilenames"] = setupFilenames
env.Values["somekey"] = 1234
env.Values["t"] = env.T()
env.Vars = append(env.Vars,
"GONOSUMDB=*",
)
return nil
},
})
if testDeferCount != 0 {
t.Fatalf("defer mismatch; got %d want 0", testDeferCount)
}
// TODO check that the temp directory has been removed.
}
func echoandexit(ts *TestScript, neg bool, args []string) {
// Takes at least one argument
//
// args[0] - int that indicates the exit code of the command
// args[1] - the string to echo to stdout if non-empty
// args[2] - the string to echo to stderr if non-empty
if len(args) == 0 || len(args) > 3 {
ts.Fatalf("echoandexit takes at least one and at most three arguments")
}
if neg {
ts.Fatalf("neg means nothing for echoandexit")
}
exitCode, err := strconv.ParseInt(args[0], 10, 64)
if err != nil {
ts.Fatalf("failed to parse exit code from %q: %v", args[0], err)
}
if len(args) > 1 && args[1] != "" {
fmt.Fprint(ts.Stdout(), args[1])
}
if len(args) > 2 && args[2] != "" {
fmt.Fprint(ts.Stderr(), args[2])
}
if exitCode != 0 {
ts.Fatalf("told to exit with code %d", exitCode)
}
}
// TestTestwork tests that using the flag -testwork will make sure the work dir isn't removed
// after the test is done. It uses an empty testscript file that doesn't do anything.
func TestTestwork(t *testing.T) {
out, err := exec.Command("go", "test", ".", "-testwork", "-v", "-run", "TestScripts/^nothing$").CombinedOutput()
if err != nil {
t.Fatal(err)
}
re := regexp.MustCompile(`\s+WORK=(\S+)`)
match := re.FindAllStringSubmatch(string(out), -1)
// Ensure that there is only one line with one match
if len(match) != 1 || len(match[0]) != 2 {
t.Fatalf("failed to extract WORK directory")
}
var fi os.FileInfo
if fi, err = os.Stat(match[0][1]); err != nil {
t.Fatalf("failed to stat expected work directory %v: %v", match[0][1], err)
}
if !fi.IsDir() {
t.Fatalf("expected persisted workdir is not a directory: %v", match[0][1])
}
}
// TestWorkdirRoot tests that a non zero value in Params.WorkdirRoot is honoured
func TestWorkdirRoot(t *testing.T) {
td, err := ioutil.TempDir("", "")
if err != nil {
t.Fatalf("failed to create temp dir: %v", err)
}
defer os.RemoveAll(td)
params := Params{
Dir: filepath.Join("testdata", "nothing"),
WorkdirRoot: td,
}
// Run as a sub-test so that this call blocks until the sub-tests created by
// calling Run (which themselves call t.Parallel) complete.
t.Run("run tests", func(t *testing.T) {
Run(t, params)
})
// Verify that we have a single go-test-script-* named directory
files, err := filepath.Glob(filepath.Join(td, "script-nothing", "README.md"))
if err != nil {
t.Fatal(err)
}
if len(files) != 1 {
t.Fatalf("unexpected files found for kept files; got %q", files)
}
}
// TestBadDir verifies that invoking testscript with a directory that either
// does not exist or that contains no *.txt scripts fails the test
func TestBadDir(t *testing.T) {
ft := new(fakeT)
func() {
defer catchAbort()
RunT(ft, Params{
Dir: "thiswillnevermatch",
})
}()
want := regexp.MustCompile(`no txtar nor txt scripts found in dir thiswillnevermatch`)
if got := ft.log.String(); !want.MatchString(got) {
t.Fatalf("expected msg to match `%v`; got:\n%v", want, got)
}
}
// catchAbort catches the panic raised by fakeT.FailNow.
func catchAbort() {
if err := recover(); err != nil && err != errAbort {
panic(err)
}
}
func TestUNIX2DOS(t *testing.T) {
for data, want := range map[string]string{
"": "", // Preserve empty files.
"\n": "\r\n", // Convert LF to CRLF in a file containing a single empty line.
"\r\n": "\r\n", // Preserve CRLF in a single line file.
"a": "a\r\n", // Append CRLF to a single line file with no line terminator.
"a\n": "a\r\n", // Convert LF to CRLF in a file containing a single non-empty line.
"a\r\n": "a\r\n", // Preserve CRLF in a file containing a single non-empty line.
"a\nb\n": "a\r\nb\r\n", // Convert LF to CRLF in multiline UNIX file.
"a\r\nb\n": "a\r\nb\r\n", // Convert LF to CRLF in a file containing a mix of UNIX and DOS lines.
"a\nb\r\n": "a\r\nb\r\n", // Convert LF to CRLF in a file containing a mix of UNIX and DOS lines.
} {
if got, err := unix2DOS([]byte(data)); err != nil || !bytes.Equal(got, []byte(want)) {
t.Errorf("unix2DOS(%q) == %q, %v, want %q, nil", data, got, err, want)
}
}
}
func setSpecialVal(ts *TestScript, neg bool, args []string) {
ts.Setenv("SPECIALVAL", "42")
}
func ensureSpecialVal(ts *TestScript, neg bool, args []string) {
want := "42"
if got := ts.Getenv("SPECIALVAL"); got != want {
ts.Fatalf("expected SPECIALVAL to be %q; got %q", want, got)
}
}
// interrupt interrupts the current background command.
// Note that this will not work under Windows.
func interrupt(ts *TestScript, neg bool, args []string) {
if neg {
ts.Fatalf("interrupt does not support neg")
}
if len(args) > 0 {
ts.Fatalf("unexpected args found")
}
bg := ts.BackgroundCmds()
if got, want := len(bg), 1; got != want {
ts.Fatalf("unexpected background cmd count; got %d want %d", got, want)
}
bg[0].Process.Signal(os.Interrupt)
}
func waitFile(ts *TestScript, neg bool, args []string) {
if neg {
ts.Fatalf("waitfile does not support neg")
}
if len(args) != 1 {
ts.Fatalf("usage: waitfile file")
}
path := ts.MkAbs(args[0])
for i := 0; i < 100; i++ {
_, err := os.Stat(path)
if err == nil {
return
}
if !os.IsNotExist(err) {
ts.Fatalf("unexpected stat error: %v", err)
}
time.Sleep(10 * time.Millisecond)
}
ts.Fatalf("timed out waiting for %q to be created", path)
}
type fakeT struct {
log strings.Builder
verbose bool
failed bool
}
var errAbort = errors.New("abort test")
func (t *fakeT) Skip(args ...interface{}) {
panic(errAbort)
}
func (t *fakeT) Fatal(args ...interface{}) {
t.Log(args...)
t.FailNow()
}
func (t *fakeT) Parallel() {}
func (t *fakeT) Log(args ...interface{}) {
fmt.Fprint(&t.log, args...)
}
func (t *fakeT) FailNow() {
t.failed = true
panic(errAbort)
}
func (t *fakeT) Run(name string, f func(T)) {
f(t)
}
func (t *fakeT) Verbose() bool {
return t.verbose
}
func (t *fakeT) Failed() bool {
return t.failed
}