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.
168 lines
3.9 KiB
168 lines
3.9 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 (
|
|
"bytes"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"helm.sh/helm/v3/internal/test/ensure"
|
|
"helm.sh/helm/v3/pkg/repo"
|
|
)
|
|
|
|
func TestRepoIndexCmd(t *testing.T) {
|
|
|
|
dir := ensure.TempDir(t)
|
|
|
|
comp := filepath.Join(dir, "compressedchart-0.1.0.tgz")
|
|
if err := linkOrCopy("testdata/testcharts/compressedchart-0.1.0.tgz", comp); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
comp2 := filepath.Join(dir, "compressedchart-0.2.0.tgz")
|
|
if err := linkOrCopy("testdata/testcharts/compressedchart-0.2.0.tgz", comp2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
buf := bytes.NewBuffer(nil)
|
|
c := newRepoIndexCmd(buf)
|
|
|
|
if err := c.RunE(c, []string{dir}); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
destIndex := filepath.Join(dir, "index.yaml")
|
|
|
|
index, err := repo.LoadIndexFile(destIndex)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if len(index.Entries) != 1 {
|
|
t.Errorf("expected 1 entry, got %d: %#v", len(index.Entries), index.Entries)
|
|
}
|
|
|
|
vs := index.Entries["compressedchart"]
|
|
if len(vs) != 2 {
|
|
t.Errorf("expected 2 versions, got %d: %#v", len(vs), vs)
|
|
}
|
|
|
|
expectedVersion := "0.2.0"
|
|
if vs[0].Version != expectedVersion {
|
|
t.Errorf("expected %q, got %q", expectedVersion, vs[0].Version)
|
|
}
|
|
|
|
// Test with `--merge`
|
|
|
|
// Remove first two charts.
|
|
if err := os.Remove(comp); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := os.Remove(comp2); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
// Add a new chart and a new version of an existing chart
|
|
if err := linkOrCopy("testdata/testcharts/reqtest-0.1.0.tgz", filepath.Join(dir, "reqtest-0.1.0.tgz")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if err := linkOrCopy("testdata/testcharts/compressedchart-0.3.0.tgz", filepath.Join(dir, "compressedchart-0.3.0.tgz")); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
c.ParseFlags([]string{"--merge", destIndex})
|
|
if err := c.RunE(c, []string{dir}); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
index, err = repo.LoadIndexFile(destIndex)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if len(index.Entries) != 2 {
|
|
t.Errorf("expected 2 entries, got %d: %#v", len(index.Entries), index.Entries)
|
|
}
|
|
|
|
vs = index.Entries["compressedchart"]
|
|
if len(vs) != 3 {
|
|
t.Errorf("expected 3 versions, got %d: %#v", len(vs), vs)
|
|
}
|
|
|
|
expectedVersion = "0.3.0"
|
|
if vs[0].Version != expectedVersion {
|
|
t.Errorf("expected %q, got %q", expectedVersion, vs[0].Version)
|
|
}
|
|
|
|
// test that index.yaml gets generated on merge even when it doesn't exist
|
|
if err := os.Remove(destIndex); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
c.ParseFlags([]string{"--merge", destIndex})
|
|
if err := c.RunE(c, []string{dir}); err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
index, err = repo.LoadIndexFile(destIndex)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// verify it didn't create an empty index.yaml and the merged happened
|
|
if len(index.Entries) != 2 {
|
|
t.Errorf("expected 2 entries, got %d: %#v", len(index.Entries), index.Entries)
|
|
}
|
|
|
|
vs = index.Entries["compressedchart"]
|
|
if len(vs) != 1 {
|
|
t.Errorf("expected 1 versions, got %d: %#v", len(vs), vs)
|
|
}
|
|
|
|
expectedVersion = "0.3.0"
|
|
if vs[0].Version != expectedVersion {
|
|
t.Errorf("expected %q, got %q", expectedVersion, vs[0].Version)
|
|
}
|
|
}
|
|
|
|
func linkOrCopy(old, new string) error {
|
|
if err := os.Link(old, new); err != nil {
|
|
return copyFile(old, new)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func copyFile(dst, src string) error {
|
|
i, err := os.Open(dst)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer i.Close()
|
|
|
|
o, err := os.Create(src)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer o.Close()
|
|
|
|
_, err = io.Copy(o, i)
|
|
|
|
return err
|
|
}
|