mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
907407d0b2
Signed-off-by: David Calavera <david.calavera@gmail.com>
56 lines
1.6 KiB
Go
56 lines
1.6 KiB
Go
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)
|
|
}
|
|
}
|