-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
213 lines (175 loc) · 3.77 KB
/
main_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
package handoff_test
import (
"context"
"errors"
"fmt"
"math/rand"
"net/http"
"os"
"testing"
"time"
"github.com/raphi011/handoff"
"github.com/raphi011/handoff/client"
"github.com/raphi011/handoff/internal/model"
"github.com/stretchr/testify/assert"
_ "github.com/raphi011/handoff/internal/packagetestexample"
)
var te *instance
const (
defaultTimeout = 3 * time.Second
)
func TestMain(m *testing.M) {
te = handoffInstance(defaultTestSuites, []string{"handoff-test", "-p", "0", "-d", ""})
code := m.Run()
te.h.Shutdown()
os.Exit(code)
}
func Fail(t handoff.TB) {
t.Fail()
}
func Flaky(t handoff.TB) {
if rand.Intn(3) == 0 {
t.Fatal("flaky test failed")
}
t.Log("flaky test succeeded")
}
func SoftFail(t handoff.TB) {
t.SoftFailure()
t.Error("Soft fail error")
}
func Retry(x int) handoff.TestFunc {
return func(t handoff.TB) {
if t.Attempt() < x+1 {
t.Fatalf("This tests fails before the %d attempt", x)
}
}
}
func Sleep(sleep time.Duration) handoff.TestFunc {
return func(t handoff.TB) {
time.Sleep(sleep)
}
}
func Success(t handoff.TB) {
t.Log("Success")
}
func LogAttempt(t handoff.TB) {
t.Logf("Attempt: %d", t.Attempt())
}
type instance struct {
h *handoff.Server
client client.Client
}
var defaultTestSuites = []handoff.TestSuite{
{
Name: "succeed",
Tests: []handoff.TestFunc{
Success,
},
},
{
Name: "panicing-setup",
Setup: func() error {
panic("panic")
},
Tests: []handoff.TestFunc{
Success,
},
},
{
Name: "multiple-tests",
MaxTestAttempts: 2,
Tests: []handoff.TestFunc{
Success,
Flaky,
Retry(1),
},
},
{
Name: "failing-setup",
Setup: func() error {
return errors.New("error")
},
Tests: []handoff.TestFunc{
Success,
},
},
{
Name: "needs-retry",
MaxTestAttempts: 2,
Tests: []handoff.TestFunc{
Retry(1),
},
},
{
Name: "soft-fail",
Tests: []handoff.TestFunc{
Success,
SoftFail,
},
},
{
Name: "my-app",
Tests: []handoff.TestFunc{
Flaky,
},
},
{
Name: "failing",
Tests: []handoff.TestFunc{
Fail,
},
},
}
func handoffInstance(
suites []handoff.TestSuite,
args []string,
) *instance {
var options []handoff.Option
for _, ts := range suites {
options = append(options, handoff.WithTestSuite(ts))
}
h := handoff.New(options...)
go h.Run(args)
h.WaitForStartup()
port := h.ServerPort()
return &instance{
h: h,
client: client.New(fmt.Sprintf("http://localhost:%d", port), http.DefaultClient),
}
}
func latestTestAttempt(t *testing.T, tsr client.TestSuiteRun, testName string) client.TestRun {
t.Helper()
var tr client.TestRun
for _, r := range tsr.TestResults {
if r.Name == testName && r.Attempt > tr.Attempt {
tr = r
}
}
assert.NotEmptyf(t, tr.Name, "could not find any attempt for test name %s", testName)
return tr
}
func (ti *instance) createNewTestSuiteRun(t *testing.T, suiteName string) client.TestSuiteRun {
tsr, err := ti.client.CreateTestSuiteRun(context.Background(), suiteName, nil)
assert.NoError(t, err, "unable to create test suite run")
return tsr
}
func (ti *instance) waitForTestSuiteRunWithResult(t *testing.T, timeout time.Duration, suiteName string, runID int, status model.Result) client.TestSuiteRun {
t.Helper()
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
for {
tsr, err := ti.client.GetTestSuiteRun(ctx, suiteName, runID)
if errors.Is(err, context.DeadlineExceeded) {
t.Fatalf("timed out waiting for test suite run with status %s", status)
return model.TestSuiteRunHTTP{}
} else if err != nil {
time.Sleep(50 * time.Millisecond)
continue
}
if tsr.Result == status {
return tsr
} else if tsr.Result != model.ResultPending {
t.Fatalf("test suite run result is %q, expected %q", tsr.Result, status)
}
}
}