2018-03-01 17:51:11 -05:00
|
|
|
package config // import "github.com/docker/docker/integration/config"
|
2018-02-09 16:44:28 -05:00
|
|
|
|
|
|
|
import (
|
2017-06-15 15:06:08 -04:00
|
|
|
"bytes"
|
2018-04-19 18:30:59 -04:00
|
|
|
"context"
|
2018-02-26 18:23:18 -05:00
|
|
|
"encoding/json"
|
2018-02-09 16:44:28 -05:00
|
|
|
"sort"
|
|
|
|
"testing"
|
2017-06-15 15:06:08 -04:00
|
|
|
"time"
|
2018-02-09 16:44:28 -05:00
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
|
|
|
"github.com/docker/docker/api/types/filters"
|
|
|
|
swarmtypes "github.com/docker/docker/api/types/swarm"
|
|
|
|
"github.com/docker/docker/client"
|
2019-08-19 09:33:48 -04:00
|
|
|
"github.com/docker/docker/errdefs"
|
2018-02-09 16:44:28 -05:00
|
|
|
"github.com/docker/docker/integration/internal/swarm"
|
2017-06-15 15:06:08 -04:00
|
|
|
"github.com/docker/docker/pkg/stdcopy"
|
2020-02-07 08:39:24 -05:00
|
|
|
"gotest.tools/v3/assert"
|
|
|
|
is "gotest.tools/v3/assert/cmp"
|
|
|
|
"gotest.tools/v3/poll"
|
|
|
|
"gotest.tools/v3/skip"
|
2018-02-09 16:44:28 -05:00
|
|
|
)
|
|
|
|
|
2019-08-19 09:11:48 -04:00
|
|
|
func TestConfigInspect(t *testing.T) {
|
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
|
|
|
|
|
|
|
defer setupTest(t)()
|
|
|
|
d := swarm.NewSwarm(t, testEnv)
|
|
|
|
defer d.Stop(t)
|
|
|
|
c := d.NewClientT(t)
|
|
|
|
defer c.Close()
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
testName := t.Name()
|
|
|
|
configID := createConfig(ctx, t, c, testName, []byte("TESTINGDATA"), nil)
|
|
|
|
|
|
|
|
insp, body, err := c.ConfigInspectWithRaw(ctx, configID)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Name, testName))
|
|
|
|
|
|
|
|
var config swarmtypes.Config
|
|
|
|
err = json.Unmarshal(body, &config)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.DeepEqual(config, insp))
|
|
|
|
}
|
|
|
|
|
2018-02-09 16:44:28 -05:00
|
|
|
func TestConfigList(t *testing.T) {
|
2018-04-19 05:14:15 -04:00
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
2018-02-09 16:44:28 -05:00
|
|
|
|
|
|
|
defer setupTest(t)()
|
|
|
|
d := swarm.NewSwarm(t, testEnv)
|
|
|
|
defer d.Stop(t)
|
2019-08-19 08:16:18 -04:00
|
|
|
c := d.NewClientT(t)
|
|
|
|
defer c.Close()
|
2018-02-09 16:44:28 -05:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-02-11 18:43:24 -05:00
|
|
|
// This test case is ported from the original TestConfigsEmptyList
|
2019-08-19 08:16:18 -04:00
|
|
|
configs, err := c.ConfigList(ctx, types.ConfigListOptions{})
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(len(configs), 0))
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2018-04-06 06:06:02 -04:00
|
|
|
testName0 := "test0-" + t.Name()
|
|
|
|
testName1 := "test1-" + t.Name()
|
2018-02-09 16:44:28 -05:00
|
|
|
testNames := []string{testName0, testName1}
|
|
|
|
sort.Strings(testNames)
|
|
|
|
|
|
|
|
// create config test0
|
2019-08-19 08:16:18 -04:00
|
|
|
createConfig(ctx, t, c, testName0, []byte("TESTINGDATA0"), map[string]string{"type": "test"})
|
2018-02-09 16:44:28 -05:00
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
config1ID := createConfig(ctx, t, c, testName1, []byte("TESTINGDATA1"), map[string]string{"type": "production"})
|
2018-02-09 16:44:28 -05:00
|
|
|
|
|
|
|
// test by `config ls`
|
2019-08-19 08:16:18 -04:00
|
|
|
entries, err := c.ConfigList(ctx, types.ConfigListOptions{})
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.Check(t, is.DeepEqual(configNamesFromList(entries), testNames))
|
2018-02-09 16:44:28 -05:00
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
filters filters.Args
|
|
|
|
expected []string
|
|
|
|
}{
|
|
|
|
// test filter by name `config ls --filter name=xxx`
|
|
|
|
{
|
|
|
|
filters: filters.NewArgs(filters.Arg("name", testName0)),
|
|
|
|
expected: []string{testName0},
|
|
|
|
},
|
|
|
|
// test filter by id `config ls --filter id=xxx`
|
|
|
|
{
|
|
|
|
filters: filters.NewArgs(filters.Arg("id", config1ID)),
|
|
|
|
expected: []string{testName1},
|
|
|
|
},
|
|
|
|
// test filter by label `config ls --filter label=xxx`
|
|
|
|
{
|
|
|
|
filters: filters.NewArgs(filters.Arg("label", "type")),
|
|
|
|
expected: testNames,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
filters: filters.NewArgs(filters.Arg("label", "type=test")),
|
|
|
|
expected: []string{testName0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
filters: filters.NewArgs(filters.Arg("label", "type=production")),
|
|
|
|
expected: []string{testName1},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tc := range testCases {
|
2019-08-19 08:16:18 -04:00
|
|
|
entries, err = c.ConfigList(ctx, types.ConfigListOptions{
|
2018-02-09 16:44:28 -05:00
|
|
|
Filters: tc.filters,
|
|
|
|
})
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.Check(t, is.DeepEqual(configNamesFromList(entries), tc.expected))
|
2018-02-09 16:44:28 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func createConfig(ctx context.Context, t *testing.T, client client.APIClient, name string, data []byte, labels map[string]string) string {
|
|
|
|
config, err := client.ConfigCreate(ctx, swarmtypes.ConfigSpec{
|
|
|
|
Annotations: swarmtypes.Annotations{
|
|
|
|
Name: name,
|
|
|
|
Labels: labels,
|
|
|
|
},
|
|
|
|
Data: data,
|
|
|
|
})
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, config.ID != "")
|
2018-02-09 16:44:28 -05:00
|
|
|
return config.ID
|
|
|
|
}
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
func TestConfigsCreateAndDelete(t *testing.T) {
|
2018-04-19 05:14:15 -04:00
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
defer setupTest(t)()
|
|
|
|
d := swarm.NewSwarm(t, testEnv)
|
|
|
|
defer d.Stop(t)
|
2019-08-19 08:16:18 -04:00
|
|
|
c := d.NewClientT(t)
|
|
|
|
defer c.Close()
|
2018-02-11 18:43:24 -05:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-04-06 06:06:02 -04:00
|
|
|
testName := "test_config-" + t.Name()
|
2019-08-19 08:16:18 -04:00
|
|
|
configID := createConfig(ctx, t, c, testName, []byte("TESTINGDATA"), nil)
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2019-08-19 10:01:28 -04:00
|
|
|
err := c.ConfigRemove(ctx, configID)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2019-08-19 09:33:48 -04:00
|
|
|
_, _, err = c.ConfigInspectWithRaw(ctx, configID)
|
|
|
|
assert.Check(t, errdefs.IsNotFound(err))
|
|
|
|
assert.Check(t, is.ErrorContains(err, configID))
|
2019-08-19 09:57:24 -04:00
|
|
|
|
2019-08-19 10:07:34 -04:00
|
|
|
err = c.ConfigRemove(ctx, "non-existing")
|
|
|
|
assert.Check(t, errdefs.IsNotFound(err))
|
|
|
|
assert.Check(t, is.ErrorContains(err, "non-existing"))
|
|
|
|
|
2019-08-19 09:57:24 -04:00
|
|
|
testName = "test_secret_with_labels_" + t.Name()
|
|
|
|
configID = createConfig(ctx, t, c, testName, []byte("TESTINGDATA"), map[string]string{
|
|
|
|
"key1": "value1",
|
|
|
|
"key2": "value2",
|
|
|
|
})
|
|
|
|
|
2019-08-19 10:01:28 -04:00
|
|
|
insp, _, err := c.ConfigInspectWithRaw(ctx, configID)
|
2019-08-19 09:57:24 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Name, testName))
|
|
|
|
assert.Check(t, is.Equal(len(insp.Spec.Labels), 2))
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Labels["key1"], "value1"))
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Labels["key2"], "value2"))
|
2018-02-11 18:43:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestConfigsUpdate(t *testing.T) {
|
2018-04-19 05:14:15 -04:00
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
defer setupTest(t)()
|
|
|
|
d := swarm.NewSwarm(t, testEnv)
|
|
|
|
defer d.Stop(t)
|
2019-08-19 08:16:18 -04:00
|
|
|
c := d.NewClientT(t)
|
|
|
|
defer c.Close()
|
2018-02-11 18:43:24 -05:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-04-06 06:06:02 -04:00
|
|
|
testName := "test_config-" + t.Name()
|
2019-08-19 08:16:18 -04:00
|
|
|
configID := createConfig(ctx, t, c, testName, []byte("TESTINGDATA"), nil)
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
insp, _, err := c.ConfigInspectWithRaw(ctx, configID)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(insp.ID, configID))
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
// test UpdateConfig with full ID
|
|
|
|
insp.Spec.Labels = map[string]string{"test": "test1"}
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigUpdate(ctx, configID, insp.Version, insp.Spec)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
insp, _, err = c.ConfigInspectWithRaw(ctx, configID)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Labels["test"], "test1"))
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
// test UpdateConfig with full name
|
|
|
|
insp.Spec.Labels = map[string]string{"test": "test2"}
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigUpdate(ctx, testName, insp.Version, insp.Spec)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
insp, _, err = c.ConfigInspectWithRaw(ctx, configID)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Labels["test"], "test2"))
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
// test UpdateConfig with prefix ID
|
|
|
|
insp.Spec.Labels = map[string]string{"test": "test3"}
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigUpdate(ctx, configID[:1], insp.Version, insp.Spec)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
2018-02-11 18:43:24 -05:00
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
insp, _, err = c.ConfigInspectWithRaw(ctx, configID)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Equal(insp.Spec.Labels["test"], "test3"))
|
2018-02-11 18:43:24 -05:00
|
|
|
|
|
|
|
// test UpdateConfig in updating Data which is not supported in daemon
|
|
|
|
// this test will produce an error in func UpdateConfig
|
|
|
|
insp.Spec.Data = []byte("TESTINGDATA2")
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigUpdate(ctx, configID, insp.Version, insp.Spec)
|
2019-08-19 09:33:48 -04:00
|
|
|
assert.Check(t, errdefs.IsInvalidParameter(err))
|
2018-05-20 18:06:50 -04:00
|
|
|
assert.Check(t, is.ErrorContains(err, "only updates to Labels are allowed"))
|
2018-02-11 18:43:24 -05:00
|
|
|
}
|
2017-06-15 15:06:08 -04:00
|
|
|
|
|
|
|
func TestTemplatedConfig(t *testing.T) {
|
2018-04-19 05:14:15 -04:00
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType == "windows")
|
2017-06-15 15:06:08 -04:00
|
|
|
d := swarm.NewSwarm(t, testEnv)
|
|
|
|
defer d.Stop(t)
|
2019-08-19 08:16:18 -04:00
|
|
|
c := d.NewClientT(t)
|
|
|
|
defer c.Close()
|
2017-06-15 15:06:08 -04:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-04-06 06:06:02 -04:00
|
|
|
referencedSecretName := "referencedsecret-" + t.Name()
|
2017-06-15 15:06:08 -04:00
|
|
|
referencedSecretSpec := swarmtypes.SecretSpec{
|
|
|
|
Annotations: swarmtypes.Annotations{
|
2018-04-06 06:06:02 -04:00
|
|
|
Name: referencedSecretName,
|
2017-06-15 15:06:08 -04:00
|
|
|
},
|
|
|
|
Data: []byte("this is a secret"),
|
|
|
|
}
|
2019-08-19 08:16:18 -04:00
|
|
|
referencedSecret, err := c.SecretCreate(ctx, referencedSecretSpec)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.Check(t, err)
|
2017-06-15 15:06:08 -04:00
|
|
|
|
2018-04-06 06:06:02 -04:00
|
|
|
referencedConfigName := "referencedconfig-" + t.Name()
|
2017-06-15 15:06:08 -04:00
|
|
|
referencedConfigSpec := swarmtypes.ConfigSpec{
|
|
|
|
Annotations: swarmtypes.Annotations{
|
2018-04-06 06:06:02 -04:00
|
|
|
Name: referencedConfigName,
|
2017-06-15 15:06:08 -04:00
|
|
|
},
|
|
|
|
Data: []byte("this is a config"),
|
|
|
|
}
|
2019-08-19 08:16:18 -04:00
|
|
|
referencedConfig, err := c.ConfigCreate(ctx, referencedConfigSpec)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.Check(t, err)
|
2017-06-15 15:06:08 -04:00
|
|
|
|
2018-04-06 06:06:02 -04:00
|
|
|
templatedConfigName := "templated_config-" + t.Name()
|
2017-06-15 15:06:08 -04:00
|
|
|
configSpec := swarmtypes.ConfigSpec{
|
|
|
|
Annotations: swarmtypes.Annotations{
|
2018-04-06 06:06:02 -04:00
|
|
|
Name: templatedConfigName,
|
2017-06-15 15:06:08 -04:00
|
|
|
},
|
|
|
|
Templating: &swarmtypes.Driver{
|
|
|
|
Name: "golang",
|
|
|
|
},
|
|
|
|
Data: []byte("SERVICE_NAME={{.Service.Name}}\n" +
|
|
|
|
"{{secret \"referencedsecrettarget\"}}\n" +
|
|
|
|
"{{config \"referencedconfigtarget\"}}\n"),
|
|
|
|
}
|
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
templatedConfig, err := c.ConfigCreate(ctx, configSpec)
|
2018-03-13 15:28:34 -04:00
|
|
|
assert.Check(t, err)
|
2017-06-15 15:06:08 -04:00
|
|
|
|
2019-08-19 09:23:49 -04:00
|
|
|
serviceName := "svc_" + t.Name()
|
2017-06-15 15:06:08 -04:00
|
|
|
serviceID := swarm.CreateService(t, d,
|
|
|
|
swarm.ServiceWithConfig(
|
|
|
|
&swarmtypes.ConfigReference{
|
|
|
|
File: &swarmtypes.ConfigReferenceFileTarget{
|
2019-08-19 09:23:49 -04:00
|
|
|
Name: "templated_config",
|
2017-06-15 15:06:08 -04:00
|
|
|
UID: "0",
|
|
|
|
GID: "0",
|
|
|
|
Mode: 0600,
|
|
|
|
},
|
|
|
|
ConfigID: templatedConfig.ID,
|
2018-04-06 06:06:02 -04:00
|
|
|
ConfigName: templatedConfigName,
|
2017-06-15 15:06:08 -04:00
|
|
|
},
|
|
|
|
),
|
|
|
|
swarm.ServiceWithConfig(
|
|
|
|
&swarmtypes.ConfigReference{
|
|
|
|
File: &swarmtypes.ConfigReferenceFileTarget{
|
|
|
|
Name: "referencedconfigtarget",
|
|
|
|
UID: "0",
|
|
|
|
GID: "0",
|
|
|
|
Mode: 0600,
|
|
|
|
},
|
|
|
|
ConfigID: referencedConfig.ID,
|
2018-04-06 06:06:02 -04:00
|
|
|
ConfigName: referencedConfigName,
|
2017-06-15 15:06:08 -04:00
|
|
|
},
|
|
|
|
),
|
|
|
|
swarm.ServiceWithSecret(
|
|
|
|
&swarmtypes.SecretReference{
|
|
|
|
File: &swarmtypes.SecretReferenceFileTarget{
|
|
|
|
Name: "referencedsecrettarget",
|
|
|
|
UID: "0",
|
|
|
|
GID: "0",
|
|
|
|
Mode: 0600,
|
|
|
|
},
|
|
|
|
SecretID: referencedSecret.ID,
|
2018-04-06 06:06:02 -04:00
|
|
|
SecretName: referencedSecretName,
|
2017-06-15 15:06:08 -04:00
|
|
|
},
|
|
|
|
),
|
2019-08-19 09:23:49 -04:00
|
|
|
swarm.ServiceWithName(serviceName),
|
2017-06-15 15:06:08 -04:00
|
|
|
)
|
|
|
|
|
2019-08-19 08:40:38 -04:00
|
|
|
poll.WaitOn(t, swarm.RunningTasksCount(c, serviceID, 1), swarm.ServicePoll, poll.WithTimeout(1*time.Minute))
|
|
|
|
|
|
|
|
tasks := swarm.GetRunningTasks(t, c, serviceID)
|
|
|
|
assert.Assert(t, len(tasks) > 0, "no running tasks found for service %s", serviceID)
|
2017-06-15 15:06:08 -04:00
|
|
|
|
2019-08-19 08:40:38 -04:00
|
|
|
attach := swarm.ExecTask(t, d, tasks[0], types.ExecConfig{
|
2019-08-19 09:23:49 -04:00
|
|
|
Cmd: []string{"/bin/cat", "/templated_config"},
|
2017-06-15 15:06:08 -04:00
|
|
|
AttachStdout: true,
|
|
|
|
AttachStderr: true,
|
|
|
|
})
|
|
|
|
|
2019-08-19 09:23:49 -04:00
|
|
|
expect := "SERVICE_NAME=" + serviceName + "\n" +
|
2017-06-15 15:06:08 -04:00
|
|
|
"this is a secret\n" +
|
|
|
|
"this is a config\n"
|
2018-01-17 10:49:58 -05:00
|
|
|
assertAttachedStream(t, attach, expect)
|
|
|
|
|
2019-08-19 08:40:38 -04:00
|
|
|
attach = swarm.ExecTask(t, d, tasks[0], types.ExecConfig{
|
2018-01-17 10:49:58 -05:00
|
|
|
Cmd: []string{"mount"},
|
|
|
|
AttachStdout: true,
|
|
|
|
AttachStderr: true,
|
|
|
|
})
|
2019-08-19 09:23:49 -04:00
|
|
|
assertAttachedStream(t, attach, "tmpfs on /templated_config type tmpfs")
|
2017-06-15 15:06:08 -04:00
|
|
|
}
|
|
|
|
|
2018-07-13 17:29:02 -04:00
|
|
|
// Test case for 28884
|
|
|
|
func TestConfigCreateResolve(t *testing.T) {
|
|
|
|
skip.If(t, testEnv.DaemonInfo.OSType != "linux")
|
|
|
|
|
|
|
|
defer setupTest(t)()
|
|
|
|
d := swarm.NewSwarm(t, testEnv)
|
|
|
|
defer d.Stop(t)
|
2019-08-19 08:16:18 -04:00
|
|
|
c := d.NewClientT(t)
|
|
|
|
defer c.Close()
|
2018-07-13 17:29:02 -04:00
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
configName := "test_config_" + t.Name()
|
2019-08-19 08:16:18 -04:00
|
|
|
configID := createConfig(ctx, t, c, configName, []byte("foo"), nil)
|
2019-08-19 09:23:49 -04:00
|
|
|
|
2018-07-13 17:29:02 -04:00
|
|
|
fakeName := configID
|
2019-08-19 08:16:18 -04:00
|
|
|
fakeID := createConfig(ctx, t, c, fakeName, []byte("fake foo"), nil)
|
2018-07-13 17:29:02 -04:00
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
entries, err := c.ConfigList(ctx, types.ConfigListOptions{})
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Assert(t, is.Contains(configNamesFromList(entries), configName))
|
|
|
|
assert.Assert(t, is.Contains(configNamesFromList(entries), fakeName))
|
|
|
|
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigRemove(ctx, configID)
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
|
|
|
|
// Fake one will remain
|
2019-08-19 08:16:18 -04:00
|
|
|
entries, err = c.ConfigList(ctx, types.ConfigListOptions{})
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Assert(t, is.DeepEqual(configNamesFromList(entries), []string{fakeName}))
|
|
|
|
|
|
|
|
// Remove based on name prefix of the fake one
|
|
|
|
// (which is the same as the ID of foo one) should not work
|
|
|
|
// as search is only done based on:
|
|
|
|
// - Full ID
|
|
|
|
// - Full Name
|
|
|
|
// - Partial ID (prefix)
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigRemove(ctx, configID[:5])
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.Assert(t, nil != err)
|
2019-08-19 08:16:18 -04:00
|
|
|
entries, err = c.ConfigList(ctx, types.ConfigListOptions{})
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Assert(t, is.DeepEqual(configNamesFromList(entries), []string{fakeName}))
|
|
|
|
|
|
|
|
// Remove based on ID prefix of the fake one should succeed
|
2019-08-19 08:16:18 -04:00
|
|
|
err = c.ConfigRemove(ctx, fakeID[:5])
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.NilError(t, err)
|
2019-08-19 08:16:18 -04:00
|
|
|
entries, err = c.ConfigList(ctx, types.ConfigListOptions{})
|
2018-07-13 17:29:02 -04:00
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Assert(t, is.Equal(0, len(entries)))
|
|
|
|
}
|
|
|
|
|
2019-08-19 09:23:49 -04:00
|
|
|
func assertAttachedStream(t *testing.T, attach types.HijackedResponse, expect string) {
|
|
|
|
buf := bytes.NewBuffer(nil)
|
|
|
|
_, err := stdcopy.StdCopy(buf, buf, attach.Reader)
|
|
|
|
assert.NilError(t, err)
|
|
|
|
assert.Check(t, is.Contains(buf.String(), expect))
|
|
|
|
}
|
|
|
|
|
2018-07-13 17:29:02 -04:00
|
|
|
func configNamesFromList(entries []swarmtypes.Config) []string {
|
|
|
|
var values []string
|
|
|
|
for _, entry := range entries {
|
|
|
|
values = append(values, entry.Spec.Name)
|
|
|
|
}
|
|
|
|
sort.Strings(values)
|
|
|
|
return values
|
|
|
|
}
|