mirror of https://github.com/docker/cli.git
1300 lines
28 KiB
Go
1300 lines
28 KiB
Go
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
|
|
//go:build go1.21
|
|
|
|
package loader
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"dario.cat/mergo"
|
|
"github.com/docker/cli/cli/compose/types"
|
|
"gotest.tools/v3/assert"
|
|
)
|
|
|
|
func TestLoadTwoDifferentVersion(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{Filename: "base.yml", Config: map[string]any{
|
|
"version": "3.1",
|
|
}},
|
|
{Filename: "override.yml", Config: map[string]any{
|
|
"version": "3.4",
|
|
}},
|
|
},
|
|
}
|
|
_, err := Load(configDetails)
|
|
assert.Error(t, err, "version mismatched between two composefiles : 3.1 and 3.4")
|
|
}
|
|
|
|
func TestLoadLogging(t *testing.T) {
|
|
loggingCases := []struct {
|
|
name string
|
|
loggingBase map[string]any
|
|
loggingOverride map[string]any
|
|
expected *types.LoggingConfig
|
|
}{
|
|
{
|
|
name: "no_override_driver",
|
|
loggingBase: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "json-file",
|
|
"options": map[string]any{
|
|
"frequency": "2000",
|
|
"timeout": "23",
|
|
},
|
|
},
|
|
},
|
|
loggingOverride: map[string]any{
|
|
"logging": map[string]any{
|
|
"options": map[string]any{
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
expected: &types.LoggingConfig{
|
|
Driver: "json-file",
|
|
Options: map[string]string{
|
|
"frequency": "2000",
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_driver",
|
|
loggingBase: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "json-file",
|
|
"options": map[string]any{
|
|
"frequency": "2000",
|
|
"timeout": "23",
|
|
},
|
|
},
|
|
},
|
|
loggingOverride: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "syslog",
|
|
"options": map[string]any{
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
expected: &types.LoggingConfig{
|
|
Driver: "syslog",
|
|
Options: map[string]string{
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no_base_driver",
|
|
loggingBase: map[string]any{
|
|
"logging": map[string]any{
|
|
"options": map[string]any{
|
|
"frequency": "2000",
|
|
"timeout": "23",
|
|
},
|
|
},
|
|
},
|
|
loggingOverride: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "json-file",
|
|
"options": map[string]any{
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
expected: &types.LoggingConfig{
|
|
Driver: "json-file",
|
|
Options: map[string]string{
|
|
"frequency": "2000",
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no_driver",
|
|
loggingBase: map[string]any{
|
|
"logging": map[string]any{
|
|
"options": map[string]any{
|
|
"frequency": "2000",
|
|
"timeout": "23",
|
|
},
|
|
},
|
|
},
|
|
loggingOverride: map[string]any{
|
|
"logging": map[string]any{
|
|
"options": map[string]any{
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
expected: &types.LoggingConfig{
|
|
Options: map[string]string{
|
|
"frequency": "2000",
|
|
"timeout": "360",
|
|
"pretty-print": "on",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "no_override_options",
|
|
loggingBase: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "json-file",
|
|
"options": map[string]any{
|
|
"frequency": "2000",
|
|
"timeout": "23",
|
|
},
|
|
},
|
|
},
|
|
loggingOverride: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "syslog",
|
|
},
|
|
},
|
|
expected: &types.LoggingConfig{
|
|
Driver: "syslog",
|
|
},
|
|
},
|
|
{
|
|
name: "no_base",
|
|
loggingBase: map[string]any{},
|
|
loggingOverride: map[string]any{
|
|
"logging": map[string]any{
|
|
"driver": "json-file",
|
|
"options": map[string]any{
|
|
"frequency": "2000",
|
|
},
|
|
},
|
|
},
|
|
expected: &types.LoggingConfig{
|
|
Driver: "json-file",
|
|
Options: map[string]string{
|
|
"frequency": "2000",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range loggingCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{
|
|
Filename: "base.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.loggingBase,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Filename: "override.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.loggingOverride,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Logging: tc.expected,
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadMultipleServicePorts(t *testing.T) {
|
|
portsCases := []struct {
|
|
name string
|
|
portBase map[string]any
|
|
portOverride map[string]any
|
|
expected []types.ServicePortConfig
|
|
}{
|
|
{
|
|
name: "no_override",
|
|
portBase: map[string]any{
|
|
"ports": []any{
|
|
"8080:80",
|
|
},
|
|
},
|
|
portOverride: map[string]any{},
|
|
expected: []types.ServicePortConfig{
|
|
{
|
|
Mode: "ingress",
|
|
Published: 8080,
|
|
Target: 80,
|
|
Protocol: "tcp",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_different_published",
|
|
portBase: map[string]any{
|
|
"ports": []any{
|
|
"8080:80",
|
|
},
|
|
},
|
|
portOverride: map[string]any{
|
|
"ports": []any{
|
|
"8081:80",
|
|
},
|
|
},
|
|
expected: []types.ServicePortConfig{
|
|
{
|
|
Mode: "ingress",
|
|
Published: 8080,
|
|
Target: 80,
|
|
Protocol: "tcp",
|
|
},
|
|
{
|
|
Mode: "ingress",
|
|
Published: 8081,
|
|
Target: 80,
|
|
Protocol: "tcp",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_same_published",
|
|
portBase: map[string]any{
|
|
"ports": []any{
|
|
"8080:80",
|
|
},
|
|
},
|
|
portOverride: map[string]any{
|
|
"ports": []any{
|
|
"8080:81",
|
|
},
|
|
},
|
|
expected: []types.ServicePortConfig{
|
|
{
|
|
Mode: "ingress",
|
|
Published: 8080,
|
|
Target: 81,
|
|
Protocol: "tcp",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range portsCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{
|
|
Filename: "base.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.portBase,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Filename: "override.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.portOverride,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Ports: tc.expected,
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadMultipleSecretsConfig(t *testing.T) {
|
|
portsCases := []struct {
|
|
name string
|
|
secretBase map[string]any
|
|
secretOverride map[string]any
|
|
expected []types.ServiceSecretConfig
|
|
}{
|
|
{
|
|
name: "no_override",
|
|
secretBase: map[string]any{
|
|
"secrets": []any{
|
|
"my_secret",
|
|
},
|
|
},
|
|
secretOverride: map[string]any{},
|
|
expected: []types.ServiceSecretConfig{
|
|
{
|
|
Source: "my_secret",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_simple",
|
|
secretBase: map[string]any{
|
|
"secrets": []any{
|
|
"foo_secret",
|
|
},
|
|
},
|
|
secretOverride: map[string]any{
|
|
"secrets": []any{
|
|
"bar_secret",
|
|
},
|
|
},
|
|
expected: []types.ServiceSecretConfig{
|
|
{
|
|
Source: "bar_secret",
|
|
},
|
|
{
|
|
Source: "foo_secret",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_same_source",
|
|
secretBase: map[string]any{
|
|
"secrets": []any{
|
|
"foo_secret",
|
|
map[string]any{
|
|
"source": "bar_secret",
|
|
"target": "waw_secret",
|
|
},
|
|
},
|
|
},
|
|
secretOverride: map[string]any{
|
|
"secrets": []any{
|
|
map[string]any{
|
|
"source": "bar_secret",
|
|
"target": "bof_secret",
|
|
},
|
|
map[string]any{
|
|
"source": "baz_secret",
|
|
"target": "waw_secret",
|
|
},
|
|
},
|
|
},
|
|
expected: []types.ServiceSecretConfig{
|
|
{
|
|
Source: "bar_secret",
|
|
Target: "bof_secret",
|
|
},
|
|
{
|
|
Source: "baz_secret",
|
|
Target: "waw_secret",
|
|
},
|
|
{
|
|
Source: "foo_secret",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range portsCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{
|
|
Filename: "base.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.secretBase,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Filename: "override.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.secretOverride,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Secrets: tc.expected,
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadMultipleConfigobjsConfig(t *testing.T) {
|
|
portsCases := []struct {
|
|
name string
|
|
configBase map[string]any
|
|
configOverride map[string]any
|
|
expected []types.ServiceConfigObjConfig
|
|
}{
|
|
{
|
|
name: "no_override",
|
|
configBase: map[string]any{
|
|
"configs": []any{
|
|
"my_config",
|
|
},
|
|
},
|
|
configOverride: map[string]any{},
|
|
expected: []types.ServiceConfigObjConfig{
|
|
{
|
|
Source: "my_config",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_simple",
|
|
configBase: map[string]any{
|
|
"configs": []any{
|
|
"foo_config",
|
|
},
|
|
},
|
|
configOverride: map[string]any{
|
|
"configs": []any{
|
|
"bar_config",
|
|
},
|
|
},
|
|
expected: []types.ServiceConfigObjConfig{
|
|
{
|
|
Source: "bar_config",
|
|
},
|
|
{
|
|
Source: "foo_config",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_same_source",
|
|
configBase: map[string]any{
|
|
"configs": []any{
|
|
"foo_config",
|
|
map[string]any{
|
|
"source": "bar_config",
|
|
"target": "waw_config",
|
|
},
|
|
},
|
|
},
|
|
configOverride: map[string]any{
|
|
"configs": []any{
|
|
map[string]any{
|
|
"source": "bar_config",
|
|
"target": "bof_config",
|
|
},
|
|
map[string]any{
|
|
"source": "baz_config",
|
|
"target": "waw_config",
|
|
},
|
|
},
|
|
},
|
|
expected: []types.ServiceConfigObjConfig{
|
|
{
|
|
Source: "bar_config",
|
|
Target: "bof_config",
|
|
},
|
|
{
|
|
Source: "baz_config",
|
|
Target: "waw_config",
|
|
},
|
|
{
|
|
Source: "foo_config",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range portsCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{
|
|
Filename: "base.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.configBase,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Filename: "override.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.configOverride,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Configs: tc.expected,
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadMultipleUlimits(t *testing.T) {
|
|
ulimitCases := []struct {
|
|
name string
|
|
ulimitBase map[string]any
|
|
ulimitOverride map[string]any
|
|
expected map[string]*types.UlimitsConfig
|
|
}{
|
|
{
|
|
name: "no_override",
|
|
ulimitBase: map[string]any{
|
|
"ulimits": map[string]any{
|
|
"noproc": 65535,
|
|
},
|
|
},
|
|
ulimitOverride: map[string]any{},
|
|
expected: map[string]*types.UlimitsConfig{
|
|
"noproc": {
|
|
Single: 65535,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_simple",
|
|
ulimitBase: map[string]any{
|
|
"ulimits": map[string]any{
|
|
"noproc": 65535,
|
|
},
|
|
},
|
|
ulimitOverride: map[string]any{
|
|
"ulimits": map[string]any{
|
|
"noproc": 44444,
|
|
},
|
|
},
|
|
expected: map[string]*types.UlimitsConfig{
|
|
"noproc": {
|
|
Single: 44444,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "override_different_notation",
|
|
ulimitBase: map[string]any{
|
|
"ulimits": map[string]any{
|
|
"nofile": map[string]any{
|
|
"soft": 11111,
|
|
"hard": 99999,
|
|
},
|
|
"noproc": 44444,
|
|
},
|
|
},
|
|
ulimitOverride: map[string]any{
|
|
"ulimits": map[string]any{
|
|
"nofile": 55555,
|
|
"noproc": map[string]any{
|
|
"soft": 22222,
|
|
"hard": 33333,
|
|
},
|
|
},
|
|
},
|
|
expected: map[string]*types.UlimitsConfig{
|
|
"noproc": {
|
|
Soft: 22222,
|
|
Hard: 33333,
|
|
},
|
|
"nofile": {
|
|
Single: 55555,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range ulimitCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{
|
|
Filename: "base.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.ulimitBase,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Filename: "override.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.ulimitOverride,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Ulimits: tc.expected,
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadMultipleServiceNetworks(t *testing.T) {
|
|
networkCases := []struct {
|
|
name string
|
|
networkBase map[string]any
|
|
networkOverride map[string]any
|
|
expected map[string]*types.ServiceNetworkConfig
|
|
}{
|
|
{
|
|
name: "no_override",
|
|
networkBase: map[string]any{
|
|
"networks": []any{
|
|
"net1",
|
|
"net2",
|
|
},
|
|
},
|
|
networkOverride: map[string]any{},
|
|
expected: map[string]*types.ServiceNetworkConfig{
|
|
"net1": nil,
|
|
"net2": nil,
|
|
},
|
|
},
|
|
{
|
|
name: "override_simple",
|
|
networkBase: map[string]any{
|
|
"networks": []any{
|
|
"net1",
|
|
"net2",
|
|
},
|
|
},
|
|
networkOverride: map[string]any{
|
|
"networks": []any{
|
|
"net1",
|
|
"net3",
|
|
},
|
|
},
|
|
expected: map[string]*types.ServiceNetworkConfig{
|
|
"net1": nil,
|
|
"net2": nil,
|
|
"net3": nil,
|
|
},
|
|
},
|
|
{
|
|
name: "override_with_aliases",
|
|
networkBase: map[string]any{
|
|
"networks": map[string]any{
|
|
"net1": map[string]any{
|
|
"aliases": []any{
|
|
"alias1",
|
|
},
|
|
},
|
|
"net2": nil,
|
|
},
|
|
},
|
|
networkOverride: map[string]any{
|
|
"networks": map[string]any{
|
|
"net1": map[string]any{
|
|
"aliases": []any{
|
|
"alias2",
|
|
"alias3",
|
|
},
|
|
},
|
|
"net3": map[string]any{},
|
|
},
|
|
},
|
|
expected: map[string]*types.ServiceNetworkConfig{
|
|
"net1": {
|
|
Aliases: []string{"alias2", "alias3"},
|
|
},
|
|
"net2": nil,
|
|
"net3": {},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range networkCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{
|
|
Filename: "base.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.networkBase,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Filename: "override.yml",
|
|
Config: map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": tc.networkOverride,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Networks: tc.expected,
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestLoadMultipleConfigs(t *testing.T) {
|
|
base := map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "foo",
|
|
"build": map[string]any{
|
|
"context": ".",
|
|
"dockerfile": "bar.Dockerfile",
|
|
},
|
|
"ports": []any{
|
|
"8080:80",
|
|
"9090:90",
|
|
},
|
|
"labels": []any{
|
|
"foo=bar",
|
|
},
|
|
"cap_add": []any{
|
|
"NET_ADMIN",
|
|
},
|
|
},
|
|
},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
override := map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "baz",
|
|
"build": map[string]any{
|
|
"dockerfile": "foo.Dockerfile",
|
|
"args": []any{
|
|
"buildno=1",
|
|
"password=secret",
|
|
},
|
|
},
|
|
"ports": []any{
|
|
map[string]any{
|
|
"target": 81,
|
|
"published": 8080,
|
|
},
|
|
},
|
|
"labels": map[string]any{
|
|
"foo": "baz",
|
|
},
|
|
"cap_add": []any{
|
|
"SYS_ADMIN",
|
|
},
|
|
},
|
|
"bar": map[string]any{
|
|
"image": "bar",
|
|
},
|
|
},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{Filename: "base.yml", Config: base},
|
|
{Filename: "override.yml", Config: override},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "bar",
|
|
Image: "bar",
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
{
|
|
Name: "foo",
|
|
Image: "baz",
|
|
Build: types.BuildConfig{
|
|
Context: ".",
|
|
Dockerfile: "foo.Dockerfile",
|
|
Args: types.MappingWithEquals{
|
|
"buildno": strPtr("1"),
|
|
"password": strPtr("secret"),
|
|
},
|
|
},
|
|
Ports: []types.ServicePortConfig{
|
|
{
|
|
Target: 81,
|
|
Published: 8080,
|
|
},
|
|
{
|
|
Mode: "ingress",
|
|
Target: 90,
|
|
Published: 9090,
|
|
Protocol: "tcp",
|
|
},
|
|
},
|
|
Labels: types.Labels{
|
|
"foo": "baz",
|
|
},
|
|
CapAdd: []string{"NET_ADMIN", "SYS_ADMIN"},
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
}
|
|
|
|
// Issue#972
|
|
func TestLoadMultipleNetworks(t *testing.T) {
|
|
base := map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "baz",
|
|
},
|
|
},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{
|
|
"hostnet": map[string]any{
|
|
"driver": "overlay",
|
|
"ipam": map[string]any{
|
|
"driver": "default",
|
|
"config": []any{
|
|
map[string]any{
|
|
"subnet": "10.0.0.0/20",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
override := map[string]any{
|
|
"version": "3.4",
|
|
"services": map[string]any{},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{
|
|
"hostnet": map[string]any{
|
|
"external": map[string]any{
|
|
"name": "host",
|
|
},
|
|
},
|
|
},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{Filename: "base.yml", Config: base},
|
|
{Filename: "override.yml", Config: override},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.4",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Image: "baz",
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Networks: map[string]types.NetworkConfig{
|
|
"hostnet": {
|
|
Name: "host",
|
|
External: types.External{
|
|
External: true,
|
|
},
|
|
},
|
|
},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
}, config)
|
|
}
|
|
|
|
func TestLoadMultipleServiceCommands(t *testing.T) {
|
|
base := map[string]any{
|
|
"version": "3.7",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "baz",
|
|
"command": "foo bar",
|
|
},
|
|
},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
override := map[string]any{
|
|
"version": "3.7",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "baz",
|
|
"command": "foo baz",
|
|
},
|
|
},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{Filename: "base.yml", Config: base},
|
|
{Filename: "override.yml", Config: override},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.7",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Image: "baz",
|
|
Command: types.ShellCommand{"foo", "baz"},
|
|
Environment: types.MappingWithEquals{},
|
|
},
|
|
},
|
|
Volumes: map[string]types.VolumeConfig{},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
}, config)
|
|
}
|
|
|
|
func TestLoadMultipleServiceVolumes(t *testing.T) {
|
|
base := map[string]any{
|
|
"version": "3.7",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "baz",
|
|
"volumes": []any{
|
|
map[string]any{
|
|
"type": "volume",
|
|
"source": "sourceVolume",
|
|
"target": "/var/app",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
"volumes": map[string]any{
|
|
"sourceVolume": map[string]any{},
|
|
},
|
|
"networks": map[string]any{},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
override := map[string]any{
|
|
"version": "3.7",
|
|
"services": map[string]any{
|
|
"foo": map[string]any{
|
|
"image": "baz",
|
|
"volumes": []any{
|
|
map[string]any{
|
|
"type": "volume",
|
|
"source": "/local",
|
|
"target": "/var/app",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
"volumes": map[string]any{},
|
|
"networks": map[string]any{},
|
|
"secrets": map[string]any{},
|
|
"configs": map[string]any{},
|
|
}
|
|
configDetails := types.ConfigDetails{
|
|
ConfigFiles: []types.ConfigFile{
|
|
{Filename: "base.yml", Config: base},
|
|
{Filename: "override.yml", Config: override},
|
|
},
|
|
}
|
|
config, err := Load(configDetails)
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(t, &types.Config{
|
|
Filename: "base.yml",
|
|
Version: "3.7",
|
|
Services: []types.ServiceConfig{
|
|
{
|
|
Name: "foo",
|
|
Image: "baz",
|
|
Environment: types.MappingWithEquals{},
|
|
Volumes: []types.ServiceVolumeConfig{
|
|
{
|
|
Type: "volume",
|
|
Source: "/local",
|
|
Target: "/var/app",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Volumes: map[string]types.VolumeConfig{
|
|
"sourceVolume": {},
|
|
},
|
|
Secrets: map[string]types.SecretConfig{},
|
|
Configs: map[string]types.ConfigObjConfig{},
|
|
Networks: map[string]types.NetworkConfig{},
|
|
}, config)
|
|
}
|
|
|
|
func TestMergeUlimitsConfig(t *testing.T) {
|
|
specials := &specials{
|
|
m: map[reflect.Type]func(dst, src reflect.Value) error{
|
|
reflect.TypeOf(&types.UlimitsConfig{}): mergeUlimitsConfig,
|
|
},
|
|
}
|
|
base := map[string]*types.UlimitsConfig{
|
|
"override-single": {Single: 100},
|
|
"override-single-with-soft-hard": {Single: 200},
|
|
"override-soft-hard": {Soft: 300, Hard: 301},
|
|
"override-soft-hard-with-single": {Soft: 400, Hard: 401},
|
|
"dont-override": {Single: 500},
|
|
}
|
|
override := map[string]*types.UlimitsConfig{
|
|
"override-single": {Single: 110},
|
|
"override-single-with-soft-hard": {Soft: 210, Hard: 211},
|
|
"override-soft-hard": {Soft: 310, Hard: 311},
|
|
"override-soft-hard-with-single": {Single: 410},
|
|
"add": {Single: 610},
|
|
}
|
|
err := mergo.Merge(&base, &override, mergo.WithOverride, mergo.WithTransformers(specials))
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(
|
|
t,
|
|
base,
|
|
map[string]*types.UlimitsConfig{
|
|
"override-single": {Single: 110},
|
|
"override-single-with-soft-hard": {Soft: 210, Hard: 211},
|
|
"override-soft-hard": {Soft: 310, Hard: 311},
|
|
"override-soft-hard-with-single": {Single: 410},
|
|
"dont-override": {Single: 500},
|
|
"add": {Single: 610},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestMergeServiceNetworkConfig(t *testing.T) {
|
|
specials := &specials{
|
|
m: map[reflect.Type]func(dst, src reflect.Value) error{
|
|
reflect.TypeOf(&types.ServiceNetworkConfig{}): mergeServiceNetworkConfig,
|
|
},
|
|
}
|
|
base := map[string]*types.ServiceNetworkConfig{
|
|
"override-aliases": {
|
|
Aliases: []string{"100", "101"},
|
|
Ipv4Address: "127.0.0.1",
|
|
Ipv6Address: "0:0:0:0:0:0:0:1",
|
|
},
|
|
"dont-override": {
|
|
Aliases: []string{"200", "201"},
|
|
Ipv4Address: "127.0.0.2",
|
|
Ipv6Address: "0:0:0:0:0:0:0:2",
|
|
},
|
|
}
|
|
override := map[string]*types.ServiceNetworkConfig{
|
|
"override-aliases": {
|
|
Aliases: []string{"110", "111"},
|
|
Ipv4Address: "127.0.1.1",
|
|
Ipv6Address: "0:0:0:0:0:0:1:1",
|
|
},
|
|
"add": {
|
|
Aliases: []string{"310", "311"},
|
|
Ipv4Address: "127.0.3.1",
|
|
Ipv6Address: "0:0:0:0:0:0:3:1",
|
|
},
|
|
}
|
|
err := mergo.Merge(&base, &override, mergo.WithOverride, mergo.WithTransformers(specials))
|
|
assert.NilError(t, err)
|
|
assert.DeepEqual(
|
|
t,
|
|
base,
|
|
map[string]*types.ServiceNetworkConfig{
|
|
"override-aliases": {
|
|
Aliases: []string{"110", "111"},
|
|
Ipv4Address: "127.0.1.1",
|
|
Ipv6Address: "0:0:0:0:0:0:1:1",
|
|
},
|
|
"dont-override": {
|
|
Aliases: []string{"200", "201"},
|
|
Ipv4Address: "127.0.0.2",
|
|
Ipv6Address: "0:0:0:0:0:0:0:2",
|
|
},
|
|
"add": {
|
|
Aliases: []string{"310", "311"},
|
|
Ipv4Address: "127.0.3.1",
|
|
Ipv6Address: "0:0:0:0:0:0:3:1",
|
|
},
|
|
},
|
|
)
|
|
}
|
|
|
|
// issue #3293
|
|
func TestMergeServiceOverrideReplicasZero(t *testing.T) {
|
|
base := types.ServiceConfig{
|
|
Name: "someService",
|
|
Deploy: types.DeployConfig{
|
|
Replicas: uint64Ptr(3),
|
|
},
|
|
}
|
|
override := types.ServiceConfig{
|
|
Name: "someService",
|
|
Deploy: types.DeployConfig{
|
|
Replicas: uint64Ptr(0),
|
|
},
|
|
}
|
|
services, err := mergeServices([]types.ServiceConfig{base}, []types.ServiceConfig{override})
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, len(services), 1)
|
|
actual := services[0]
|
|
assert.DeepEqual(
|
|
t,
|
|
actual,
|
|
types.ServiceConfig{
|
|
Name: "someService",
|
|
Deploy: types.DeployConfig{
|
|
Replicas: uint64Ptr(0),
|
|
},
|
|
},
|
|
)
|
|
}
|
|
|
|
func TestMergeServiceOverrideReplicasNotNil(t *testing.T) {
|
|
base := types.ServiceConfig{
|
|
Name: "someService",
|
|
Deploy: types.DeployConfig{
|
|
Replicas: uint64Ptr(3),
|
|
},
|
|
}
|
|
override := types.ServiceConfig{
|
|
Name: "someService",
|
|
Deploy: types.DeployConfig{},
|
|
}
|
|
services, err := mergeServices([]types.ServiceConfig{base}, []types.ServiceConfig{override})
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, len(services), 1)
|
|
actual := services[0]
|
|
assert.DeepEqual(
|
|
t,
|
|
actual,
|
|
types.ServiceConfig{
|
|
Name: "someService",
|
|
Deploy: types.DeployConfig{
|
|
Replicas: uint64Ptr(3),
|
|
},
|
|
},
|
|
)
|
|
}
|