|
@@ -0,0 +1,68 @@
|
|
|
+// +build !windows
|
|
|
+
|
|
|
+package main
|
|
|
+
|
|
|
+import (
|
|
|
+ "encoding/json"
|
|
|
+
|
|
|
+ "github.com/docker/docker/api/types/swarm"
|
|
|
+ "github.com/docker/docker/pkg/integration/checker"
|
|
|
+ "github.com/go-check/check"
|
|
|
+)
|
|
|
+
|
|
|
+func (s *DockerSwarmSuite) TestSecretInspect(c *check.C) {
|
|
|
+ d := s.AddDaemon(c, true, true)
|
|
|
+
|
|
|
+ testName := "test_secret"
|
|
|
+ id := d.createSecret(c, swarm.SecretSpec{
|
|
|
+ swarm.Annotations{
|
|
|
+ Name: testName,
|
|
|
+ },
|
|
|
+ []byte("TESTINGDATA"),
|
|
|
+ })
|
|
|
+ c.Assert(id, checker.Not(checker.Equals), "", check.Commentf("secrets: %s", id))
|
|
|
+
|
|
|
+ secret := d.getSecret(c, id)
|
|
|
+ c.Assert(secret.Spec.Name, checker.Equals, testName)
|
|
|
+
|
|
|
+ out, err := d.Cmd("secret", "inspect", testName)
|
|
|
+ c.Assert(err, checker.IsNil, check.Commentf(out))
|
|
|
+
|
|
|
+ var secrets []swarm.Secret
|
|
|
+ c.Assert(json.Unmarshal([]byte(out), &secrets), checker.IsNil)
|
|
|
+ c.Assert(secrets, checker.HasLen, 1)
|
|
|
+}
|
|
|
+
|
|
|
+func (s *DockerSwarmSuite) TestSecretInspectMultiple(c *check.C) {
|
|
|
+ d := s.AddDaemon(c, true, true)
|
|
|
+
|
|
|
+ testNames := []string{
|
|
|
+ "test0",
|
|
|
+ "test1",
|
|
|
+ }
|
|
|
+ for _, n := range testNames {
|
|
|
+ id := d.createSecret(c, swarm.SecretSpec{
|
|
|
+ swarm.Annotations{
|
|
|
+ Name: n,
|
|
|
+ },
|
|
|
+ []byte("TESTINGDATA"),
|
|
|
+ })
|
|
|
+ c.Assert(id, checker.Not(checker.Equals), "", check.Commentf("secrets: %s", id))
|
|
|
+
|
|
|
+ secret := d.getSecret(c, id)
|
|
|
+ c.Assert(secret.Spec.Name, checker.Equals, n)
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ args := []string{
|
|
|
+ "secret",
|
|
|
+ "inspect",
|
|
|
+ }
|
|
|
+ args = append(args, testNames...)
|
|
|
+ out, err := d.Cmd(args...)
|
|
|
+ c.Assert(err, checker.IsNil, check.Commentf(out))
|
|
|
+
|
|
|
+ var secrets []swarm.Secret
|
|
|
+ c.Assert(json.Unmarshal([]byte(out), &secrets), checker.IsNil)
|
|
|
+ c.Assert(secrets, checker.HasLen, 2)
|
|
|
+}
|