Skip to content

Commit

Permalink
e2e: add new test package "global" with TestTLSVerify
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Vass <tibor@docker.com>
  • Loading branch information
Tibor Vass committed Nov 12, 2019
1 parent 37f9a88 commit a005f3a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
24 changes: 24 additions & 0 deletions e2e/global/cli_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package global

import (
"testing"

"gotest.tools/skip"
"gotest.tools/icmd"
"github.com/docker/cli/internal/test/environment"
)

func TestTLSVerify(t *testing.T) {
// Remote daemons use TLS and this test is not applicable when TLS is required.
skip.If(t, environment.RemoteDaemon())

icmd.RunCmd(icmd.Command("docker", "ps")).Assert(t, icmd.Success)

// Regardless of whether we specify true or false we need to
// test to make sure tls is turned on if --tlsverify is specified at all
result := icmd.RunCmd(icmd.Command("docker", "--tlsverify=false", "ps"))
result.Assert(t, icmd.Expected{ExitCode: 1, Err: "unable to resolve docker endpoint:"})

result = icmd.RunCmd(icmd.Command("docker", "--tlsverify=true", "ps"))
result.Assert(t, icmd.Expected{ExitCode: 1, Err: "ca.pem"})
}
17 changes: 17 additions & 0 deletions e2e/global/main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package global

import (
"fmt"
"os"
"testing"

"github.com/docker/cli/internal/test/environment"
)

func TestMain(m *testing.M) {
if err := environment.Setup(); err != nil {
fmt.Println(err.Error())
os.Exit(3)
}
os.Exit(m.Run())
}

0 comments on commit a005f3a

Please sign in to comment.