forked from grafana/k6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_test.go
127 lines (108 loc) · 3.47 KB
/
run_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
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
/*
*
* k6 - a next-generation load testing tool
* Copyright (C) 2020 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"
"errors"
"io"
"io/ioutil"
"os"
"path/filepath"
"runtime"
"testing"
"github.com/spf13/afero"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.k6.io/k6/lib/fsext"
)
type mockWriter struct {
err error
errAfter int
}
func (fw mockWriter) Write(p []byte) (n int, err error) {
if fw.err != nil {
return fw.errAfter, fw.err
}
return len(p), nil
}
var _ io.Writer = mockWriter{}
func getFiles(t *testing.T, fs afero.Fs) map[string]*bytes.Buffer {
result := map[string]*bytes.Buffer{}
walkFn := func(filePath string, info os.FileInfo, err error) error {
if filePath == "/" || filePath == "\\" {
return nil
}
require.NoError(t, err)
contents, err := afero.ReadFile(fs, filePath)
require.NoError(t, err)
result[filePath] = bytes.NewBuffer(contents)
return nil
}
err := fsext.Walk(fs, afero.FilePathSeparator, filepath.WalkFunc(walkFn))
require.NoError(t, err)
return result
}
func assertEqual(t *testing.T, exp string, actual io.Reader) {
act, err := ioutil.ReadAll(actual)
require.NoError(t, err)
assert.Equal(t, []byte(exp), act)
}
func initVars() (
content map[string]io.Reader, stdout *bytes.Buffer, stderr *bytes.Buffer, fs afero.Fs,
) {
return map[string]io.Reader{}, bytes.NewBuffer([]byte{}), bytes.NewBuffer([]byte{}), afero.NewMemMapFs()
}
func TestHandleSummaryResultSimple(t *testing.T) {
t.Parallel()
content, stdout, stderr, fs := initVars()
// Test noop
assert.NoError(t, handleSummaryResult(fs, stdout, stderr, content))
require.Empty(t, getFiles(t, fs))
require.Empty(t, stdout.Bytes())
require.Empty(t, stderr.Bytes())
// Test stdout only
content["stdout"] = bytes.NewBufferString("some stdout summary")
assert.NoError(t, handleSummaryResult(fs, stdout, stderr, content))
require.Empty(t, getFiles(t, fs))
assertEqual(t, "some stdout summary", stdout)
require.Empty(t, stderr.Bytes())
}
func TestHandleSummaryResultError(t *testing.T) {
t.Parallel()
content, _, stderr, fs := initVars()
expErr := errors.New("test error")
stdout := mockWriter{err: expErr, errAfter: 10}
filePath1 := "/path/file1"
filePath2 := "/path/file2"
if runtime.GOOS == "windows" {
filePath1 = "\\path\\file1"
filePath2 = "\\path\\file2"
}
content["stdout"] = bytes.NewBufferString("some stdout summary")
content["stderr"] = bytes.NewBufferString("some stderr summary")
content[filePath1] = bytes.NewBufferString("file summary 1")
content[filePath2] = bytes.NewBufferString("file summary 2")
err := handleSummaryResult(fs, stdout, stderr, content)
assert.Error(t, err)
assert.Contains(t, err.Error(), expErr.Error())
files := getFiles(t, fs)
assertEqual(t, "file summary 1", files[filePath1])
assertEqual(t, "file summary 2", files[filePath2])
}