|
|
|
/*
|
|
|
|
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 chartutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"helm.sh/helm/v3/pkg/chart"
|
|
|
|
"helm.sh/helm/v3/pkg/chart/loader"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreate(t *testing.T) {
|
|
|
|
tdir, err := ioutil.TempDir("", "helm-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tdir)
|
|
|
|
|
|
|
|
c, err := Create("foo", tdir)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
dir := filepath.Join(tdir, "foo")
|
|
|
|
|
|
|
|
mychart, err := loader.LoadDir(c)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to load newly created chart %q: %s", c, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if mychart.Name() != "foo" {
|
|
|
|
t.Errorf("Expected name to be 'foo', got %q", mychart.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, f := range []string{
|
|
|
|
ChartfileName,
|
|
|
|
DeploymentName,
|
|
|
|
HelpersName,
|
|
|
|
IgnorefileName,
|
|
|
|
NotesName,
|
|
|
|
ServiceAccountName,
|
|
|
|
ServiceName,
|
|
|
|
TemplatesDir,
|
|
|
|
TemplatesTestsDir,
|
|
|
|
TestConnectionName,
|
|
|
|
ValuesfileName,
|
|
|
|
} {
|
|
|
|
if _, err := os.Stat(filepath.Join(dir, f)); err != nil {
|
|
|
|
t.Errorf("Expected %s file: %s", f, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateFrom(t *testing.T) {
|
|
|
|
tdir, err := ioutil.TempDir("", "helm-")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tdir)
|
|
|
|
|
|
|
|
cf := &chart.Metadata{
|
|
|
|
APIVersion: chart.APIVersionV1,
|
|
|
|
Name: "foo",
|
|
|
|
Version: "0.1.0",
|
|
|
|
}
|
|
|
|
srcdir := "./testdata/mariner"
|
|
|
|
|
|
|
|
if err := CreateFrom(cf, tdir, srcdir); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
dir := filepath.Join(tdir, "foo")
|
|
|
|
c := filepath.Join(tdir, cf.Name)
|
|
|
|
mychart, err := loader.LoadDir(c)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to load newly created chart %q: %s", c, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if mychart.Name() != "foo" {
|
|
|
|
t.Errorf("Expected name to be 'foo', got %q", mychart.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, f := range []string{
|
|
|
|
ChartfileName,
|
|
|
|
ValuesfileName,
|
|
|
|
filepath.Join(TemplatesDir, "placeholder.tpl"),
|
|
|
|
} {
|
|
|
|
if _, err := os.Stat(filepath.Join(dir, f)); err != nil {
|
|
|
|
t.Errorf("Expected %s file: %s", f, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check each file to make sure <CHARTNAME> has been replaced
|
|
|
|
b, err := ioutil.ReadFile(filepath.Join(dir, f))
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Unable to read file %s: %s", f, err)
|
|
|
|
}
|
|
|
|
if bytes.Contains(b, []byte("<CHARTNAME>")) {
|
|
|
|
t.Errorf("File %s contains <CHARTNAME>", f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|