This repository has been archived by the owner on Dec 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main_test.go
183 lines (156 loc) · 3.84 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
package main
import (
"io/ioutil"
"log"
"os"
"path/filepath"
"regexp"
"testing"
yaml "gopkg.in/yaml.v2"
)
const (
testYamlFilename = "test2"
testYaml = testYamlFilename + ".yaml"
)
var data = `
a: abc
b: def
c: ghi
under_scores: ensureThatKeysMayContainAnUnderscore
services:
db:
image: someimage
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
thiscontainsadigit1: helloworld1
alloallo: hallohallo # yamllint disable-line rule:line-length
foo:
bar: boo
firefox_checksum: sha512:49d776
hello:
world: hallo wereld
world: [hola, hallo]
firefox_version4: 64
firefox_version3: 64.1
firefox_version2: "64.0"
firefox_version: 64.0.0
`
// See https://stackoverflow.com/a/34102842/2777965
func TestMain(m *testing.M) {
setup()
code := m.Run()
shutdown()
os.Exit(code)
}
func setup() {
createTestYaml()
}
func shutdown() {
removeTestYaml()
}
func createTestYaml() {
m := make(map[interface{}]interface{})
err := yaml.Unmarshal([]byte(data), &m)
if err != nil {
log.Fatalf("error: %v", err)
}
d, err := yaml.Marshal(&m)
if err != nil {
log.Fatalf("error: %v", err)
}
err = ioutil.WriteFile(testYaml, d, 0644)
if err != nil {
log.Fatal(err)
}
}
func removeTestYaml() {
os.Remove(testYaml)
}
func TestYamlValue(t *testing.T) {
createTestYaml()
keyValue := map[string]string{
".a": "abc",
".b": "def",
".c": "ghi",
".under_scores": "ensureThatKeysMayContainAnUnderscore",
".thiscontainsadigit1": "helloworld1",
".alloallo": "hallohallo",
".firefox_checksum": "sha512:49d776",
".foo.bar": "boo",
".services.db.image": "someimage",
".services.db.environment.MYSQL_ROOT_PASSWORD": "somewordpress",
".world": "[hola hallo]",
".hello.world": "hallo wereld",
".firefox_version4": "64",
".firefox_version3": "64.1",
".firefox_version2": "64.0",
".firefox_version": "64.0.0",
}
for key, value := range keyValue {
i := input{key: key, file: testYaml}
expected := value
actual, _ := i.value()
if expected != actual {
t.Errorf("Value was incorrect 'Check whether the key '%s' resides in the test yaml file', got value: %s, want: %s.", key, actual, expected)
}
}
}
func TestDir(t *testing.T) {
keyValue := map[string]string{
"path/to/some.yaml": filepath.Join("path", "to"),
"hello.yaml": ".",
}
for file, value := range keyValue {
i := input{key: "", file: file}
expected := value
actual := i.dir()
if expected != actual {
t.Errorf("got value: %s, want: %s.", actual, expected)
}
}
}
func TestFile(t *testing.T) {
keyValue := map[string]string{
"path/to/some.yaml": "some",
"hello.yaml": "hello",
}
for file, value := range keyValue {
i := input{key: "", file: file}
expected := value
actual := i.filename()
if expected != actual {
t.Errorf("got value: %s, want: %s.", actual, expected)
}
}
}
func TestVerifyKey(t *testing.T) {
unhappy := input{"abc", testYamlFilename}
err := unhappy.verifyKey()
want := "Key should start with a dot, i.e.: .abc, but was: abc"
if err.Error() != want {
t.Errorf("Error expected. Got '%v'. Want '%v'", err, want)
}
happy := input{".abc", testYamlFilename}
err = happy.verifyKey()
if err != nil {
t.Errorf("No error expected. Got '%v'", err)
}
}
func TestValue(t *testing.T) {
i := input{".abc", testYaml}
_, err := i.value()
want := "File: test2.yaml does not contain key: .abc"
if err.Error() != want {
t.Errorf("Error expected. Got '%v'. Want '%v'", err, want)
}
}
func TestReadInConfig(t *testing.T) {
i := input{".abc", "fileDoesNotExist"}
_, err := i.value()
want := "fatal error config file: Config File \"fileDoesNotExist\" Not Found in"
matched, _ := regexp.MatchString(want, err.Error())
if !matched {
t.Errorf("Error expected. Got '%v'. Want '%v'", err, want)
}
}