-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplating_test.go
86 lines (70 loc) · 1.48 KB
/
templating_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
package main
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestBuildRenderContext(t *testing.T) {
var deployerSpec = DeployerSpec{
ProjectDir: ".",
Cluster: DeployerSpecCluster{
Host: "localhost",
Token: "secret",
},
TagVersion: "test",
Env: "master",
Namespace: "default",
Templates: []string{"./k8s/app.yml"},
Containers: []DeployerSpecContainer{
{
Image: "test",
Id: "test",
},
},
}
yaml := `
kind: Service
apiVersion: v1
metadata:
name: test-service
spec:
ports:
-
name: http
protocol: TCP
port: 80
selector:
app: test-service
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: test-deployment
labels:
app: test-deployment
spec:
template:
metadata:
labels:
app: test-deployment
spec:
containers:
- name: debian
image: debian:latest
`
objects, err := UnmarshalYaml(yaml)
if err != nil {
t.Error(err.Error())
}
var renderContext RenderContext
err = renderContext.Build(deployerSpec, objects)
if err != nil {
t.Error(err.Error())
}
var expected = "master-test-service"
var actual = renderContext.Objects["Service"]["test-service"].Name
assert := assert.New(t)
assert.Equal(expected, actual, "The two words should be the same.")
expected = "master-test-deployment"
actual = renderContext.Objects["Deployment"]["test-deployment"].Name
assert.Equal(expected, actual, "The two words should be the same.")
}