-
Notifications
You must be signed in to change notification settings - Fork 0
/
yt_test.go
93 lines (85 loc) · 2.02 KB
/
yt_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
package yt
import (
"bytes"
"io/ioutil"
"os"
"testing"
"text/template"
"github.com/stretchr/testify/assert"
)
func TestGetParents(t *testing.T) {
_ = os.Chdir("testdata")
f, err := ioutil.ReadFile("parent.yaml")
assert.NoError(t, err)
parents := getParents(f)
expected := []string{
"'list.yaml'.items.1",
}
assert.Equal(t, expected, parents)
}
func TestCompile(t *testing.T) {
_ = os.Chdir("testdata")
f, err := ioutil.ReadFile("service.yaml")
assert.NoError(t, err)
expected := map[interface{}]interface{}{
"apiVersion": "v1",
"kind": "Service",
"metadata": map[interface{}]interface{}{
"name": "my-service",
},
"spec": map[interface{}]interface{}{
"selector": map[interface{}]interface{}{
"app": "nginx",
},
"ports": []interface{}{
map[interface{}]interface{}{
"protocol": "TCP",
"port": 80,
},
},
},
}
m, err := Compile(f, map[string]bool{})
assert.NoError(t, err)
assert.Equal(t, expected, m)
}
func TestCompile_WithParent(t *testing.T) {
_ = os.Chdir("testdata")
f, err := ioutil.ReadFile("parent.yaml")
expected := map[interface{}]interface{}{
"apiVersion": "v1",
"kind": "Service",
"metadata": map[interface{}]interface{}{
"name": "my-secure-service",
},
"spec": map[interface{}]interface{}{
"selector": map[interface{}]interface{}{
"app": "nginx",
},
"ports": []interface{}{
map[interface{}]interface{}{
"protocol": "TCP",
"port": 8080,
},
},
},
}
m, err := Compile(f, map[string]bool{})
assert.NoError(t, err)
assert.Equal(t, expected, m)
}
func TestWriteTemplate(t *testing.T) {
_ = os.Chdir("testdata")
rawData, err := ioutil.ReadFile("go.mod.yaml")
assert.NoError(t, err)
data, err := Compile(rawData, map[string]bool{})
assert.NoError(t, err)
rawTpl, err := ioutil.ReadFile("go.mod.tpl")
assert.NoError(t, err)
tpl := template.Must(template.New("").Parse(string(rawTpl)))
var b bytes.Buffer
WriteTemplate(data, tpl, &b)
assert.Equal(t, `module github.com/reederc42/yt
go 1.12
`, b.String())
}