forked from kubernetes/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_test.go
308 lines (276 loc) · 7.47 KB
/
app_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
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
/*
Copyright 2017 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"io/ioutil"
"os"
"path/filepath"
"strings"
"testing"
)
func TestNonExistentDirIsCreated(t *testing.T) {
dir := "/tmp/nonexistent"
err := createDirIfNotExists(dir)
if err != nil {
t.Fatalf("Received error creating dir: %v", err)
}
if !pathExists(dir) {
t.Fatalf("%s should exist", dir)
}
}
func TestExistentDirNotCreated(t *testing.T) {
dir := "./testdata"
err := createDirIfNotExists(dir)
if err != nil {
t.Fatalf("Received error creating dir: %v", err)
}
}
func TestGetExistingData(t *testing.T) {
cases := []struct {
path string
expected string
expectErr bool
}{
{
path: "./testdata/custom_content.md",
expected: "FOO BAR BAZ",
expectErr: false,
},
{
path: "./testdata/no_custom_content.md",
expected: "",
expectErr: false,
},
{
path: "./testdata/foo.md",
expected: "",
expectErr: true,
},
}
for _, c := range cases {
content, err := getExistingContent(c.path, "markdown")
if err != nil && c.expectErr == false {
t.Fatalf("Received unexpected error for %s: %v", c.path, err)
}
if err == nil && c.expectErr == true {
t.Fatalf("Expected error for %s but received none", c.path)
}
if content != c.expected {
t.Fatalf("Expected %s but received %s", c.expected, content)
}
}
}
func TestWriteTemplate(t *testing.T) {
baseGeneratorDir = "generated"
templateDir = "../../generator"
customContent := `
<!-- BEGIN CUSTOM CONTENT -->
Example
custom
content!
<!-- END CUSTOM CONTENT -->
`
cases := []struct {
templatePath string
outputPath string
data map[string]string
expectErr bool
fileFormat string
expected string
}{
{
templatePath: "./testdata/non_existent_template.tmpl",
expectErr: true,
fileFormat: "markdown",
},
{
templatePath: "./testdata/example.tmpl",
outputPath: "/tmp/non_existing_path.md",
expectErr: false,
fileFormat: "markdown",
data: map[string]string{"Message": "Hello!"},
expected: "Hello!",
},
{
templatePath: "./testdata/example.tmpl",
outputPath: "./testdata/example.md",
expectErr: false,
fileFormat: "markdown",
data: map[string]string{"Message": "Hello!"},
expected: customContent,
},
}
for _, c := range cases {
err := writeTemplate(c.templatePath, c.outputPath, c.fileFormat, c.data)
if err != nil && c.expectErr == false {
t.Fatalf("Received unexpected error for %s: %v", c.templatePath, err)
}
if c.expectErr {
if err == nil {
t.Fatalf("Expected error for %s but received none", c.templatePath)
}
continue
}
content, err := ioutil.ReadFile(c.outputPath)
if err != nil {
t.Fatalf("%s should exist", c.outputPath)
}
if strings.Contains(string(content), c.expected) == false {
t.Fatalf("%s was not found in %s", c.expected, c.outputPath)
}
}
}
func TestGroupDirName(t *testing.T) {
group := Group{Name: "Foo Bar"}
if group.DirName("sig") != "sig-foo-bar" {
t.Fatal("DirName incorrect")
}
}
func TestCreateGroupReadmes(t *testing.T) {
baseGeneratorDir = "generated"
templateDir = "../../generator"
const groupType = "sig"
groups := []Group{}
for _, n := range []string{"Foo", "Bar"} {
g := Group{Name: n}
g.Dir = g.DirName(groupType)
groups = append(groups, g)
}
err := createGroupReadme(groups, groupType)
if err != nil {
t.Fatal(err)
}
for _, group := range groups {
path := filepath.Join(baseGeneratorDir, group.DirName(groupType), "README.md")
if !pathExists(path) {
t.Fatalf("%s should exist", path)
}
}
}
func TestReadmesAreSkipped(t *testing.T) {
baseGeneratorDir = "generated"
templateDir = "../../generator"
os.Setenv("SIG", "sig-foo")
groups := []Group{
{Name: "Foo"},
{Name: "Bar"},
}
err := createGroupReadme(groups, "sig")
if err != nil {
t.Fatal(err)
}
for _, group := range groups[1:] {
path := filepath.Join(baseGeneratorDir, group.DirName("sig"), "README.md")
if !pathExists(path) {
t.Fatalf("%s should exist", path)
}
}
os.Setenv("SIG", "")
}
func copyFile(src, dst string) error {
// Read all content of src to data
data, err := ioutil.ReadFile(src)
if err != nil {
return err
}
// Write data to dst
err = ioutil.WriteFile(dst, data, 0644)
if err != nil {
return err
}
return nil
}
func TestFullGeneration(t *testing.T) {
baseGeneratorDir = "generated"
templateDir = "../../generator"
err := copyFile("testdata/sigs.yaml", "generated/sigs.yaml")
if err != nil {
t.Fatalf("Error received: %v", err)
}
main()
expectedDirs := []string{"sig-foo", "sig-bar", "wg-baz"}
for _, ed := range expectedDirs {
path := filepath.Join(baseGeneratorDir, ed, "README.md")
if !pathExists(path) {
t.Fatalf("%s should exist", path)
}
}
}
func TestGitHubURL(t *testing.T) {
cases := []struct {
name string
url string
expected string
}{
{
name: "kubernetes-sigs root raw github url",
url: "https://raw.githubusercontent.com/kubernetes-sigs/boskos/main/OWNERS",
expected: "https://github.com/kubernetes-sigs/boskos/blob/main/OWNERS",
},
{
name: "kubernetes non-root raw github url",
url: "https://raw.githubusercontent.com/kubernetes/kubernetes/main/test/OWNERS",
expected: "https://github.com/kubernetes/kubernetes/blob/main/test/OWNERS",
},
{
name: "kubernetes github url should be unchanged",
url: "https://github.com/kubernetes/kubernetes/blob/main/test/OWNERS",
expected: "https://github.com/kubernetes/kubernetes/blob/main/test/OWNERS",
},
{
name: "non-github url should be unchanged",
url: "https://viewsource.com/github/kubernetes/community/generator/app.go",
expected: "https://viewsource.com/github/kubernetes/community/generator/app.go",
},
}
for _, c := range cases {
actual := githubURL(c.url)
if actual != c.expected {
t.Errorf("FAIL %s: got: '%s' but expected: '%s'", c.name, actual, c.expected)
}
}
}
func TestOrgRepoPath(t *testing.T) {
cases := []struct {
name string
url string
expected string
}{
{
name: "kubernetes-sigs root raw github url",
url: "https://raw.githubusercontent.com/kubernetes-sigs/boskos/main/OWNERS",
expected: "kubernetes-sigs/boskos/OWNERS",
},
{
name: "kubernetes non-root raw github url",
url: "https://raw.githubusercontent.com/kubernetes/kubernetes/main/test/OWNERS",
expected: "kubernetes/kubernetes/test/OWNERS",
},
{
name: "kubernetes github url",
url: "https://github.com/kubernetes/kubernetes/blob/main/test/OWNERS",
expected: "kubernetes/kubernetes/test/OWNERS",
},
{
name: "non-github url should be unchanged",
url: "https://viewsource.com/github/kubernetes/community/generator/app.go",
expected: "https://viewsource.com/github/kubernetes/community/generator/app.go",
},
}
for _, c := range cases {
actual := orgRepoPath(c.url)
if actual != c.expected {
t.Errorf("FAIL %s: got: '%s' but expected: '%s'", c.name, actual, c.expected)
}
}
}