distribution/registry_unit_test.go
8dce8e99
 package distribution
 
 import (
 	"net/http"
 	"net/http/httptest"
 	"os"
 	"strings"
 	"testing"
 
 	"github.com/Sirupsen/logrus"
2655954c
 	"github.com/docker/docker/reference"
8dce8e99
 	"github.com/docker/docker/registry"
 	"github.com/docker/docker/utils"
907407d0
 	"github.com/docker/engine-api/types"
 	registrytypes "github.com/docker/engine-api/types/registry"
572ce802
 	"golang.org/x/net/context"
8dce8e99
 )
 
 func TestTokenPassThru(t *testing.T) {
5b321e32
 	authConfig := &types.AuthConfig{
8dce8e99
 		RegistryToken: "mysecrettoken",
 	}
 	gotToken := false
 	handler := func(w http.ResponseWriter, r *http.Request) {
 		if strings.Contains(r.Header.Get("Authorization"), authConfig.RegistryToken) {
 			logrus.Debug("Detected registry token in auth header")
 			gotToken = true
 		}
 		if r.RequestURI == "/v2/" {
 			w.Header().Set("WWW-Authenticate", `Bearer realm="foorealm"`)
 			w.WriteHeader(401)
 		}
 	}
 	ts := httptest.NewServer(http.HandlerFunc(handler))
 	defer ts.Close()
 
 	tmp, err := utils.TestDirectory("")
 	if err != nil {
 		t.Fatal(err)
 	}
 	defer os.RemoveAll(tmp)
 
 	endpoint := registry.APIEndpoint{
 		Mirror:       false,
 		URL:          ts.URL,
 		Version:      2,
 		Official:     false,
 		TrimHostname: false,
 		TLSConfig:    nil,
 		//VersionHeader: "verheader",
 	}
 	n, _ := reference.ParseNamed("testremotename")
 	repoInfo := &registry.RepositoryInfo{
ffded61d
 		Named: n,
96c10098
 		Index: &registrytypes.IndexInfo{
8dce8e99
 			Name:     "testrepo",
 			Mirrors:  nil,
 			Secure:   false,
 			Official: false,
 		},
ffded61d
 		Official: false,
8dce8e99
 	}
 	imagePullConfig := &ImagePullConfig{
 		MetaHeaders: http.Header{},
 		AuthConfig:  authConfig,
 	}
572ce802
 	puller, err := newPuller(endpoint, repoInfo, imagePullConfig)
8dce8e99
 	if err != nil {
 		t.Fatal(err)
 	}
 	p := puller.(*v2Puller)
a57478d6
 	ctx := context.Background()
 	p.repo, _, err = NewV2Repository(ctx, p.repoInfo, p.endpoint, p.config.MetaHeaders, p.config.AuthConfig, "pull")
8dce8e99
 	if err != nil {
 		t.Fatal(err)
 	}
 
 	logrus.Debug("About to pull")
 	// We expect it to fail, since we haven't mock'd the full registry exchange in our handler above
 	tag, _ := reference.WithTag(n, "tag_goes_here")
a57478d6
 	_ = p.pullV2Repository(ctx, tag)
8dce8e99
 
 	if !gotToken {
 		t.Fatal("Failed to receive registry token")
 	}
 
 }