mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
33968e6c7d
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
68 lines
1.6 KiB
Go
68 lines
1.6 KiB
Go
// +build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/docker/docker/api/types/swarm"
|
|
"github.com/docker/docker/integration-cli/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)
|
|
}
|