@@ -10,8 +10,10 @@ import (
10
10
"sigs.k8s.io/yaml"
11
11
)
12
12
13
+ const htmlContent = "<html><body><h1>Hello, World!</h1></body></html>"
14
+
13
15
func TestGenerateWithBoundVolume (t * testing.T ) {
14
- compose_file := `
16
+ composeFile := `
15
17
services:
16
18
web:
17
19
image: nginx:1.29
@@ -20,14 +22,14 @@ services:
20
22
volumes:
21
23
data:
22
24
`
23
- tmpDir := setup (compose_file )
25
+ tmpDir := setup (composeFile )
24
26
defer teardown (tmpDir )
25
27
26
28
currentDir , _ := os .Getwd ()
27
29
os .Chdir (tmpDir )
28
30
defer os .Chdir (currentDir )
29
31
30
- output := _compile_test (t , "-s" , "templates/web/deployment.yaml" )
32
+ output := internalCompileTest (t , "-s" , "templates/web/deployment.yaml" )
31
33
32
34
dt := v1.Deployment {}
33
35
if err := yaml .Unmarshal ([]byte (output ), & dt ); err != nil {
@@ -40,7 +42,7 @@ volumes:
40
42
}
41
43
42
44
func TestWithStaticFiles (t * testing.T ) {
43
- compose_file := `
45
+ composeFile := `
44
46
services:
45
47
web:
46
48
image: nginx:1.29
@@ -50,8 +52,8 @@ services:
50
52
%s/configmap-files: |-
51
53
- ./static
52
54
`
53
- compose_file = fmt .Sprintf (compose_file , katenaryLabelPrefix )
54
- tmpDir := setup (compose_file )
55
+ composeFile = fmt .Sprintf (composeFile , katenaryLabelPrefix )
56
+ tmpDir := setup (composeFile )
55
57
defer teardown (tmpDir )
56
58
57
59
// create a static directory with an index.html file
@@ -61,14 +63,14 @@ services:
61
63
if err != nil {
62
64
t .Errorf ("Failed to create index.html: %s" , err )
63
65
}
64
- indexFile .WriteString ("<html><body><h1>Hello, World!</h1></body></html>" )
66
+ indexFile .WriteString (htmlContent )
65
67
indexFile .Close ()
66
68
67
69
currentDir , _ := os .Getwd ()
68
70
os .Chdir (tmpDir )
69
71
defer os .Chdir (currentDir )
70
72
71
- output := _compile_test (t , "-s" , "templates/web/deployment.yaml" )
73
+ output := internalCompileTest (t , "-s" , "templates/web/deployment.yaml" )
72
74
dt := v1.Deployment {}
73
75
if err := yaml .Unmarshal ([]byte (output ), & dt ); err != nil {
74
76
t .Errorf (unmarshalError , err )
@@ -94,13 +96,13 @@ services:
94
96
if len (data ) != 1 {
95
97
t .Errorf ("Expected 1 data, got %d" , len (data ))
96
98
}
97
- if data ["index.html" ] != "<html><body><h1>Hello, World!</h1></body></html>" {
98
- t .Errorf ("Expected index.html to be <html><body><h1>Hello, World!</h1></body></html> , got %s" , data ["index.html" ])
99
+ if data ["index.html" ] != htmlContent {
100
+ t .Errorf ("Expected index.html to be " + htmlContent + " , got %s" , data ["index.html" ])
99
101
}
100
102
}
101
103
102
104
func TestWithFileMapping (t * testing.T ) {
103
- compose_file := `
105
+ composeFile := `
104
106
services:
105
107
web:
106
108
image: nginx:1.29
@@ -110,8 +112,8 @@ services:
110
112
%s/configmap-files: |-
111
113
- ./static/index.html
112
114
`
113
- compose_file = fmt .Sprintf (compose_file , katenaryLabelPrefix )
114
- tmpDir := setup (compose_file )
115
+ composeFile = fmt .Sprintf (composeFile , katenaryLabelPrefix )
116
+ tmpDir := setup (composeFile )
115
117
defer teardown (tmpDir )
116
118
117
119
// create a static directory with an index.html file
@@ -121,14 +123,14 @@ services:
121
123
if err != nil {
122
124
t .Errorf ("Failed to create index.html: %s" , err )
123
125
}
124
- indexFile .WriteString ("<html><body><h1>Hello, World!</h1></body></html>" )
126
+ indexFile .WriteString (htmlContent )
125
127
indexFile .Close ()
126
128
127
129
currentDir , _ := os .Getwd ()
128
130
os .Chdir (tmpDir )
129
131
defer os .Chdir (currentDir )
130
132
131
- output := _compile_test (t , "-s" , "templates/web/deployment.yaml" )
133
+ output := internalCompileTest (t , "-s" , "templates/web/deployment.yaml" )
132
134
dt := v1.Deployment {}
133
135
if err := yaml .Unmarshal ([]byte (output ), & dt ); err != nil {
134
136
t .Errorf (unmarshalError , err )
@@ -147,7 +149,7 @@ services:
147
149
}
148
150
149
151
func TestBindFrom (t * testing.T ) {
150
- compose_file := `
152
+ composeFile := `
151
153
services:
152
154
web:
153
155
image: nginx:1.29
@@ -167,15 +169,15 @@ volumes:
167
169
data:
168
170
`
169
171
170
- compose_file = fmt .Sprintf (compose_file , katenaryLabelPrefix )
171
- tmpDir := setup (compose_file )
172
+ composeFile = fmt .Sprintf (composeFile , katenaryLabelPrefix )
173
+ tmpDir := setup (composeFile )
172
174
defer teardown (tmpDir )
173
175
174
176
currentDir , _ := os .Getwd ()
175
177
os .Chdir (tmpDir )
176
178
defer os .Chdir (currentDir )
177
179
178
- output := _compile_test (t , "-s" , "templates/web/deployment.yaml" )
180
+ output := internalCompileTest (t , "-s" , "templates/web/deployment.yaml" )
179
181
dt := v1.Deployment {}
180
182
if err := yaml .Unmarshal ([]byte (output ), & dt ); err != nil {
181
183
t .Errorf (unmarshalError , err )
0 commit comments