2015-09-15 19:01:49 -04:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/distribution/registry/api/errcode"
|
2015-09-23 19:42:08 -04:00
|
|
|
"github.com/docker/docker/api/server/httputils"
|
2015-09-15 19:01:49 -04:00
|
|
|
"github.com/docker/docker/errors"
|
2015-09-29 17:32:07 -04:00
|
|
|
"golang.org/x/net/context"
|
2015-09-15 19:01:49 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestVersionMiddleware(t *testing.T) {
|
|
|
|
handler := func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
2015-09-23 19:42:08 -04:00
|
|
|
if httputils.VersionFromContext(ctx) == "" {
|
2015-09-15 19:01:49 -04:00
|
|
|
t.Fatalf("Expected version, got empty string")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
h := versionMiddleware(handler)
|
|
|
|
|
|
|
|
req, _ := http.NewRequest("GET", "/containers/json", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
ctx := context.Background()
|
|
|
|
if err := h(ctx, resp, req, map[string]string{}); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestVersionMiddlewareWithErrors(t *testing.T) {
|
|
|
|
handler := func(ctx context.Context, w http.ResponseWriter, r *http.Request, vars map[string]string) error {
|
2015-09-23 19:42:08 -04:00
|
|
|
if httputils.VersionFromContext(ctx) == "" {
|
2015-09-15 19:01:49 -04:00
|
|
|
t.Fatalf("Expected version, got empty string")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
h := versionMiddleware(handler)
|
|
|
|
|
|
|
|
req, _ := http.NewRequest("GET", "/containers/json", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
vars := map[string]string{"version": "0.1"}
|
|
|
|
err := h(ctx, resp, req, vars)
|
|
|
|
if derr, ok := err.(errcode.Error); !ok || derr.ErrorCode() != errors.ErrorCodeOldClientVersion {
|
|
|
|
t.Fatalf("Expected ErrorCodeOldClientVersion, got %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
vars["version"] = "100000"
|
|
|
|
err = h(ctx, resp, req, vars)
|
|
|
|
if derr, ok := err.(errcode.Error); !ok || derr.ErrorCode() != errors.ErrorCodeNewerClientVersion {
|
|
|
|
t.Fatalf("Expected ErrorCodeNewerClientVersion, got %v", err)
|
|
|
|
}
|
|
|
|
}
|