1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package client
- import (
- "os"
- "testing"
- "github.com/docker/docker/registry"
- registrytypes "github.com/docker/engine-api/types/registry"
- )
- func unsetENV() {
- os.Unsetenv("DOCKER_CONTENT_TRUST")
- os.Unsetenv("DOCKER_CONTENT_TRUST_SERVER")
- }
- func TestENVTrustServer(t *testing.T) {
- defer unsetENV()
- indexInfo := ®istrytypes.IndexInfo{Name: "testserver"}
- if err := os.Setenv("DOCKER_CONTENT_TRUST_SERVER", "https://notary-test.com:5000"); err != nil {
- t.Fatal("Failed to set ENV variable")
- }
- output, err := trustServer(indexInfo)
- expectedStr := "https://notary-test.com:5000"
- if err != nil || output != expectedStr {
- t.Fatalf("Expected server to be %s, got %s", expectedStr, output)
- }
- }
- func TestHTTPENVTrustServer(t *testing.T) {
- defer unsetENV()
- indexInfo := ®istrytypes.IndexInfo{Name: "testserver"}
- if err := os.Setenv("DOCKER_CONTENT_TRUST_SERVER", "http://notary-test.com:5000"); err != nil {
- t.Fatal("Failed to set ENV variable")
- }
- _, err := trustServer(indexInfo)
- if err == nil {
- t.Fatal("Expected error with invalid scheme")
- }
- }
- func TestOfficialTrustServer(t *testing.T) {
- indexInfo := ®istrytypes.IndexInfo{Name: "testserver", Official: true}
- output, err := trustServer(indexInfo)
- if err != nil || output != registry.NotaryServer {
- t.Fatalf("Expected server to be %s, got %s", registry.NotaryServer, output)
- }
- }
- func TestNonOfficialTrustServer(t *testing.T) {
- indexInfo := ®istrytypes.IndexInfo{Name: "testserver", Official: false}
- output, err := trustServer(indexInfo)
- expectedStr := "https://" + indexInfo.Name
- if err != nil || output != expectedStr {
- t.Fatalf("Expected server to be %s, got %s", expectedStr, output)
- }
- }
|