mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.2 KiB
74 lines
2.2 KiB
/*
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package registry
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/kubernetes/deployment-manager/common"
|
|
)
|
|
|
|
type testCase struct {
|
|
name string
|
|
exp *common.RegistryCredential
|
|
expErr error
|
|
}
|
|
|
|
func createMissingError(name string) error {
|
|
return fmt.Errorf("no such credential : %s", name)
|
|
}
|
|
|
|
func testGetCredential(t *testing.T, cp common.CredentialProvider, tc *testCase) {
|
|
actual, actualErr := cp.GetCredential(tc.name)
|
|
if !reflect.DeepEqual(actual, tc.exp) {
|
|
t.Fatalf("failed on: %s : expected %#v but got %#v", tc.name, tc.exp, actual)
|
|
}
|
|
if !reflect.DeepEqual(actualErr, tc.expErr) {
|
|
t.Fatalf("failed on: %s : expected error %#v but got %#v", tc.name, tc.expErr, actualErr)
|
|
}
|
|
}
|
|
|
|
func verifySetAndGetCredential(t *testing.T, cp common.CredentialProvider, tc *testCase) {
|
|
err := cp.SetCredential(tc.name, tc.exp)
|
|
if err != nil {
|
|
t.Fatalf("Failed to SetCredential on %s : %v", tc.name, err)
|
|
}
|
|
testGetCredential(t, cp, tc)
|
|
}
|
|
|
|
func TestNotExist(t *testing.T) {
|
|
cp := NewInmemCredentialProvider()
|
|
tc := &testCase{"nonexistent", nil, createMissingError("nonexistent")}
|
|
testGetCredential(t, cp, tc)
|
|
}
|
|
|
|
func TestSetAndGetApiToken(t *testing.T) {
|
|
cp := NewInmemCredentialProvider()
|
|
tc := &testCase{"testcredential", &common.RegistryCredential{APIToken: "some token here"}, nil}
|
|
verifySetAndGetCredential(t, cp, tc)
|
|
}
|
|
|
|
func TestSetAndGetBasicAuth(t *testing.T) {
|
|
cp := NewInmemCredentialProvider()
|
|
tc := &testCase{"testcredential",
|
|
&common.RegistryCredential{
|
|
BasicAuth: common.BasicAuthCredential{Username: "user", Password: "pass"}}, nil}
|
|
verifySetAndGetCredential(t, cp, tc)
|
|
}
|