-
Notifications
You must be signed in to change notification settings - Fork 39
/
main_test.go
138 lines (134 loc) · 2.56 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
package main
import (
"html/template"
"testing"
"github.com/stretchr/testify/assert"
)
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))
})
}
}