@@ -191,3 +191,60 @@ volumes:
191
191
t .Errorf ("Expected volume name to be data: %v" , dt )
192
192
}
193
193
}
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