TestSearchCmdOptions: remove cli-only checks
Both `--help` and `--no-trunc` are implemented in the CLI. There's
no need to verify them here because the integration tests use a
fixed version of the CLI.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit a78b9a3726
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
b13e995c78
commit
9557c7be8e
1 changed files with 0 additions and 5 deletions
|
@ -47,13 +47,8 @@ func (s *DockerSuite) TestSearchStarsOptionWithWrongParameter(c *check.C) {
|
||||||
func (s *DockerSuite) TestSearchCmdOptions(c *check.C) {
|
func (s *DockerSuite) TestSearchCmdOptions(c *check.C) {
|
||||||
testRequires(c, Network, DaemonIsLinux)
|
testRequires(c, Network, DaemonIsLinux)
|
||||||
|
|
||||||
out, _ := dockerCmd(c, "search", "--help")
|
|
||||||
assert.Assert(c, strings.Contains(out, "Usage:\tdocker search [OPTIONS] TERM"))
|
|
||||||
|
|
||||||
outSearchCmd, _ := dockerCmd(c, "search", "busybox")
|
outSearchCmd, _ := dockerCmd(c, "search", "busybox")
|
||||||
assert.Assert(c, strings.Count(outSearchCmd, "\n") > 3, outSearchCmd)
|
assert.Assert(c, strings.Count(outSearchCmd, "\n") > 3, outSearchCmd)
|
||||||
outSearchCmdNotrunc, _ := dockerCmd(c, "search", "--no-trunc=true", "busybox")
|
|
||||||
assert.Assert(c, len(outSearchCmd) <= len(outSearchCmdNotrunc), "The no-trunc option can't take effect.")
|
|
||||||
|
|
||||||
outSearchCmdautomated, _ := dockerCmd(c, "search", "--filter", "is-automated=true", "busybox") //The busybox is a busybox base image, not an AUTOMATED image.
|
outSearchCmdautomated, _ := dockerCmd(c, "search", "--filter", "is-automated=true", "busybox") //The busybox is a busybox base image, not an AUTOMATED image.
|
||||||
outSearchCmdautomatedSlice := strings.Split(outSearchCmdautomated, "\n")
|
outSearchCmdautomatedSlice := strings.Split(outSearchCmdautomated, "\n")
|
||||||
|
|
Loading…
Reference in a new issue