-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcs3apivalidator_test.go
50 lines (41 loc) · 1.43 KB
/
cs3apivalidator_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
package main
import (
"os"
"testing"
"time"
"github.com/cucumber/godog"
"github.com/cucumber/godog/colors"
"github.com/owncloud/cs3api-validator/featurecontext"
"github.com/owncloud/cs3api-validator/scenario"
flag "github.com/spf13/pflag"
)
var opts = godog.Options{
Output: colors.Colored(os.Stdout),
Format: "pretty", // can define default values
}
func init() {
godog.BindCommandLineFlags("godog.", &opts)
}
func TestMain(m *testing.M) {
cfg := featurecontext.Config{}
flag.StringVar(&cfg.Endpoint, "endpoint", "localhost:9142", "Endpoint Url and port of a running cs3 implementation")
flag.StringVar(&cfg.GrpcTLSMode, "grpc-tls-mode", "off", "TLS mode for grpc client connections ('off', 'on' or 'insecure')")
flag.BoolVar(&cfg.AsyncPropagation, "async-propagation", false, "Enable async propagation")
flag.DurationVar(&cfg.AsyncPropagationDelay, "async-propagation-delay", 200*time.Millisecond, "Delay for async propagation")
flag.BoolVar(&cfg.HttpInsecure, "http-insecure", true, "Allow insecure HTTP connections")
flag.Parse()
opts.Paths = flag.Args()
status := godog.TestSuite{
Name: "cs3apiValidator",
ScenarioInitializer: scenario.InitializeScenario(cfg),
Options: &opts,
}.Run()
// Optional: Run `testing` package's logic besides godog.
if st := m.Run(); st > status {
status = st
}
os.Exit(status)
}
// Empty test to suppress the "no tests found" warning
func TestOne(t *testing.T) {
}