integration/auth_test.go
8d3e35cd
 package docker
 
 import (
 	"crypto/rand"
 	"encoding/hex"
c914abaf
 	"fmt"
8d88ea0c
 	"github.com/dotcloud/docker/registry"
8d3e35cd
 	"os"
 	"strings"
 	"testing"
 )
 
 // FIXME: these tests have an external dependency on a staging index hosted
 // on the docker.io infrastructure. That dependency should be removed.
 // - Unit tests should have no side-effect dependencies.
 // - Integration tests should have side-effects limited to the host environment being tested.
 
 func TestLogin(t *testing.T) {
887eeb2b
 	t.Skip("FIXME: please remove dependency on external services")
8d3e35cd
 	os.Setenv("DOCKER_INDEX_URL", "https://indexstaging-docker.dotcloud.com")
 	defer os.Setenv("DOCKER_INDEX_URL", "")
8d88ea0c
 	authConfig := &registry.AuthConfig{
c914abaf
 		Username:      "unittester",
 		Password:      "surlautrerivejetattendrai",
 		Email:         "noise+unittester@docker.com",
 		ServerAddress: "https://indexstaging-docker.dotcloud.com/v1/",
 	}
8d88ea0c
 	status, err := registry.Login(authConfig, nil)
8d3e35cd
 	if err != nil {
 		t.Fatal(err)
 	}
 	if status != "Login Succeeded" {
 		t.Fatalf("Expected status \"Login Succeeded\", found \"%s\" instead", status)
 	}
 }
 
 func TestCreateAccount(t *testing.T) {
887eeb2b
 	t.Skip("FIXME: please remove dependency on external services")
8d3e35cd
 	tokenBuffer := make([]byte, 16)
 	_, err := rand.Read(tokenBuffer)
 	if err != nil {
 		t.Fatal(err)
 	}
 	token := hex.EncodeToString(tokenBuffer)[:12]
 	username := "ut" + token
8d88ea0c
 	authConfig := &registry.AuthConfig{
c914abaf
 		Username:      username,
 		Password:      "test42",
 		Email:         fmt.Sprintf("docker-ut+%s@example.com", token),
 		ServerAddress: "https://indexstaging-docker.dotcloud.com/v1/",
 	}
8d88ea0c
 	status, err := registry.Login(authConfig, nil)
8d3e35cd
 	if err != nil {
 		t.Fatal(err)
 	}
c914abaf
 	expectedStatus := fmt.Sprintf(
 		"Account created. Please see the documentation of the registry %s for instructions how to activate it.",
 		authConfig.ServerAddress,
 	)
8d3e35cd
 	if status != expectedStatus {
 		t.Fatalf("Expected status: \"%s\", found \"%s\" instead.", expectedStatus, status)
 	}
 
8d88ea0c
 	status, err = registry.Login(authConfig, nil)
8d3e35cd
 	if err == nil {
 		t.Fatalf("Expected error but found nil instead")
 	}
 
 	expectedError := "Login: Account is not Active"
 
 	if !strings.Contains(err.Error(), expectedError) {
 		t.Fatalf("Expected message \"%s\" but found \"%s\" instead", expectedError, err)
 	}
 }