Source file
src/testing/example.go
1
2
3
4
5 package testing
6
7 import (
8 "fmt"
9 "runtime"
10 "slices"
11 "strings"
12 "time"
13 )
14
15 type InternalExample struct {
16 Name string
17 F func()
18 Output string
19 Unordered bool
20 }
21
22
23
24 func RunExamples(matchString func(pat, str string) (bool, error), examples []InternalExample) (ok bool) {
25 _, ok = runExamples(matchString, examples)
26 return ok
27 }
28
29 func runExamples(matchString func(pat, str string) (bool, error), examples []InternalExample) (ran, ok bool) {
30 ok = true
31
32 m := newMatcher(matchString, *match, "-test.run", *skip)
33
34 var eg InternalExample
35 for _, eg = range examples {
36 _, matched, _ := m.fullName(nil, eg.Name)
37 if !matched {
38 continue
39 }
40 ran = true
41 if !runExample(eg) {
42 ok = false
43 }
44 }
45
46 return ran, ok
47 }
48
49
50
51
52
53
54
55
56
57
58 func (eg *InternalExample) processRunResult(stdout string, timeSpent time.Duration, finished bool, recovered any) (passed bool) {
59 passed = true
60 dstr := fmtDuration(timeSpent)
61 var fail string
62 got := strings.TrimSpace(stdout)
63 want := strings.TrimSpace(eg.Output)
64 if runtime.GOOS == "windows" {
65 got = strings.ReplaceAll(got, "\r\n", "\n")
66 want = strings.ReplaceAll(want, "\r\n", "\n")
67 }
68 if eg.Unordered {
69 gotLines := slices.Sorted(strings.SplitSeq(got, "\n"))
70 wantLines := slices.Sorted(strings.SplitSeq(want, "\n"))
71 if !slices.Equal(gotLines, wantLines) && recovered == nil {
72 fail = fmt.Sprintf("got:\n%s\nwant (unordered):\n%s\n", stdout, eg.Output)
73 }
74 } else {
75 if got != want && recovered == nil {
76 fail = fmt.Sprintf("got:\n%s\nwant:\n%s\n", got, want)
77 }
78 }
79 if fail != "" || !finished || recovered != nil {
80 fmt.Printf("%s--- FAIL: %s (%s)\n%s", chatty.prefix(), eg.Name, dstr, fail)
81 passed = false
82 } else if chatty.on {
83 fmt.Printf("%s--- PASS: %s (%s)\n", chatty.prefix(), eg.Name, dstr)
84 }
85
86 if chatty.on && chatty.json {
87 fmt.Printf("%s=== NAME %s\n", chatty.prefix(), "")
88 }
89
90 if recovered != nil {
91
92 panic(recovered)
93 } else if !finished {
94 panic(errNilPanicOrGoexit)
95 }
96
97 return
98 }
99
View as plain text