mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f257f77c6c
Signed-off-by: allencloud <allen.sun@daocloud.io>
118 lines
3.5 KiB
Go
118 lines
3.5 KiB
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"github.com/docker/docker/integration-cli/checker"
|
|
"github.com/go-check/check"
|
|
)
|
|
|
|
func (s *DockerSwarmSuite) TestAPISwarmConfigsEmptyList(c *check.C) {
|
|
d := s.AddDaemon(c, true, true)
|
|
|
|
configs := d.ListConfigs(c)
|
|
c.Assert(configs, checker.NotNil)
|
|
c.Assert(len(configs), checker.Equals, 0, check.Commentf("configs: %#v", configs))
|
|
}
|
|
|
|
func (s *DockerSwarmSuite) TestAPISwarmConfigsCreate(c *check.C) {
|
|
d := s.AddDaemon(c, true, true)
|
|
|
|
testName := "test_config"
|
|
id := d.CreateConfig(c, swarm.ConfigSpec{
|
|
Annotations: swarm.Annotations{
|
|
Name: testName,
|
|
},
|
|
Data: []byte("TESTINGDATA"),
|
|
})
|
|
c.Assert(id, checker.Not(checker.Equals), "", check.Commentf("configs: %s", id))
|
|
|
|
configs := d.ListConfigs(c)
|
|
c.Assert(len(configs), checker.Equals, 1, check.Commentf("configs: %#v", configs))
|
|
name := configs[0].Spec.Annotations.Name
|
|
c.Assert(name, checker.Equals, testName, check.Commentf("configs: %s", name))
|
|
}
|
|
|
|
func (s *DockerSwarmSuite) TestAPISwarmConfigsDelete(c *check.C) {
|
|
d := s.AddDaemon(c, true, true)
|
|
|
|
testName := "test_config"
|
|
id := d.CreateConfig(c, swarm.ConfigSpec{Annotations: swarm.Annotations{
|
|
Name: testName,
|
|
},
|
|
Data: []byte("TESTINGDATA"),
|
|
})
|
|
c.Assert(id, checker.Not(checker.Equals), "", check.Commentf("configs: %s", id))
|
|
|
|
config := d.GetConfig(c, id)
|
|
c.Assert(config.ID, checker.Equals, id, check.Commentf("config: %v", config))
|
|
|
|
d.DeleteConfig(c, config.ID)
|
|
status, out, err := d.SockRequest("GET", "/configs/"+id, nil)
|
|
c.Assert(err, checker.IsNil)
|
|
c.Assert(status, checker.Equals, http.StatusNotFound, check.Commentf("config delete: %s", string(out)))
|
|
}
|
|
|
|
func (s *DockerSwarmSuite) TestAPISwarmConfigsUpdate(c *check.C) {
|
|
d := s.AddDaemon(c, true, true)
|
|
|
|
testName := "test_config"
|
|
id := d.CreateConfig(c, swarm.ConfigSpec{
|
|
Annotations: swarm.Annotations{
|
|
Name: testName,
|
|
Labels: map[string]string{
|
|
"test": "test1",
|
|
},
|
|
},
|
|
Data: []byte("TESTINGDATA"),
|
|
})
|
|
c.Assert(id, checker.Not(checker.Equals), "", check.Commentf("configs: %s", id))
|
|
|
|
config := d.GetConfig(c, id)
|
|
c.Assert(config.ID, checker.Equals, id, check.Commentf("config: %v", config))
|
|
|
|
// test UpdateConfig with full ID
|
|
d.UpdateConfig(c, id, func(s *swarm.Config) {
|
|
s.Spec.Labels = map[string]string{
|
|
"test": "test1",
|
|
}
|
|
})
|
|
|
|
config = d.GetConfig(c, id)
|
|
c.Assert(config.Spec.Labels["test"], checker.Equals, "test1", check.Commentf("config: %v", config))
|
|
|
|
// test UpdateConfig with full name
|
|
d.UpdateConfig(c, config.Spec.Name, func(s *swarm.Config) {
|
|
s.Spec.Labels = map[string]string{
|
|
"test": "test2",
|
|
}
|
|
})
|
|
|
|
config = d.GetConfig(c, id)
|
|
c.Assert(config.Spec.Labels["test"], checker.Equals, "test2", check.Commentf("config: %v", config))
|
|
|
|
// test UpdateConfig with prefix ID
|
|
d.UpdateConfig(c, id[:1], func(s *swarm.Config) {
|
|
s.Spec.Labels = map[string]string{
|
|
"test": "test3",
|
|
}
|
|
})
|
|
|
|
config = d.GetConfig(c, id)
|
|
c.Assert(config.Spec.Labels["test"], checker.Equals, "test3", check.Commentf("config: %v", config))
|
|
|
|
// test UpdateConfig in updating Data which is not supported in daemon
|
|
// this test will produce an error in func UpdateConfig
|
|
config = d.GetConfig(c, id)
|
|
config.Spec.Data = []byte("TESTINGDATA2")
|
|
|
|
url := fmt.Sprintf("/configs/%s/update?version=%d", config.ID, config.Version.Index)
|
|
status, out, err := d.SockRequest("POST", url, config.Spec)
|
|
|
|
c.Assert(err, checker.IsNil, check.Commentf(string(out)))
|
|
c.Assert(status, checker.Equals, http.StatusBadRequest, check.Commentf("output: %q", string(out)))
|
|
}
|