forked from ethereum/hive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhive.go
123 lines (111 loc) · 4.34 KB
/
hive.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
package main
import (
"encoding/json"
"flag"
"fmt"
"os"
"strings"
"github.com/fsouza/go-dockerclient"
"gopkg.in/inconshreveable/log15.v2"
)
var (
dockerEndpoint = flag.String("docker-endpoint", "unix:///var/run/docker.sock", "Unix socket to the local Docker daemon")
noShellContainer = flag.Bool("docker-noshell", false, "Disable outer docker shell, running directly on the host")
clientPattern = flag.String("client", ":master", "Regexp selecting the client(s) to run against")
overrideFiles = flag.String("override", "", "Comma separated regexp:files to override in client containers")
smokeFlag = flag.Bool("smoke", false, "Whether to only smoke test or run full test suite")
validatorPattern = flag.String("test", ".", "Regexp selecting the validation tests to run")
simulatorPattern = flag.String("sim", "", "Regexp selecting the simulation tests to run")
benchmarkPattern = flag.String("bench", "", "Regexp selecting the benchmarks to run")
loglevelFlag = flag.Int("loglevel", 3, "Log level to use for displaying system events")
)
func main() {
// Parse the flags and configure the logger
flag.Parse()
log15.Root().SetHandler(log15.LvlFilterHandler(log15.Lvl(*loglevelFlag), log15.StreamHandler(os.Stderr, log15.TerminalFormat())))
// Connect to the local docker daemon and make sure it works
daemon, err := docker.NewClient(*dockerEndpoint)
if err != nil {
log15.Crit("failed to connect to docker deamon", "error", err)
return
}
env, err := daemon.Version()
if err != nil {
log15.Crit("failed to retrieve docker version", "error", err)
return
}
log15.Info("docker daemon online", "version", env.Get("Version"))
// Gather any client files needing overriding
overrides := []string{}
if *overrideFiles != "" {
overrides = strings.Split(*overrideFiles, ",")
}
// Depending on the flags, either run hive in place or in an outer container shell
var fail error
if *noShellContainer {
fail = mainInHost(daemon, overrides)
} else {
fail = mainInShell(daemon, overrides)
}
if fail != nil {
os.Exit(-1)
}
}
// mainInHost runs the actual hive validation, simulation and benchmarking on the
// host machine itself. This is usually the path executed within an outer shell
// container, but can be also requested directly.
func mainInHost(daemon *docker.Client, overrides []string) error {
results := struct {
Validations map[string]map[string]*validationResult `json:"validations,omitempty"`
Simulations map[string]map[string]*simulationResult `json:"simulations,omitempty"`
Benchmarks map[string]map[string]*benchmarkResult `json:"benchmarks,omitempty"`
}{}
var err error
// Smoke tests are exclusive with all other flags
if *smokeFlag {
if results.Validations, err = validateClients(daemon, *clientPattern, "smoke/", overrides); err != nil {
log15.Crit("failed to smoke-validate client images", "error", err)
return err
}
if results.Simulations, err = simulateClients(daemon, *clientPattern, "smoke/", overrides); err != nil {
log15.Crit("failed to smoke-simulate client images", "error", err)
return err
}
if results.Benchmarks, err = benchmarkClients(daemon, *clientPattern, "smoke/", overrides); err != nil {
log15.Crit("failed to smoke-benchmark client images", "error", err)
return err
}
} else {
// Otherwise run all requested validation and simulation tests
if *validatorPattern != "" {
if results.Validations, err = validateClients(daemon, *clientPattern, *validatorPattern, overrides); err != nil {
log15.Crit("failed to validate clients", "error", err)
return err
}
}
if *simulatorPattern != "" {
if err = makeGenesisDAG(daemon); err != nil {
log15.Crit("failed generate DAG for simulations", "error", err)
return err
}
if results.Simulations, err = simulateClients(daemon, *clientPattern, *simulatorPattern, overrides); err != nil {
log15.Crit("failed to simulate clients", "error", err)
return err
}
}
if *benchmarkPattern != "" {
if results.Benchmarks, err = benchmarkClients(daemon, *clientPattern, *benchmarkPattern, overrides); err != nil {
log15.Crit("failed to benchmark clients", "error", err)
return err
}
}
}
// Flatten the results and print them in JSON form
out, err := json.MarshalIndent(results, "", " ")
if err != nil {
log15.Crit("failed to report results", "error", err)
return err
}
fmt.Println(string(out))
return nil
}