| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 | 
							- /*
 
-    Copyright 2020 Docker Compose CLI authors
 
-    Licensed under the Apache License, Version 2.0 (the "License");
 
-    you may not use this file except in compliance with the License.
 
-    You may obtain a copy of the License at
 
-        http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing, software
 
-    distributed under the License is distributed on an "AS IS" BASIS,
 
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-    See the License for the specific language governing permissions and
 
-    limitations under the License.
 
- */
 
- package compose
 
- import (
 
- 	"os"
 
- 	"path/filepath"
 
- 	"sort"
 
- 	"testing"
 
- 	"github.com/compose-spec/compose-go/types"
 
- 	composetypes "github.com/compose-spec/compose-go/types"
 
- 	"github.com/docker/compose/v2/pkg/api"
 
- 	moby "github.com/docker/docker/api/types"
 
- 	mountTypes "github.com/docker/docker/api/types/mount"
 
- 	"gotest.tools/v3/assert"
 
- )
 
- func TestBuildBindMount(t *testing.T) {
 
- 	project := composetypes.Project{}
 
- 	volume := composetypes.ServiceVolumeConfig{
 
- 		Type:   composetypes.VolumeTypeBind,
 
- 		Source: "",
 
- 		Target: "/data",
 
- 	}
 
- 	mount, err := buildMount(project, volume)
 
- 	assert.NilError(t, err)
 
- 	assert.Assert(t, filepath.IsAbs(mount.Source))
 
- 	_, err = os.Stat(mount.Source)
 
- 	assert.NilError(t, err)
 
- 	assert.Equal(t, mount.Type, mountTypes.TypeBind)
 
- }
 
- func TestBuildVolumeMount(t *testing.T) {
 
- 	project := composetypes.Project{
 
- 		Name: "myProject",
 
- 		Volumes: composetypes.Volumes(map[string]composetypes.VolumeConfig{
 
- 			"myVolume": {
 
- 				Name: "myProject_myVolume",
 
- 			},
 
- 		}),
 
- 	}
 
- 	volume := composetypes.ServiceVolumeConfig{
 
- 		Type:   composetypes.VolumeTypeVolume,
 
- 		Source: "myVolume",
 
- 		Target: "/data",
 
- 	}
 
- 	mount, err := buildMount(project, volume)
 
- 	assert.NilError(t, err)
 
- 	assert.Equal(t, mount.Source, "myProject_myVolume")
 
- 	assert.Equal(t, mount.Type, mountTypes.TypeVolume)
 
- }
 
- func TestServiceImageName(t *testing.T) {
 
- 	assert.Equal(t, getImageName(types.ServiceConfig{Image: "myImage"}, "myProject"), "myImage")
 
- 	assert.Equal(t, getImageName(types.ServiceConfig{Name: "aService"}, "myProject"), "myProject_aService")
 
- }
 
- func TestPrepareNetworkLabels(t *testing.T) {
 
- 	project := types.Project{
 
- 		Name:     "myProject",
 
- 		Networks: types.Networks(map[string]types.NetworkConfig{"skynet": {}}),
 
- 	}
 
- 	prepareNetworks(&project)
 
- 	assert.DeepEqual(t, project.Networks["skynet"].Labels, types.Labels(map[string]string{
 
- 		"com.docker.compose.network": "skynet",
 
- 		"com.docker.compose.project": "myProject",
 
- 		"com.docker.compose.version": api.ComposeVersion,
 
- 	}))
 
- }
 
- func TestBuildContainerMountOptions(t *testing.T) {
 
- 	project := composetypes.Project{
 
- 		Name: "myProject",
 
- 		Services: []composetypes.ServiceConfig{
 
- 			{
 
- 				Name: "myService",
 
- 				Volumes: []composetypes.ServiceVolumeConfig{
 
- 					{
 
- 						Type:   composetypes.VolumeTypeVolume,
 
- 						Target: "/var/myvolume1",
 
- 					},
 
- 					{
 
- 						Type:   composetypes.VolumeTypeVolume,
 
- 						Target: "/var/myvolume2",
 
- 					},
 
- 				},
 
- 			},
 
- 		},
 
- 		Volumes: composetypes.Volumes(map[string]composetypes.VolumeConfig{
 
- 			"myVolume1": {
 
- 				Name: "myProject_myVolume1",
 
- 			},
 
- 			"myVolume2": {
 
- 				Name: "myProject_myVolume2",
 
- 			},
 
- 		}),
 
- 	}
 
- 	inherit := &moby.Container{
 
- 		Mounts: []moby.MountPoint{
 
- 			{
 
- 				Type:        composetypes.VolumeTypeVolume,
 
- 				Destination: "/var/myvolume1",
 
- 			},
 
- 			{
 
- 				Type:        composetypes.VolumeTypeVolume,
 
- 				Destination: "/var/myvolume2",
 
- 			},
 
- 		},
 
- 	}
 
- 	mounts, err := buildContainerMountOptions(project, project.Services[0], moby.ImageInspect{}, inherit)
 
- 	sort.Slice(mounts, func(i, j int) bool {
 
- 		return mounts[i].Target < mounts[j].Target
 
- 	})
 
- 	assert.NilError(t, err)
 
- 	assert.Assert(t, len(mounts) == 2)
 
- 	assert.Equal(t, mounts[0].Target, "/var/myvolume1")
 
- 	assert.Equal(t, mounts[1].Target, "/var/myvolume2")
 
- 	mounts, err = buildContainerMountOptions(project, project.Services[0], moby.ImageInspect{}, inherit)
 
- 	sort.Slice(mounts, func(i, j int) bool {
 
- 		return mounts[i].Target < mounts[j].Target
 
- 	})
 
- 	assert.NilError(t, err)
 
- 	assert.Assert(t, len(mounts) == 2)
 
- 	assert.Equal(t, mounts[0].Target, "/var/myvolume1")
 
- 	assert.Equal(t, mounts[1].Target, "/var/myvolume2")
 
- }
 
 
  |