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
/
Copy pathmain_test.go
137 lines (117 loc) · 2.77 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
package main
import (
"io/ioutil"
"log"
"os"
"path/filepath"
"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
`
type T struct {
A string
B struct {
RenamedC int `yaml:"c"`
D []int `yaml:",flow"`
}
}
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)
}
ioutil.WriteFile(testYaml, d, 0644)
}
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)
}
}
removeTestYaml()
}
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)
}
}
}