forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper_test.go
99 lines (90 loc) · 2.4 KB
/
helper_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
/*
Copyright 2019 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 (
"testing"
)
func TestCommitToRef(t *testing.T) {
cases := []struct {
name string
commit string
expected string
}{
{
name: "basically works",
},
{
name: "just tag works",
commit: "v0.0.30",
expected: "v0.0.30",
},
{
name: "just commit works",
commit: "deadbeef",
expected: "deadbeef",
},
{
name: "commits past tag works",
commit: "v0.0.30-14-gdeadbeef",
expected: "deadbeef",
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
if actual, expected := commitToRef(tc.commit), tc.expected; actual != tc.expected {
t.Errorf("commitToRef(%q) got %q want %q", tc.commit, actual, expected)
}
})
}
}
func TestIsUnderPath(t *testing.T) {
cases := []struct {
description string
paths []string
file string
expected bool
}{
{
description: "file is under the direct path",
paths: []string{"config/prow/"},
file: "config/prow/config.yaml",
expected: true,
},
{
description: "file is under the indirect path",
paths: []string{"config/prow-staging/"},
file: "config/prow-staging/jobs/config.yaml",
expected: true,
},
{
description: "file is under one path but not others",
paths: []string{"config/prow/", "config/prow-staging/"},
file: "config/prow-staging/jobs/whatever-repo/whatever-file",
expected: true,
},
{
description: "file is not under the path but having the same prefix",
paths: []string{"config/prow/"},
file: "config/prow-staging/config.yaml",
expected: false,
},
}
for _, tc := range cases {
t.Run(tc.description, func(t *testing.T) {
actual := isUnderPath(tc.file, tc.paths)
if actual != tc.expected {
t.Errorf("expected to be %t but actual is %t", tc.expected, actual)
}
})
}
}