Skip to content

Commit 827b5bc

Browse files
committed
test(values): add map-env and exchange volumes tests
1 parent 8aee6d9 commit 827b5bc

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
lines changed

generator/configMap_test.go

+33
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package generator
22

33
import (
4+
"fmt"
5+
"katenary/generator/labels"
46
"os"
57
"testing"
68

@@ -40,3 +42,34 @@ services:
4042
t.Errorf("Expected BAR to be baz, got %s", data["BAR"])
4143
}
4244
}
45+
46+
func TestMapEnv(t *testing.T) {
47+
composeFile := `
48+
services:
49+
web:
50+
image: nginx:1.29
51+
environment:
52+
FOO: bar
53+
labels:
54+
%[1]s/map-env: |-
55+
FOO: 'baz'
56+
`
57+
58+
composeFile = fmt.Sprintf(composeFile, labels.KatenaryLabelPrefix)
59+
tmpDir := setup(composeFile)
60+
defer teardown(tmpDir)
61+
62+
currentDir, _ := os.Getwd()
63+
os.Chdir(tmpDir)
64+
defer os.Chdir(currentDir)
65+
66+
output := internalCompileTest(t, "-s", "templates/web/configmap.yaml")
67+
configMap := v1.ConfigMap{}
68+
if err := yaml.Unmarshal([]byte(output), &configMap); err != nil {
69+
t.Errorf(unmarshalError, err)
70+
}
71+
data := configMap.Data
72+
if v, ok := data["FOO"]; !ok || v != "baz" {
73+
t.Errorf("Expected FOO to be baz, got %s", v)
74+
}
75+
}

generator/volume_test.go

+57
Original file line numberDiff line numberDiff line change
@@ -191,3 +191,60 @@ volumes:
191191
t.Errorf("Expected volume name to be data: %v", dt)
192192
}
193193
}
194+
195+
func TestExchangeVolume(t *testing.T) {
196+
composeFile := `
197+
services:
198+
app1:
199+
image: nginx:1.29
200+
labels:
201+
%[1]s/exchange-volumes: |-
202+
- name: data
203+
mountPath: /var/www
204+
app2:
205+
image: foo:bar
206+
labels:
207+
%[1]s/same-pod: app1
208+
%[1]s/exchange-volumes: |-
209+
- name: data
210+
mountPath: /opt
211+
init: cp -r /var/www /opt
212+
`
213+
composeFile = fmt.Sprintf(composeFile, labels.KatenaryLabelPrefix)
214+
tmpDir := setup(composeFile)
215+
defer teardown(tmpDir)
216+
217+
currentDir, _ := os.Getwd()
218+
os.Chdir(tmpDir)
219+
defer os.Chdir(currentDir)
220+
output := internalCompileTest(t, "-s", "templates/app1/deployment.yaml")
221+
dt := v1.Deployment{}
222+
if err := yaml.Unmarshal([]byte(output), &dt); err != nil {
223+
t.Errorf(unmarshalError, err)
224+
}
225+
// the deployment should have a volume named "data"
226+
volumes := dt.Spec.Template.Spec.Volumes
227+
found := false
228+
for v := range volumes {
229+
if volumes[v].Name == "exchange-data" {
230+
found = true
231+
break
232+
}
233+
}
234+
if !found {
235+
t.Errorf("Expected volume name to be data: %v", volumes)
236+
}
237+
mounted := 0
238+
// we should have a volume mount for both containers
239+
containers := dt.Spec.Template.Spec.Containers
240+
for c := range containers {
241+
for _, vm := range containers[c].VolumeMounts {
242+
if vm.Name == "exchange-data" {
243+
mounted++
244+
}
245+
}
246+
}
247+
if mounted != 2 {
248+
t.Errorf("Expected 2 mounted volumes, got %d", mounted)
249+
}
250+
}

0 commit comments

Comments
 (0)