From 4b3001e85aff2c51a69eec205023e32384bebbdf Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 10 Feb 2016 18:32:27 -0800 Subject: [PATCH] Windows CI: test-unit on pkg\plugins Signed-off-by: John Howard --- pkg/plugins/discovery_test.go | 58 ++-------------------------- pkg/plugins/discovery_unix_test.go | 61 ++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+), 54 deletions(-) create mode 100644 pkg/plugins/discovery_unix_test.go diff --git a/pkg/plugins/discovery_test.go b/pkg/plugins/discovery_test.go index 5610fe1e9f..38b73ef759 100644 --- a/pkg/plugins/discovery_test.go +++ b/pkg/plugins/discovery_test.go @@ -1,16 +1,13 @@ package plugins import ( - "fmt" "io/ioutil" - "net" "os" "path/filepath" - "reflect" "testing" ) -func setup(t *testing.T) (string, func()) { +func Setup(t *testing.T) (string, func()) { tmpdir, err := ioutil.TempDir("", "docker-test") if err != nil { t.Fatal(err) @@ -25,56 +22,8 @@ func setup(t *testing.T) (string, func()) { } } -func TestLocalSocket(t *testing.T) { - tmpdir, unregister := setup(t) - defer unregister() - - cases := []string{ - filepath.Join(tmpdir, "echo.sock"), - filepath.Join(tmpdir, "echo", "echo.sock"), - } - - for _, c := range cases { - if err := os.MkdirAll(filepath.Dir(c), 0755); err != nil { - t.Fatal(err) - } - - l, err := net.Listen("unix", c) - if err != nil { - t.Fatal(err) - } - - r := newLocalRegistry() - p, err := r.Plugin("echo") - if err != nil { - t.Fatal(err) - } - - pp, err := r.Plugin("echo") - if err != nil { - t.Fatal(err) - } - if !reflect.DeepEqual(p, pp) { - t.Fatalf("Expected %v, was %v\n", p, pp) - } - - if p.Name != "echo" { - t.Fatalf("Expected plugin `echo`, got %s\n", p.Name) - } - - addr := fmt.Sprintf("unix://%s", c) - if p.Addr != addr { - t.Fatalf("Expected plugin addr `%s`, got %s\n", addr, p.Addr) - } - if p.TLSConfig.InsecureSkipVerify != true { - t.Fatalf("Expected TLS verification to be skipped") - } - l.Close() - } -} - func TestFileSpecPlugin(t *testing.T) { - tmpdir, unregister := setup(t) + tmpdir, unregister := Setup(t) defer unregister() cases := []struct { @@ -83,6 +32,7 @@ func TestFileSpecPlugin(t *testing.T) { addr string fail bool }{ + // TODO Windows: Factor out the unix:// varients. {filepath.Join(tmpdir, "echo.spec"), "echo", "unix://var/lib/docker/plugins/echo.sock", false}, {filepath.Join(tmpdir, "echo", "echo.spec"), "echo", "unix://var/lib/docker/plugins/echo.sock", false}, {filepath.Join(tmpdir, "foo.spec"), "foo", "tcp://localhost:8080", false}, @@ -123,7 +73,7 @@ func TestFileSpecPlugin(t *testing.T) { } func TestFileJSONSpecPlugin(t *testing.T) { - tmpdir, unregister := setup(t) + tmpdir, unregister := Setup(t) defer unregister() p := filepath.Join(tmpdir, "example.json") diff --git a/pkg/plugins/discovery_unix_test.go b/pkg/plugins/discovery_unix_test.go new file mode 100644 index 0000000000..8166ae00b7 --- /dev/null +++ b/pkg/plugins/discovery_unix_test.go @@ -0,0 +1,61 @@ +// +build !windows + +package plugins + +import ( + "fmt" + "net" + "os" + "path/filepath" + "reflect" + "testing" +) + +func TestLocalSocket(t *testing.T) { + // TODO Windows: Enable a similar version for Windows named pipes + tmpdir, unregister := Setup(t) + defer unregister() + + cases := []string{ + filepath.Join(tmpdir, "echo.sock"), + filepath.Join(tmpdir, "echo", "echo.sock"), + } + + for _, c := range cases { + if err := os.MkdirAll(filepath.Dir(c), 0755); err != nil { + t.Fatal(err) + } + + l, err := net.Listen("unix", c) + if err != nil { + t.Fatal(err) + } + + r := newLocalRegistry() + p, err := r.Plugin("echo") + if err != nil { + t.Fatal(err) + } + + pp, err := r.Plugin("echo") + if err != nil { + t.Fatal(err) + } + if !reflect.DeepEqual(p, pp) { + t.Fatalf("Expected %v, was %v\n", p, pp) + } + + if p.Name != "echo" { + t.Fatalf("Expected plugin `echo`, got %s\n", p.Name) + } + + addr := fmt.Sprintf("unix://%s", c) + if p.Addr != addr { + t.Fatalf("Expected plugin addr `%s`, got %s\n", addr, p.Addr) + } + if p.TLSConfig.InsecureSkipVerify != true { + t.Fatalf("Expected TLS verification to be skipped") + } + l.Close() + } +}