mirror of https://github.com/helm/helm
This is to future-proof charts, and also be consistent with repo and index YAML files. Closes #1264pull/1269/head
parent
322b914be0
commit
e0227c7510
@ -0,0 +1,71 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2016 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 main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"io/ioutil"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"k8s.io/helm/pkg/chartutil"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestCreateCmd(t *testing.T) {
|
||||||
|
cname := "testchart"
|
||||||
|
// Make a temp dir
|
||||||
|
tdir, err := ioutil.TempDir("", "helm-create-")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os.Remove(tdir)
|
||||||
|
|
||||||
|
// CD into it
|
||||||
|
pwd, err := os.Getwd()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
if err := os.Chdir(tdir); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
defer os.Chdir(pwd)
|
||||||
|
|
||||||
|
// Run a create
|
||||||
|
cmd := newCreateCmd(os.Stdout)
|
||||||
|
if err := cmd.RunE(cmd, []string{cname}); err != nil {
|
||||||
|
t.Errorf("Failed to run create: %s", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// Test that the chart is there
|
||||||
|
if fi, err := os.Stat(cname); err != nil {
|
||||||
|
t.Fatalf("no chart directory: %s", err)
|
||||||
|
} else if !fi.IsDir() {
|
||||||
|
t.Fatalf("chart is not directory")
|
||||||
|
}
|
||||||
|
|
||||||
|
c, err := chartutil.LoadDir(cname)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if c.Metadata.Name != cname {
|
||||||
|
t.Errorf("Expected %q name, got %q", cname, c.Metadata.Name)
|
||||||
|
}
|
||||||
|
if c.Metadata.ApiVersion != chartutil.ApiVersionV1 {
|
||||||
|
t.Errorf("Wrong API version: %q", c.Metadata.ApiVersion)
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue