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.
|
|
|
package chartutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"k8s.io/helm/pkg/proto/hapi/chart"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSave(t *testing.T) {
|
|
|
|
tmp, err := ioutil.TempDir("", "helm-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmp)
|
|
|
|
|
|
|
|
c := &chart.Chart{
|
|
|
|
Metadata: &chart.Metadata{
|
|
|
|
Name: "ahab",
|
|
|
|
Version: "1.2.3.4",
|
|
|
|
},
|
|
|
|
Values: &chart.Config{
|
|
|
|
Raw: "ship: Pequod",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
where, err := Save(c, tmp)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to save: %s", err)
|
|
|
|
}
|
|
|
|
if !strings.HasPrefix(where, tmp) {
|
|
|
|
t.Fatalf("Expected %q to start with %q", where, tmp)
|
|
|
|
}
|
|
|
|
if !strings.HasSuffix(where, ".tgz") {
|
|
|
|
t.Fatalf("Expected %q to end with .tgz", where)
|
|
|
|
}
|
|
|
|
|
|
|
|
c2, err := LoadFile(where)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if c2.Metadata.Name != c.Metadata.Name {
|
|
|
|
t.Fatalf("Expected chart archive to have %q, got %q", c.Metadata.Name, c2.Metadata.Name)
|
|
|
|
}
|
|
|
|
if c2.Values.Raw != c.Values.Raw {
|
|
|
|
t.Fatal("Values data did not match")
|
|
|
|
}
|
|
|
|
}
|