-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
test_runner.go
1211 lines (1110 loc) · 37.7 KB
/
test_runner.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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2018 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package main
import (
"context"
"fmt"
"io"
"math/rand"
"net"
"net/http"
"os"
"os/exec"
"path/filepath"
"runtime"
"sort"
"strconv"
"strings"
"sync"
"time"
"github.com/cockroachdb/cockroach/pkg/cmd/internal/issues"
"github.com/cockroachdb/cockroach/pkg/util/ctxgroup"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/quotapool"
"github.com/cockroachdb/cockroach/pkg/util/stop"
"github.com/cockroachdb/cockroach/pkg/util/syncutil"
"github.com/cockroachdb/cockroach/pkg/util/timeutil"
"github.com/cockroachdb/cockroach/pkg/util/version"
"github.com/cockroachdb/errors"
"github.com/cockroachdb/logtags"
"github.com/petermattis/goid"
)
// testRunner runs tests.
type testRunner struct {
// buildVersion is the version of the Cockroach binary that tests will run against.
buildVersion version.Version
config struct {
// skipClusterValidationOnAttach skips validation on existing clusters that
// the registry uses for running tests.
skipClusterValidationOnAttach bool
// skipClusterStopOnAttach skips stopping existing clusters that
// the registry uses for running tests. It implies skipClusterWipeOnAttach.
skipClusterStopOnAttach bool
skipClusterWipeOnAttach bool
}
status struct {
syncutil.Mutex
running map[*test]struct{}
pass map[*test]struct{}
fail map[*test]struct{}
skip map[*test]struct{}
}
// cr keeps track of all live clusters.
cr *clusterRegistry
workersMu struct {
syncutil.Mutex
// workers is a map from worker name to information about each worker currently running tests.
workers map[string]*workerStatus
}
// work maintains the remaining tests to run.
work *workPool
completedTestsMu struct {
syncutil.Mutex
// completed maintains information on all completed test runs.
completed []completedTestInfo
}
}
// newTestRunner constructs a testRunner.
//
// cr: The cluster registry with which all clusters will be registered. The
// caller provides this as the caller needs to be able to shut clusters down
// on Ctrl+C.
// buildVersion: The version of the Cockroach binary against which tests will run.
func newTestRunner(cr *clusterRegistry, buildVersion version.Version) *testRunner {
r := &testRunner{
cr: cr,
buildVersion: buildVersion,
}
r.config.skipClusterWipeOnAttach = !clusterWipe
r.workersMu.workers = make(map[string]*workerStatus)
return r
}
// clustersOpt groups options for the clusters to be used by the tests.
type clustersOpt struct {
// The type of cluster to use. If localCluster, then no other fields can be
// set.
typ clusterType
// If set, all the tests will run against this roachprod cluster.
clusterName string
// If set, all the clusters will use this ID as part of their name. When
// roachtests is invoked by TeamCity, this will be the build id.
clusterID string
// The name of the user running the tests. This will be part of cluster names.
user string
// cpuQuota specifies how many CPUs can be used concurrently by the roachprod
// clusters. While there's no quota available for creating a new cluster, the
// test runner will wait for other tests to finish and their cluster to be
// destroyed (or reused). Note that this limit is global, not per zone.
cpuQuota int
// If set, clusters will not be wiped or destroyed when a test using the
// respective cluster fails. These cluster will linger around and they'll
// continue counting towards the cpuQuota.
keepClustersOnTestFailure bool
}
func (c clustersOpt) validate() error {
if c.typ == localCluster {
if c.clusterName != "" {
return errors.New("clusterName cannot be set when typ=localCluster")
}
if c.clusterID != "" {
return errors.New("clusterID cannot be set when typ=localCluster")
}
}
return nil
}
// Run runs tests.
//
// Args:
// tests: The tests to run.
// count: How many times to run each test selected by filter.
// parallelism: How many workers to use for running tests. Tests are run
// locally (although generally they run against remote roachprod clusters).
// parallelism bounds the maximum number of tests that run concurrently. Note
// that the concurrency is also affected by cpuQuota.
// clusterOpt: Options for the clusters to use by tests.
// lopt: Options for logging.
func (r *testRunner) Run(
ctx context.Context,
tests []testSpec,
count int,
parallelism int,
clustersOpt clustersOpt,
artifactsDir string,
lopt loggingOpt,
) error {
// Validate options.
if len(tests) == 0 {
return fmt.Errorf("no test matched filters")
}
if err := clustersOpt.validate(); err != nil {
return err
}
if parallelism != 1 {
if clustersOpt.clusterName != "" {
return fmt.Errorf("--cluster incompatible with --parallelism. Use --parallelism=1")
}
if clustersOpt.typ == localCluster {
return fmt.Errorf("--local incompatible with --parallelism. Use --parallelism=1")
}
}
if name := clustersOpt.clusterName; name != "" {
// Since we were given a cluster, check that all tests we have to run have compatible specs.
// We should also check against the spec of the cluster, but we don't
// currently have a way of doing that; we're relying on the fact that attaching to the cluster
// will fail if the cluster is incompatible.
spec := tests[0].Cluster
spec.Lifetime = 0
for i := 1; i < len(tests); i++ {
spec2 := tests[i].Cluster
spec2.Lifetime = 0
if spec != spec2 {
return errors.Errorf("cluster specified but found tests "+
"with incompatible specs: %s (%s) - %s (%s)",
tests[0].Name, spec, tests[i].Name, spec2,
)
}
}
}
var numConcurrentClusterCreations int
if cloud == "aws" {
// AWS has ridiculous API calls limits, so we're going to create one cluster
// at a time. Internally, roachprod has throttling for the calls required to
// create a single cluster.
numConcurrentClusterCreations = 1
} else {
numConcurrentClusterCreations = 1000
}
clusterFactory := newClusterFactory(
clustersOpt.user, clustersOpt.clusterID, lopt.artifactsDir, r.cr, numConcurrentClusterCreations)
// allocateCluster will be used by workers to create new clusters (or to attach
// to an existing one).
allocateCluster := func(
ctx context.Context,
t testSpec,
alloc *quotapool.IntAlloc,
artifactsDir string,
wStatus *workerStatus,
) (*cluster, error) {
wStatus.SetStatus("creating cluster")
defer wStatus.SetStatus("")
lopt.l.PrintfCtx(ctx, "Creating new cluster for test %s: %s", t.Name, t.Cluster)
existingClusterName := clustersOpt.clusterName
if existingClusterName != "" {
// Logs for attaching to a cluster go to a dedicated log file.
logPath := filepath.Join(artifactsDir, runnerLogsDir, "cluster-create", existingClusterName+".log")
clusterL, err := rootLogger(logPath, lopt.tee)
defer clusterL.close()
if err != nil {
return nil, err
}
opt := attachOpt{
skipValidation: r.config.skipClusterValidationOnAttach,
skipStop: r.config.skipClusterStopOnAttach,
skipWipe: r.config.skipClusterWipeOnAttach,
}
return attachToExistingCluster(ctx, existingClusterName, clusterL, t.Cluster, opt, r.cr)
}
cfg := clusterConfig{
spec: t.Cluster,
artifactsDir: artifactsDir,
localCluster: clustersOpt.typ == localCluster,
alloc: alloc,
}
return clusterFactory.newCluster(ctx, cfg, wStatus.SetStatus, lopt.tee)
}
// Seed the default rand source so that different runs get different cluster
// IDs.
rand.Seed(timeutil.Now().UnixNano())
n := len(tests)
if n*count < parallelism {
// Don't spin up more workers than necessary.
parallelism = n * count
}
r.status.running = make(map[*test]struct{})
r.status.pass = make(map[*test]struct{})
r.status.fail = make(map[*test]struct{})
r.status.skip = make(map[*test]struct{})
r.work = newWorkPool(tests, count)
stopper := stop.NewStopper()
errs := &workerErrors{}
qp := quotapool.NewIntPool("cloud cpu", uint64(clustersOpt.cpuQuota))
l := lopt.l
var wg sync.WaitGroup
for i := 0; i < parallelism; i++ {
i := i // Copy for closure.
wg.Add(1)
stopper.RunWorker(ctx, func(ctx context.Context) {
defer wg.Done()
if err := r.runWorker(
ctx, fmt.Sprintf("w%d", i) /* name */, r.work, qp,
stopper.ShouldQuiesce(),
clustersOpt.keepClustersOnTestFailure,
lopt.artifactsDir, lopt.runnerLogPath, lopt.tee, lopt.stdout,
allocateCluster,
l,
); err != nil {
// A worker returned an error. Let's shut down.
msg := fmt.Sprintf("Worker %d returned with error. Quiescing. Error: %+v", i, err)
shout(ctx, l, lopt.stdout, msg)
errs.AddErr(err)
// Quiesce the stopper. This will cause all workers to not pick up more
// tests after finishing the currently running one.
stopper.Quiesce(ctx)
// Interrupt everybody waiting for resources.
if qp != nil {
qp.Close(msg)
}
}
})
}
// Wait for all the workers to finish.
wg.Wait()
r.cr.destroyAllClusters(ctx, l)
if errs.Err() != nil {
shout(ctx, l, lopt.stdout, "FAIL (err: %s)", errs.Err())
return errs.Err()
}
passFailLine := r.generateReport()
shout(ctx, l, lopt.stdout, passFailLine)
if len(r.status.fail) > 0 {
return fmt.Errorf("some tests failed")
}
return nil
}
type clusterAllocatorFn func(
ctx context.Context,
t testSpec,
alloc *quotapool.IntAlloc,
artifactsDir string,
wStatus *workerStatus,
) (*cluster, error)
// runWorker runs tests in a loop until work is exhausted.
//
// Errors are returned in exceptional circumstances, like when a cluster failed
// to be created or when a test timed out and failed to react to its
// cancellation. Upon return, an attempt is performed to destroy the cluster used
// by this worker. If an error is returned, we might have "leaked" cpu quota
// because the cluster destruction might have failed but we've still released
// the quota. Also, we might have "leaked" a test goroutine (in the test
// nonresponsive to timeout case) which might still be running and doing
// arbitrary things to the cluster it was using.
//
// Args:
// name: The worker's name, to be used as a prefix for log messages.
// artifactsRootDir: The artifacts dir. Each test's logs are going to be under a
// run_<n> dir. If empty, test log files will not be created.
// testRunnerLogPath: The path to the test runner's log. It will be copied to
// failing tests' artifacts dir if running under TeamCity.
// stdout: The Writer to use for messages that need to go to stdout (e.g. the
// "=== RUN" and "--- FAIL" lines).
// teeOpt: The teeing option for future test loggers.
// l: The logger to use for more verbose messages.
func (r *testRunner) runWorker(
ctx context.Context,
name string,
work *workPool,
qp *quotapool.IntPool,
interrupt <-chan struct{},
debug bool,
artifactsRootDir string,
testRunnerLogPath string,
teeOpt teeOptType,
stdout io.Writer,
allocateCluster clusterAllocatorFn,
l *logger,
) error {
ctx = logtags.AddTag(ctx, name, nil /* value */)
wStatus := r.addWorker(ctx, name)
defer func() {
r.removeWorker(ctx, name)
}()
var c *cluster // The cluster currently being used.
var err error
// When this method returns we'll destroy the cluster we had at the time.
// Note that, if debug was set, c has been set to nil.
defer func() {
wStatus.SetTest(nil /* test */, testToRunRes{noWork: true})
wStatus.SetStatus("worker done")
wStatus.SetCluster(nil)
if c == nil {
l.PrintfCtx(ctx, "Worker exiting; no cluster to destroy.")
return
}
doDestroy := ctx.Err() == nil
if doDestroy {
l.PrintfCtx(ctx, "Worker exiting; destroying cluster.")
c.Destroy(context.Background(), closeLogger, l)
} else {
l.PrintfCtx(ctx, "Worker exiting with canceled ctx. Not destroying cluster.")
}
}()
// Loop until there's no more work in the pool, we get interrupted, or an
// error occurs.
for {
select {
case <-interrupt:
l.ErrorfCtx(ctx, "worker detected interruption")
return errors.Errorf("interrupted")
default:
if ctx.Err() != nil {
// The context has been canceled. No need to continue.
return errors.Wrap(ctx.Err(), "worker ctx done")
}
}
if c != nil {
if _, ok := c.spec.ReusePolicy.(reusePolicyNone); ok {
wStatus.SetStatus("destroying cluster")
// We use a context that can't be canceled for the Destroy().
c.Destroy(context.Background(), closeLogger, l)
c = nil
}
}
var testToRun testToRunRes
wStatus.SetTest(nil /* test */, testToRunRes{})
wStatus.SetStatus("getting work")
testToRun, c, err = r.getWork(
ctx, work, qp, c, interrupt, l,
getWorkCallbacks{
createCluster: func(ctx context.Context, ttr testToRunRes) (*cluster, error) {
wStatus.SetTest(nil /* test */, ttr)
return allocateCluster(ctx, ttr.spec, ttr.alloc, artifactsRootDir, wStatus)
},
onDestroy: func() {
wStatus.SetCluster(nil)
},
})
if err != nil || testToRun.noWork {
return err
}
c.status("running test")
// Prepare the test's logger.
logPath := ""
var artifactsDir string
var artifactsSpec string
if artifactsRootDir != "" {
escapedTestName := teamCityNameEscape(testToRun.spec.Name)
runSuffix := "run_" + strconv.Itoa(testToRun.runNum)
base := filepath.Join(artifactsRootDir, escapedTestName)
artifactsDir = filepath.Join(base, runSuffix)
logPath = filepath.Join(artifactsDir, "test.log")
// Map artifacts/TestFoo/** => TestFoo/**, i.e. collect the artifacts
// for this test exactly as they are laid out on disk (when the time
// comes).
artifactsSpec = fmt.Sprintf("%s/** => %s", base, escapedTestName)
}
testL, err := rootLogger(logPath, teeOpt)
if err != nil {
return err
}
t := &test{
spec: &testToRun.spec,
buildVersion: r.buildVersion,
artifactsDir: artifactsDir,
artifactsSpec: artifactsSpec,
l: testL,
}
// Tell the cluster that, from now on, it will be run "on behalf of this
// test".
c.setTest(t)
wStatus.SetCluster(c)
wStatus.SetTest(t, testToRun)
wStatus.SetStatus("running test")
// Now run the test.
l.PrintfCtx(ctx, "starting test: %s:%d", testToRun.spec.Name, testToRun.runNum)
var success bool
success, err = r.runTest(ctx, t, testToRun.runNum, c, testRunnerLogPath, stdout, testL)
if err != nil {
shout(ctx, l, stdout, "test returned error: %s: %s", t.Name(), err)
// Mark the test as failed if it isn't already.
if !t.Failed() {
t.printAndFail(0 /* skip */, err)
}
} else {
msg := "test passed"
if !success {
msg = fmt.Sprintf("test failed: %s (run %d)", t.Name(), testToRun.runNum)
}
l.PrintfCtx(ctx, msg)
}
testL.close()
if err != nil || t.Failed() {
failureMsg := fmt.Sprintf("%s (%d) - ", testToRun.spec.Name, testToRun.runNum)
if err != nil {
failureMsg += fmt.Sprintf("%+v", err)
} else {
failureMsg += t.FailureMsg()
}
if debug {
// Save the cluster for future debugging.
c.Save(ctx, failureMsg, l)
// Continue with a fresh cluster.
c = nil
} else {
// On any test failure or error, we destroy the cluster. We could be
// more selective, but this sounds safer.
l.PrintfCtx(ctx, "destroying cluster %s because: %s", c, failureMsg)
c.Destroy(context.Background(), closeLogger, l)
c = nil
}
if err != nil {
return err
}
} else {
// Upon success fetch the perf artifacts from the remote hosts.
getPerfArtifacts(ctx, l, c, t)
}
}
}
// getPerfArtifacts retrieves the perf artifacts for the test.
// If there's an error, oh well, don't do anything rash like fail a test
// which already passed.
func getPerfArtifacts(ctx context.Context, l *logger, c *cluster, t *test) {
g := ctxgroup.WithContext(ctx)
fetchNode := func(node int) func(context.Context) error {
return func(ctx context.Context) error {
testCmd := `'PERF_ARTIFACTS="` + perfArtifactsDir + `"
if [[ -d "${PERF_ARTIFACTS}" ]]; then
echo true
elif [[ -e "${PERF_ARTIFACTS}" ]]; then
ls -la "${PERF_ARTIFACTS}"
exit 1
else
echo false
fi'`
out, err := c.RunWithBuffer(ctx, l, c.Node(node), "bash", "-c", testCmd)
if err != nil {
return errors.Wrapf(err, "failed to check for perf artifacts: %v", string(out))
}
switch out := strings.TrimSpace(string(out)); out {
case "true":
dst := fmt.Sprintf("%s/%d.%s", t.artifactsDir, node, perfArtifactsDir)
return c.Get(ctx, l, perfArtifactsDir, dst, c.Node(node))
case "false":
l.PrintfCtx(ctx, "no perf artifacts exist on node %v", c.Node(node))
return nil
default:
return errors.Errorf("unexpected output when checking for perf artifacts: %s", out)
}
}
}
for _, i := range c.All() {
g.GoCtx(fetchNode(i))
}
if err := g.Wait(); err != nil {
l.PrintfCtx(ctx, "failed to get perf artifacts: %v", err)
}
}
func allStacks() []byte {
// Collect up to 5mb worth of stacks.
b := make([]byte, 5*(1<<20))
return b[:runtime.Stack(b, true /* all */)]
}
// An error is returned if the test is still running (on another goroutine) when
// this returns. This happens when the test doesn't respond to cancellation.
// Returns true if the test is considered to have passed, false otherwise.
//
// Args:
// c: The cluster on which the test will run. runTest() does not wipe or destroy
// the cluster.
// testRunnerLogPath: The path to the test runner's log. It will be copied to
// the test's artifacts dir if the test fails and we're running under
// TeamCity.
func (r *testRunner) runTest(
ctx context.Context,
t *test,
runNum int,
c *cluster,
testRunnerLogPath string,
stdout io.Writer,
l *logger,
) (bool, error) {
if t.spec.Skip != "" {
return false, fmt.Errorf("can't run skipped test: %s: %s", t.Name(), t.spec.Skip)
}
if teamCity {
shout(ctx, l, stdout, "##teamcity[testStarted name='%s' flowId='%s']", t.Name(), t.Name())
} else {
shout(ctx, l, stdout, "=== RUN %s", t.Name())
}
r.status.Lock()
r.status.running[t] = struct{}{}
r.status.Unlock()
t.runner = callerName()
t.runnerID = goid.Get()
defer func() {
t.end = timeutil.Now()
// We only have to record panics if the panic'd value is not the sentinel
// produced by t.Fatal*().
if err := recover(); err != nil && err != errTestFatal {
t.mu.Lock()
t.mu.failed = true
t.mu.output = append(t.mu.output, t.decorate(0 /* skip */, fmt.Sprint(err))...)
t.mu.Unlock()
}
t.mu.Lock()
t.mu.done = true
t.mu.Unlock()
durationStr := fmt.Sprintf("%.2fs", t.duration().Seconds())
if t.Failed() {
t.mu.Lock()
output := fmt.Sprintf("test artifacts and logs in: %s\n", t.ArtifactsDir()) + string(t.mu.output)
t.mu.Unlock()
if teamCity {
shout(ctx, l, stdout, "##teamcity[testFailed name='%s' details='%s' flowId='%s']",
t.Name(), teamCityEscape(output), t.Name(),
)
// Copy a snapshot of the testrunner's log to the test's artifacts dir
// so that we collect it below.
cp := exec.Command("cp", testRunnerLogPath, t.artifactsDir)
if err := cp.Run(); err != nil {
l.ErrorfCtx(ctx, "failed to copy test runner's logs to test artifacts: %s", err)
}
}
shout(ctx, l, stdout, "--- FAIL: %s (%s)\n%s", t.Name(), durationStr, output)
// NB: check NodeCount > 0 to avoid posting issues from this pkg's unit tests.
if issues.CanPost() && t.spec.Run != nil && t.spec.Cluster.NodeCount > 0 {
projectColumnID := 0
if info, ok := roachtestOwners[t.spec.Owner]; ok {
projectColumnID = info.TriageColumnID
}
branch := "<unknown branch>"
if b := os.Getenv("TC_BUILD_BRANCH"); b != "" {
branch = b
}
msg := fmt.Sprintf("The test failed on branch=%s, cloud=%s:\n%s",
branch, cloud, output)
artifacts := fmt.Sprintf("/%s", t.Name())
req := issues.PostRequest{
// TODO(tbg): actually use this as a template.
TitleTemplate: fmt.Sprintf("roachtest: %s failed", t.Name()),
// TODO(tbg): make a template better adapted to roachtest.
BodyTemplate: issues.UnitTestFailureBody,
PackageName: "roachtest",
TestName: t.Name(),
Message: msg,
Artifacts: artifacts,
// Issues posted from roachtest are identifiable as such and
// they are also release blockers (this label may be removed
// by a human upon closer investigation).
ExtraLabels: []string{"O-roachtest", "release-blocker"},
ProjectColumnID: projectColumnID,
}
if err := issues.Post(
context.Background(),
req,
); err != nil {
shout(ctx, l, stdout, "failed to post issue: %s", err)
}
}
} else {
shout(ctx, l, stdout, "--- PASS: %s (%s)", t.Name(), durationStr)
// If `##teamcity[testFailed ...]` is not present before `##teamCity[testFinished ...]`,
// TeamCity regards the test as successful.
}
if teamCity {
shout(ctx, l, stdout, "##teamcity[testFinished name='%s' flowId='%s']", t.Name(), t.Name())
if t.artifactsSpec != "" {
// Tell TeamCity to collect this test's artifacts now. The TC job
// also collects the artifacts directory wholesale at the end, but
// here we make sure that the artifacts for any test that has already
// finished are available in the UI even before the job as a whole
// has completed. We're using the exact same destination to avoid
// duplication of any of the artifacts.
shout(ctx, l, stdout, "##teamcity[publishArtifacts '%s']", t.artifactsSpec)
}
}
r.recordTestFinish(completedTestInfo{
test: t.Name(),
run: runNum,
start: t.start,
end: t.end,
pass: !t.Failed(),
failure: t.FailureMsg(),
})
r.status.Lock()
delete(r.status.running, t)
// Only include tests with a Run function in the summary output.
if t.spec.Run != nil {
if t.Failed() {
r.status.fail[t] = struct{}{}
} else if t.spec.Skip == "" {
r.status.pass[t] = struct{}{}
} else {
r.status.skip[t] = struct{}{}
}
}
r.status.Unlock()
}()
t.start = timeutil.Now()
timeout := 10 * time.Hour
if t.spec.Timeout != 0 {
timeout = t.spec.Timeout
}
// Make sure the cluster has enough life left for the test plus enough headroom
// after the test finishes so that the next test can be selected. If it
// doesn't, extend it.
minExp := timeutil.Now().Add(timeout + time.Hour)
if c.expiration.Before(minExp) {
extend := minExp.Sub(c.expiration)
l.PrintfCtx(ctx, "cluster needs to survive until %s, but has expiration: %s. Extending.",
minExp, c.expiration)
if err := c.Extend(ctx, extend, l); err != nil {
t.printfAndFail(0 /* skip */, "failed to extend cluster: %s", err)
return false, nil
}
}
runCtx, cancel := context.WithCancel(ctx)
defer cancel()
t.mu.Lock()
// t.Fatal() will cancel this context.
t.mu.cancel = cancel
t.mu.Unlock()
// We run the actual test in a different goroutine because it might call
// t.Fatal() which kills the goroutine, and also because we want to enforce a
// timeout.
success := false
done := make(chan struct{})
go func() {
defer close(done) // closed only after we've grabbed the debug info below
// This is the call to actually run the test.
defer func() {
// We only have to record panics if the panic'd value is not the sentinel
// produced by t.Fatal*().
if r := recover(); r != nil && r != errTestFatal {
// TODO(andreimatei): prevent the cluster from being reused.
t.Fatalf("test panicked: %v", r)
}
}()
t.spec.Run(runCtx, t, c)
}()
teardownL, err := c.l.ChildLogger("teardown", quietStderr, quietStdout)
if err != nil {
panic(err)
// teardownL = c.l
}
select {
case <-done:
s := "success"
if t.Failed() {
s = "failure"
}
c.l.Printf("tearing down after %s; see teardown.log", s)
l, c.l, t.l = teardownL, teardownL, teardownL
case <-time.After(timeout):
c.l.Printf("tearing down after timeout; see teardown.log")
l, c.l, t.l = teardownL, teardownL, teardownL
// Timeouts are often opaque. Improve our changes by dumping the stack
// so that at least we can piece together what the test is trying to
// do at this very moment.
// In large roachtest runs, this will dump everyone else's stack as well,
// but this is just hard to avoid. Moving to a worker model in which
// each roachtest is spawned off as a separate process would address
// this at the expense of ease of communication between the runner and
// the test.
//
// Do this before we cancel the context, which might (hopefully) unblock
// the test. We want to see where it got stuck.
const stacksFile = "__stacks"
if cl, err := t.l.ChildLogger(stacksFile, quietStderr, quietStdout); err == nil {
cl.PrintfCtx(ctx, "all stacks:\n\n%s\n", allStacks())
t.l.PrintfCtx(ctx, "dumped stacks to %s", stacksFile)
}
// Now kill anything going on in this cluster while collecting stacks
// to the logs, to get the server side of the hang.
//
// TODO(tbg): send --sig=3 followed by a hard kill after we've fixed
// https://github.com/cockroachdb/cockroach/issues/45875.
// Signal 11 will dump stacks, but it might be confusing to folks
// who debug from the artifacts only.
//
// Don't use surrounding context, which are likely already canceled.
if nodes := c.All(); len(nodes) > 0 { // avoid tests
innerCtx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
_ = c.StopE(innerCtx, c.All(), stopArgs("--sig=11"))
cancel()
}
// Mark the test as failed (which will also cancel its context). Then
// we'll wait up to 5 minutes in the hope that the test reacts either to
// the ctx cancelation or to the fact that it was marked as failed (and
// all processes nuked out from under it).
// If that happens, great - we return normally and so the cluster can be
// reused. It the test does not react to anything, then we return an
// error, which will cause the caller to stop everything and destroy
// this cluster (as well as all the others). The cluster cannot be
// reused since we have a runaway test goroutine that's presumably going
// to continue using the cluster.
t.printfAndFail(0 /* skip */, "test timed out (%s)", timeout)
select {
case <-done:
if success {
panic("expected success=false after a timeout")
}
case <-time.After(5 * time.Minute):
// We really shouldn't get here unless the test code somehow managed
// to deadlock without blocking on anything remote - since we killed
// everything.
const msg = "test timed out and afterwards failed to respond to cancelation"
t.l.PrintfCtx(ctx, msg)
r.collectClusterLogs(ctx, c, t.l)
// We return an error here because the test goroutine is still running, so
// we want to alert the caller of this unusual situation.
return false, errors.New(msg)
}
}
// Detect dead nodes in an inner defer. Note that this will call
// t.printfAndFail() when appropriate, which will cause the code below to
// enter the t.Failed() branch.
c.FailOnDeadNodes(ctx, t)
if !t.Failed() {
// Detect replica divergence (i.e. ranges in which replicas have arrived
// at the same log position with different states).
//
// We avoid trying to do this when t.Failed() (and in particular when there
// are dead nodes) because for reasons @tbg does not understand this gets
// stuck occasionally, which really ruins the roachtest run. The method
// below already uses a ctx timeout and SQL statement_timeout, but it does
// not seem to be enough.
//
// TODO(testinfra): figure out why this can still get stuck despite the
// above.
c.FailOnReplicaDivergence(ctx, t)
}
if t.Failed() {
r.collectClusterLogs(ctx, c, t.l)
return false, nil
}
return true, nil
}
func (r *testRunner) collectClusterLogs(ctx context.Context, c *cluster, l *logger) {
// NB: fetch the logs even when we have a debug zip because
// debug zip can't ever get the logs for down nodes.
// We only save artifacts for failed tests in CI, so this
// duplication is acceptable.
// NB: fetch the logs *first* in case one of the other steps
// below has problems. For example, `debug zip` is known to
// hang sometimes at the time of writing, see:
// https://github.com/cockroachdb/cockroach/issues/39620
l.PrintfCtx(ctx, "collecting cluster logs")
if err := c.FetchLogs(ctx); err != nil {
l.Printf("failed to download logs: %s", err)
}
if err := c.FetchDmesg(ctx); err != nil {
l.Printf("failed to fetch dmesg: %s", err)
}
if err := c.FetchJournalctl(ctx); err != nil {
l.Printf("failed to fetch journalctl: %s", err)
}
if err := c.FetchCores(ctx); err != nil {
l.Printf("failed to fetch cores: %s", err)
}
if err := c.CopyRoachprodState(ctx); err != nil {
l.Printf("failed to copy roachprod state: %s", err)
}
if err := c.FetchDiskUsage(ctx); err != nil {
l.Printf("failed to fetch disk uage summary: %s", err)
}
if err := c.FetchDebugZip(ctx); err != nil {
l.Printf("failed to collect zip: %s", err)
}
}
func callerName() string {
// Make room for the skip PC.
var pc [2]uintptr
n := runtime.Callers(2, pc[:]) // runtime.Callers + callerName
if n == 0 {
panic("zero callers found")
}
frames := runtime.CallersFrames(pc[:n])
frame, _ := frames.Next()
return frame.Function
}
// generateReport produces the final pass/fail line and produces a slack report
// if configured.
func (r *testRunner) generateReport() string {
r.status.Lock()
defer r.status.Unlock()
postSlackReport(r.status.pass, r.status.fail, r.status.skip)
fails := len(r.status.fail)
var msg string
if fails > 0 {
msg = fmt.Sprintf("FAIL (%d fails)\n", fails)
} else {
msg = "PASS"
}
return msg
}
type getWorkCallbacks struct {
createCluster func(context.Context, testToRunRes) (*cluster, error)
onDestroy func()
}
// getWork selects the next test to run and creates a suitable cluster for it if
// need be. If a new cluster needs to be created, the method blocks until there
// are enough resources available to run it.
// getWork takes in a cluster; if not nil, tests that can reuse it are
// preferred. If a test that can reuse it is not found (or if there's no more
// work), the cluster is destroyed (and so its resources are released).
//
// If the cluster is to be reused, getWork() wipes it.
func (r *testRunner) getWork(
ctx context.Context,
work *workPool,
qp *quotapool.IntPool,
c *cluster,
interrupt <-chan struct{},
l *logger,
callbacks getWorkCallbacks,
) (testToRunRes, *cluster, error) {
select {
case <-interrupt:
return testToRunRes{}, nil, fmt.Errorf("interrupted")
default:
}
testToRun, err := work.getTestToRun(ctx, c, qp, r.cr, callbacks.onDestroy, l)
if err != nil {
return testToRunRes{}, nil, err
}
if !testToRun.noWork {
l.PrintfCtx(ctx, "Selected test: %s run: %d.", testToRun.spec.Name, testToRun.runNum)
}
// Are we done?
if testToRun.noWork {
return testToRun, nil, nil
}
// Create a cluster, if we no longer have one.
if testToRun.canReuseCluster {
l.PrintfCtx(ctx, "Using existing cluster: %s. Wiping", c.name)
if err := c.WipeE(ctx, l); err != nil {
return testToRunRes{}, nil, err
}
if err := c.RunL(ctx, l, c.All(), "rm -rf "+perfArtifactsDir); err != nil {
return testToRunRes{}, nil, errors.Wrapf(err, "failed to remove perf artifacts dir")
}
// Overwrite the spec of the cluster with the one coming from the test. In
// particular, this overwrites the reuse policy to reflect what the test
// intends to do with it.
c.spec = testToRun.spec.Cluster
} else {
var err error
c, err = callbacks.createCluster(ctx, testToRun)
if err != nil {
return testToRunRes{}, nil, err
}
}
return testToRun, c, nil
}
// addWorker updates the bookkeeping for one more worker.
func (r *testRunner) addWorker(ctx context.Context, name string) *workerStatus {
r.workersMu.Lock()
defer r.workersMu.Unlock()
w := &workerStatus{name: name}
if _, ok := r.workersMu.workers[name]; ok {
log.Fatalf(ctx, "worker %q already exists", name)
}
r.workersMu.workers[name] = w
return w
}
// removeWorker deletes the bookkepping for a worker that has finished running.
func (r *testRunner) removeWorker(ctx context.Context, name string) {