-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
driver.go
105 lines (89 loc) · 3 KB
/
driver.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
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// The integration driver provides a suite of tests to run against a registered runner.
package main
import (
"context"
"flag"
"regexp"
"sync"
"sync/atomic"
"github.com/apache/beam/sdks/go/pkg/beam"
"github.com/apache/beam/sdks/go/pkg/beam/io/filesystem/memfs"
"github.com/apache/beam/sdks/go/pkg/beam/log"
"github.com/apache/beam/sdks/go/pkg/beam/x/beamx"
"github.com/apache/beam/sdks/go/test/integration/primitives"
"github.com/apache/beam/sdks/go/test/integration/wordcount"
)
var (
parallel = flag.Int("parallel", 10, "Number of tests to run in parallel")
filter = flag.String("filter", ".*", "Test filer to run a subset of tests")
)
const old_pond = "memfs://old_pond"
func init() {
memfs.Write(old_pond, []byte("old pond \na frog leaps in\nwater's sound\n"))
}
type namedPipeline struct {
name string
p *beam.Pipeline
}
func main() {
flag.Parse()
beam.Init()
if *parallel < 1 {
*parallel = 1
}
pipelines := []namedPipeline{
{"wordcount:memfs", wordcount.WordCount(old_pond, "+Qj8iAnV5BI2A4sbzUbb6Q==", 8)},
{"wordcount:kinglear", wordcount.WordCount("gs://apache-beam-samples/shakespeare/kinglear.txt", "7ZCh5ih9m8IW1w+iS8sRKg==", 4749)},
{"pardo:multioutput", primitives.ParDoMultiOutput()},
// BEAM-3286: {"pardo:sideinput", primitives.ParDoSideInput()},
// BEAM-3286: {"pardo:kvsideinput", primitives.ParDoKVSideInput()},
{"cogbk:cogbk", primitives.CoGBK()},
{"flatten:flatten", primitives.Flatten()},
// {"flatten:dup", primitives.FlattenDup()},
}
re := regexp.MustCompile(*filter)
ctx := context.Background()
ch := make(chan namedPipeline, len(pipelines))
for _, np := range pipelines {
if re.MatchString(np.name) {
ch <- np
}
}
close(ch)
var failures int32
var wg sync.WaitGroup
for i := 0; i < *parallel; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for np := range ch {
log.Infof(ctx, "Running %v test ..", np.name)
if err := beamx.Run(ctx, np.p); err != nil {
atomic.AddInt32(&failures, 1)
log.Errorf(ctx, "Test %v failed: %v", np.name, err)
} else {
log.Infof(ctx, "Test %v completed", np.name)
}
}
}()
}
wg.Wait()
if failures > 0 {
log.Exitf(ctx, "Result: %v tests failed", failures)
}
log.Infof(ctx, "Result: all tests passed!")
}