-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathcloud.go
343 lines (299 loc) · 11.3 KB
/
cloud.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
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2016 Load Impact
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package cmd
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"os"
"path/filepath"
"strconv"
"sync"
"time"
"github.com/fatih/color"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"go.k6.io/k6/cloudapi"
"go.k6.io/k6/errext"
"go.k6.io/k6/errext/exitcodes"
"go.k6.io/k6/lib"
"go.k6.io/k6/lib/consts"
"go.k6.io/k6/ui/pb"
)
//nolint:funlen,gocognit,gocyclo,cyclop
func getCloudCmd(globalState *globalState) *cobra.Command {
showCloudLogs := true
exitOnRunning := false
cloudCmd := &cobra.Command{
Use: "cloud",
Short: "Run a test on the cloud",
Long: `Run a test on the cloud.
This will execute the test on the k6 cloud service. Use "k6 login cloud" to authenticate.`,
Example: `
k6 cloud script.js`[1:],
Args: exactArgsWithMsg(1, "arg should either be \"-\", if reading script from stdin, or a path to a script file"),
PreRunE: func(cmd *cobra.Command, args []string) error {
// TODO: refactor (https://github.com/loadimpact/k6/issues/883)
//
// We deliberately parse the env variables, to validate for wrong
// values, even if we don't subsequently use them (if the respective
// CLI flag was specified, since it has a higher priority).
if showCloudLogsEnv, ok := globalState.envVars["K6_SHOW_CLOUD_LOGS"]; ok {
showCloudLogsValue, err := strconv.ParseBool(showCloudLogsEnv)
if err != nil {
return fmt.Errorf("parsing K6_SHOW_CLOUD_LOGS returned an error: %w", err)
}
if !cmd.Flags().Changed("show-logs") {
showCloudLogs = showCloudLogsValue
}
}
if exitOnRunningEnv, ok := globalState.envVars["K6_EXIT_ON_RUNNING"]; ok {
exitOnRunningValue, err := strconv.ParseBool(exitOnRunningEnv)
if err != nil {
return fmt.Errorf("parsing K6_EXIT_ON_RUNNING returned an error: %w", err)
}
if !cmd.Flags().Changed("exit-on-running") {
exitOnRunning = exitOnRunningValue
}
}
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
printBanner(globalState)
progressBar := pb.New(
pb.WithConstLeft("Init"),
pb.WithConstProgress(0, "Loading test script..."),
)
printBar(globalState, progressBar)
test, err := loadTest(globalState, cmd, args, getPartialConfig)
if err != nil {
return err
}
// It's important to NOT set the derived options back to the runner
// here, only the consolidated ones. Otherwise, if the script used
// an execution shortcut option (e.g. `iterations` or `duration`),
// we will have multiple conflicting execution options since the
// derivation will set `scenarios` as well.
err = test.initRunner.SetOptions(test.consolidatedConfig.Options)
if err != nil {
return err
}
// TODO: validate for usage of execution segment
// TODO: validate for externally controlled executor (i.e. executors that aren't distributable)
// TODO: move those validations to a separate function and reuse validateConfig()?
modifyAndPrintBar(globalState, progressBar, pb.WithConstProgress(0, "Building the archive..."))
arc := test.initRunner.MakeArchive()
// TODO: Fix this
// We reuse cloud.Config for parsing options.ext.loadimpact, but this probably shouldn't be
// done, as the idea of options.ext is that they are extensible without touching k6. But in
// order for this to happen, we shouldn't actually marshall cloud.Config on top of it, because
// it will be missing some fields that aren't actually mentioned in the struct.
// So in order for use to copy the fields that we need for loadimpact's api we unmarshal in
// map[string]interface{} and copy what we need if it isn't set already
var tmpCloudConfig map[string]interface{}
if val, ok := arc.Options.External["loadimpact"]; ok {
dec := json.NewDecoder(bytes.NewReader(val))
dec.UseNumber() // otherwise float64 are used
if err = dec.Decode(&tmpCloudConfig); err != nil {
return err
}
}
// Cloud config
cloudConfig, err := cloudapi.GetConsolidatedConfig(
test.derivedConfig.Collectors["cloud"], globalState.envVars, "", arc.Options.External)
if err != nil {
return err
}
if !cloudConfig.Token.Valid {
return errors.New("Not logged in, please use `k6 login cloud`.") //nolint:golint,revive,stylecheck
}
if tmpCloudConfig == nil {
tmpCloudConfig = make(map[string]interface{}, 3)
}
if cloudConfig.Token.Valid {
tmpCloudConfig["token"] = cloudConfig.Token
}
if cloudConfig.Name.Valid {
tmpCloudConfig["name"] = cloudConfig.Name
}
if cloudConfig.ProjectID.Valid {
tmpCloudConfig["projectID"] = cloudConfig.ProjectID
}
if arc.Options.External == nil {
arc.Options.External = make(map[string]json.RawMessage)
}
arc.Options.External["loadimpact"], err = json.Marshal(tmpCloudConfig)
if err != nil {
return err
}
name := cloudConfig.Name.String
if !cloudConfig.Name.Valid || cloudConfig.Name.String == "" {
name = filepath.Base(test.testPath)
}
globalCtx, globalCancel := context.WithCancel(globalState.ctx)
defer globalCancel()
logger := globalState.logger
// Start cloud test run
modifyAndPrintBar(globalState, progressBar, pb.WithConstProgress(0, "Validating script options"))
client := cloudapi.NewClient(
logger, cloudConfig.Token.String, cloudConfig.Host.String, consts.Version, cloudConfig.Timeout.TimeDuration())
if err = client.ValidateOptions(arc.Options); err != nil {
return err
}
modifyAndPrintBar(globalState, progressBar, pb.WithConstProgress(0, "Uploading archive"))
refID, err := client.StartCloudTestRun(name, cloudConfig.ProjectID.Int64, arc)
if err != nil {
return err
}
// Trap Interrupts, SIGINTs and SIGTERMs.
gracefulStop := func(sig os.Signal) {
logger.WithField("sig", sig).Print("Stopping cloud test run in response to signal...")
// Do this in a separate goroutine so that if it blocks, the
// second signal can still abort the process execution.
go func() {
stopErr := client.StopCloudTestRun(refID)
if stopErr != nil {
logger.WithError(stopErr).Error("Stop cloud test error")
} else {
logger.Info("Successfully sent signal to stop the cloud test, now waiting for it to actually stop...")
}
globalCancel()
}()
}
hardStop := func(sig os.Signal) {
logger.WithField("sig", sig).Error("Aborting k6 in response to signal, we won't wait for the test to end.")
}
stopSignalHandling := handleTestAbortSignals(globalState, gracefulStop, hardStop)
defer stopSignalHandling()
et, err := lib.NewExecutionTuple(test.derivedConfig.ExecutionSegment, test.derivedConfig.ExecutionSegmentSequence)
if err != nil {
return err
}
testURL := cloudapi.URLForResults(refID, cloudConfig)
executionPlan := test.derivedConfig.Scenarios.GetFullExecutionRequirements(et)
printExecutionDescription(
globalState, "cloud", test.testPath, testURL, test.derivedConfig, et, executionPlan, nil,
)
modifyAndPrintBar(
globalState, progressBar,
pb.WithConstLeft("Run "), pb.WithConstProgress(0, "Initializing the cloud test"),
)
progressCtx, progressCancel := context.WithCancel(globalCtx)
progressBarWG := &sync.WaitGroup{}
progressBarWG.Add(1)
defer progressBarWG.Wait()
defer progressCancel()
go func() {
showProgress(progressCtx, globalState, []*pb.ProgressBar{progressBar}, logger)
progressBarWG.Done()
}()
var (
startTime time.Time
maxDuration time.Duration
)
maxDuration, _ = lib.GetEndOffset(executionPlan)
testProgressLock := &sync.Mutex{}
var testProgress *cloudapi.TestProgressResponse
progressBar.Modify(
pb.WithProgress(func() (float64, []string) {
testProgressLock.Lock()
defer testProgressLock.Unlock()
if testProgress == nil {
return 0, []string{"Waiting..."}
}
statusText := testProgress.RunStatusText
if testProgress.RunStatus == lib.RunStatusFinished {
testProgress.Progress = 1
} else if testProgress.RunStatus == lib.RunStatusRunning {
if startTime.IsZero() {
startTime = time.Now()
}
spent := time.Since(startTime)
if spent > maxDuration {
statusText = maxDuration.String()
} else {
statusText = fmt.Sprintf("%s/%s", pb.GetFixedLengthDuration(spent, maxDuration), maxDuration)
}
}
return testProgress.Progress, []string{statusText}
}),
)
ticker := time.NewTicker(time.Millisecond * 2000)
if showCloudLogs {
go func() {
logger.Debug("Connecting to cloud logs server...")
if err := cloudConfig.StreamLogsToLogger(globalCtx, logger, refID, 0); err != nil {
logger.WithError(err).Error("error while tailing cloud logs")
}
}()
}
for range ticker.C {
newTestProgress, progressErr := client.GetTestProgress(refID)
if progressErr != nil {
logger.WithError(progressErr).Error("Test progress error")
continue
}
testProgressLock.Lock()
testProgress = newTestProgress
testProgressLock.Unlock()
if (newTestProgress.RunStatus > lib.RunStatusRunning) ||
(exitOnRunning && newTestProgress.RunStatus == lib.RunStatusRunning) {
globalCancel()
break
}
}
if testProgress == nil {
//nolint:stylecheck,golint
return errext.WithExitCodeIfNone(errors.New("Test progress error"), exitcodes.CloudFailedToGetProgress)
}
if !globalState.flags.quiet {
valueColor := getColor(globalState.flags.noColor || !globalState.stdOut.isTTY, color.FgCyan)
printToStdout(globalState, fmt.Sprintf(
" test status: %s\n", valueColor.Sprint(testProgress.RunStatusText),
))
} else {
logger.WithField("run_status", testProgress.RunStatusText).Debug("Test finished")
}
if testProgress.ResultStatus == cloudapi.ResultStatusFailed {
// TODO: use different exit codes for failed thresholds vs failed test (e.g. aborted by system/limit)
//nolint:stylecheck,golint
return errext.WithExitCodeIfNone(errors.New("The test has failed"), exitcodes.CloudTestRunFailed)
}
return nil
},
}
cloudCmd.Flags().SortFlags = false
cloudCmd.Flags().AddFlagSet(cloudCmdFlagSet(&showCloudLogs, &exitOnRunning))
return cloudCmd
}
func cloudCmdFlagSet(showCloudLogs, exitOnRunning *bool) *pflag.FlagSet {
flags := pflag.NewFlagSet("", pflag.ContinueOnError)
flags.SortFlags = false
flags.AddFlagSet(optionFlagSet())
flags.AddFlagSet(runtimeOptionFlagSet(false))
// TODO: Figure out a better way to handle the CLI flags
flags.BoolVar(exitOnRunning, "exit-on-running", *exitOnRunning,
"exits when test reaches the running status")
flags.BoolVar(showCloudLogs, "show-logs", *showCloudLogs,
"enable showing of logs when a test is executed in the cloud")
return flags
}