-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmain_test.go
195 lines (190 loc) · 4.41 KB
/
main_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
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
package main
import (
"html/template"
"slices"
"strings"
"testing"
"github.com/bitrise-io/go-utils/v2/log"
"github.com/bitrise-steplib/steps-deploy-to-bitrise-io/mocks"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_generateUrlOutputWithTemplate(t *testing.T) {
defaultTemplate := "{{range $index, $element := .}}{{if $index}}|{{end}}{{$element.File}}=>{{$element.URL}}{{end}}"
temp := template.New("test")
temp, err := temp.Parse(defaultTemplate)
if err != nil {
t.Errorf("error during parsing: %s", err)
}
tests := []struct {
name string
pages []PublicInstallPage
maxEnvLength int
want string
wantWarn bool
}{
{
name: "Empty list gives empty value",
pages: []PublicInstallPage{},
maxEnvLength: 100,
want: "",
},
{
name: "All content fits the variable",
pages: []PublicInstallPage{
{
File: "Foo",
URL: "Bar",
},
},
maxEnvLength: 100,
want: "Foo=>Bar",
},
{
name: "One item doesn't fit",
pages: []PublicInstallPage{
{
File: "Foo",
URL: "Bar",
},
{
File: "Baz",
URL: "Qux",
},
},
maxEnvLength: 10,
want: "Foo=>Bar",
wantWarn: true,
},
{
name: "Multiple items doesn't fit",
pages: []PublicInstallPage{
{
File: "Foo",
URL: "Bar",
},
{
File: "Baz",
URL: "Qux",
},
{
File: "Apple",
URL: "Pear",
},
{
File: "Peach",
URL: "Grapes",
},
},
maxEnvLength: 20,
want: "Foo=>Bar|Baz=>Qux",
wantWarn: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, gotWarn, err := applyTemplateWithMaxSize(temp, tt.pages, tt.maxEnvLength)
if err != nil {
t.Errorf("applyTemplateWithMaxSize() error: %s", err)
}
if gotWarn != tt.wantWarn {
t.Errorf("applyTemplateWithMaxSize() warning = %v, want %v", gotWarn, tt.wantWarn)
}
if got != tt.want {
t.Errorf("applyTemplateWithMaxSize() = %v, want %v", got, tt.want)
}
})
}
}
func TestUploadConcurrency(t *testing.T) {
tests := []struct {
name string
config Config
want int
}{
{
name: "Zero value",
config: Config{
UploadConcurrency: "0",
},
want: 1,
},
{
name: "Negative value",
config: Config{
UploadConcurrency: "-1",
},
want: 1,
},
{
name: "In range value",
config: Config{
UploadConcurrency: "3",
},
want: 3,
},
{
name: "Too large value",
config: Config{
UploadConcurrency: "100",
},
want: 20,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
assert.Equal(t, tt.want, determineConcurrency(tt.config))
})
}
}
func Test_validateUserGroups(t *testing.T) {
tests := []struct {
name string
userGroupsStr string
logger func() log.Logger
wantErr error
}{
{
name: "Empty user groups",
userGroupsStr: "",
logger: func() log.Logger { return mocks.NewLogger(t) },
},
{
name: "Valid user groups",
userGroupsStr: strings.Join(validUserGroups, ","),
logger: func() log.Logger { return mocks.NewLogger(t) },
},
{
name: "Valid user groups with capital letter",
userGroupsStr: "Testers",
logger: func() log.Logger {
logger := mocks.NewLogger(t)
logger.On("Warnf", "User group %s is accepted by the backend, but it is not the recommended value. Please use one of the following values: %s", "Testers", strings.Join(validUserGroups, ", "))
return logger
},
},
{
name: "Accepted user groups",
userGroupsStr: strings.Join(acceptedUserGroups, ","),
logger: func() log.Logger {
logger := mocks.NewLogger(t)
// Expect a warning for each accepted but not valid user group
for _, userGroup := range acceptedUserGroups {
if !slices.Contains(validUserGroups, userGroup) {
logger.On("Warnf", "User group %s is accepted by the backend, but it is not the recommended value. Please use one of the following values: %s", userGroup, strings.Join(validUserGroups, ", "))
}
}
return logger
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if tt.wantErr == nil {
require.NoError(t, validateUserGroups(tt.userGroupsStr, tt.logger()))
} else {
require.EqualError(t, validateUserGroups(tt.userGroupsStr, tt.logger()), tt.wantErr.Error())
}
})
}
}