forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcloud.go
130 lines (113 loc) · 3.31 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
/*
*
* 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 (
"fmt"
"os"
"path/filepath"
"time"
"github.com/kelseyhightower/envconfig"
"github.com/loadimpact/k6/stats/cloud"
"github.com/loadimpact/k6/ui"
"github.com/pkg/errors"
"github.com/spf13/afero"
"github.com/spf13/cobra"
)
var 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 Load Impact cloud service. Use "k6 login cloud" to authenticate.`,
Example: `
k6 cloud script.js`[1:],
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) error {
_, _ = BannerColor.Fprint(stdout, Banner+"\n\n")
fmt.Fprint(stdout, " Uploading script to the cloud..")
// Runner
pwd, err := os.Getwd()
if err != nil {
return err
}
filename := args[0]
src, err := readSource(filename, pwd, afero.NewOsFs(), os.Stdin)
if err != nil {
return err
}
r, err := newRunner(src, runType, afero.NewOsFs())
if err != nil {
return err
}
// Options
fs := afero.NewOsFs()
fileConf, _, err := readDiskConfig(fs)
if err != nil {
return err
}
options, err := getOptions(cmd.Flags())
if err != nil {
return err
}
cliConf := Config{Options: options}
envConf, err := readEnvConfig()
if err != nil {
return err
}
conf := cliConf.Apply(fileConf).Apply(Config{Options: r.GetOptions()}).Apply(envConf).Apply(cliConf)
r.SetOptions(conf.Options)
// Cloud config
cloudConfig := conf.Collectors.Cloud
if err := envconfig.Process("k6", &cloudConfig); err != nil {
return err
}
if cloudConfig.Token == "" {
return errors.New("Not logged in, please use `k6 login cloud`.")
}
// Create a ticker to add a dot to the console every 0.5s
ticker := time.NewTicker(time.Millisecond * 500)
go func() {
for range ticker.C {
fmt.Fprint(stdout, ".")
}
}()
// Start cloud test run
client := cloud.NewClient(cloudConfig.Token, cloudConfig.Host, Version)
arc := r.MakeArchive()
if err := client.ValidateOptions(arc.Options); err != nil {
return err
}
name := filepath.Base(filename)
refID, err := client.StartCloudTestRun(name, arc)
if err != nil {
return err
}
ticker.Stop()
testURL := cloud.URLForResults(refID, cloudConfig)
fmt.Fprint(stdout, "\n\n")
fmt.Fprintf(stdout, " execution: %s\n", ui.ValueColor.Sprint("cloud"))
fmt.Fprintf(stdout, " script: %s\n", ui.ValueColor.Sprint(filename))
fmt.Fprintf(stdout, " output: %s\n", ui.ValueColor.Sprint(testURL))
return nil
},
}
func init() {
RootCmd.AddCommand(cloudCmd)
cloudCmd.Flags().AddFlagSet(optionFlagSet())
}