@@ -26,18 +26,27 @@ When everything is battoned down, it is time to run forth.`,
26
26
logger .Error (fmt .Sprintf (
27
27
"Unknown args: %v" , args ))
28
28
} else {
29
- errCode := Run ()
30
- os .Exit (errCode )
29
+ exitCode := Run ()
30
+ os .Exit (int ( exitCode ) )
31
31
}
32
32
},
33
33
}
34
34
35
+ const (
36
+ TestPass = iota
37
+ TestFail
38
+ Aborted
39
+ InternalError
40
+ BadUsage
41
+ NoTests
42
+ )
43
+
35
44
func init () {
36
45
rootCmd .AddCommand (runCmd )
37
46
}
38
47
39
48
// Run executes all plugins with handling for the command line
40
- func Run () (errCode int ) {
49
+ func Run () (exitCode int ) {
41
50
42
51
// Setup for handling SIGTERM (Ctrl+C)
43
52
setupCloseHandler ()
@@ -47,7 +56,7 @@ func Run() (errCode int) {
47
56
plugins := GetPlugins ()
48
57
if len (plugins ) == 0 {
49
58
logger .Error (fmt .Sprintf ("no plugins were requested in config: %s" , viper .GetString ("binaries-path" )))
50
- return 5
59
+ return NoTests
51
60
}
52
61
53
62
// Run all plugins
@@ -56,8 +65,8 @@ func Run() (errCode int) {
56
65
for _ , pluginPkg := range plugins {
57
66
if pluginPkg .Name == servicePluginName {
58
67
if ! pluginPkg .Available {
59
- logger .Error (fmt .Sprintf ("Requested plugin that is not installed: " + pluginPkg .Name ))
60
- return 4
68
+ logger .Error (fmt .Sprintf ("requested plugin that is not installed: " + pluginPkg .Name ))
69
+ return BadUsage
61
70
}
62
71
client := newClient (pluginPkg .Command )
63
72
defer closeClient (pluginPkg , client )
@@ -67,31 +76,29 @@ func Run() (errCode int) {
67
76
rpcClient , err := client .Client ()
68
77
if err != nil {
69
78
logger .Error (fmt .Sprintf ("internal error while initializing RPC client: %s" , err ))
70
- return 3
79
+ return InternalError
71
80
}
72
81
// Request the plugin
73
82
var rawPlugin interface {}
74
83
rawPlugin , err = rpcClient .Dispense (shared .PluginName )
75
84
if err != nil {
76
85
logger .Error (fmt .Sprintf ("internal error while dispensing RPC client: %s" , err .Error ()))
77
- return 3
86
+ return InternalError
78
87
}
79
88
// Execute plugin
80
89
plugin := rawPlugin .(shared.Pluginer )
81
-
82
- // Execute
83
90
logger .Trace ("Starting Plugin: " + pluginPkg .Name )
84
91
response := plugin .Start ()
85
92
if response != nil {
86
- pluginPkg .Error = fmt .Errorf ("Error running plugin for %s: %v" , serviceName , response )
87
- errCode = 1
93
+ pluginPkg .Error = fmt .Errorf ("tests failed in plugin %s: %v" , serviceName , response )
94
+ exitCode = TestFail
88
95
} else {
89
96
pluginPkg .Successful = true
90
97
}
91
98
}
92
99
}
93
100
}
94
- return
101
+ return exitCode
95
102
}
96
103
97
104
func closeClient (pluginPkg * PluginPkg , client * hcplugin.Client ) {
@@ -115,7 +122,7 @@ func setupCloseHandler() {
115
122
go func () {
116
123
<- c
117
124
logger .Error ("Test execution was aborted by user" )
118
- os .Exit (2 )
125
+ os .Exit (int ( Aborted ) )
119
126
}()
120
127
}
121
128
0 commit comments