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.
104 lines
2.3 KiB
104 lines
2.3 KiB
/*
|
|
Copyright The Helm Authors.
|
|
|
|
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 main
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"k8s.io/helm/pkg/helm"
|
|
"k8s.io/helm/pkg/repo"
|
|
"k8s.io/helm/pkg/repo/repotest"
|
|
)
|
|
|
|
var testName = "test-name"
|
|
|
|
func TestRepoAddCmd(t *testing.T) {
|
|
srv, thome, err := repotest.NewTempServer("testdata/testserver/*.*")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
cleanup := resetEnv()
|
|
defer func() {
|
|
srv.Stop()
|
|
os.RemoveAll(thome.String())
|
|
cleanup()
|
|
}()
|
|
if err := ensureTestHome(thome, t); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
settings.Home = thome
|
|
|
|
tests := []releaseCase{
|
|
{
|
|
name: "add a repository",
|
|
args: []string{testName, srv.URL()},
|
|
expected: "\"" + testName + "\" has been added to your repositories",
|
|
},
|
|
}
|
|
|
|
runReleaseCases(t, tests, func(c *helm.FakeClient, out io.Writer) *cobra.Command {
|
|
return newRepoAddCmd(out)
|
|
})
|
|
}
|
|
|
|
func TestRepoAdd(t *testing.T) {
|
|
ts, thome, err := repotest.NewTempServer("testdata/testserver/*.*")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
cleanup := resetEnv()
|
|
hh := thome
|
|
defer func() {
|
|
ts.Stop()
|
|
os.RemoveAll(thome.String())
|
|
cleanup()
|
|
}()
|
|
if err := ensureTestHome(hh, t); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
settings.Home = thome
|
|
|
|
if err := addRepository(testName, ts.URL(), "", "", hh, "", "", "", true); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
f, err := repo.LoadRepositoriesFile(hh.RepositoryFile())
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if !f.Has(testName) {
|
|
t.Errorf("%s was not successfully inserted into %s", testName, hh.RepositoryFile())
|
|
}
|
|
|
|
if err := addRepository(testName, ts.URL(), "", "", hh, "", "", "", false); err != nil {
|
|
t.Errorf("Repository was not updated: %s", err)
|
|
}
|
|
|
|
if err := addRepository(testName, ts.URL(), "", "", hh, "", "", "", false); err != nil {
|
|
t.Errorf("Duplicate repository name was added")
|
|
}
|
|
}
|