|
|
@ -4,6 +4,7 @@ import (
|
|
|
|
"os"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"reflect"
|
|
|
|
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
)
|
|
|
@ -90,7 +91,7 @@ func TestIndex(t *testing.T) {
|
|
|
|
if v.Created != created {
|
|
|
|
if v.Created != created {
|
|
|
|
t.Errorf("Expected Created timestamp to be %s, but got %s for chart %s", created, v.Created, chart)
|
|
|
|
t.Errorf("Expected Created timestamp to be %s, but got %s for chart %s", created, v.Created, chart)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
expectedURL := filepath.Join(cr.URL, chart+".tgz")
|
|
|
|
expectedURL := strings.TrimSuffix(cr.URL, "/") + "/" + chart + ".tgz"
|
|
|
|
if v.URL != expectedURL {
|
|
|
|
if v.URL != expectedURL {
|
|
|
|
t.Errorf("Expected url in entry to be %s but got %s for chart: %s", expectedURL, v.URL, chart)
|
|
|
|
t.Errorf("Expected url in entry to be %s but got %s for chart: %s", expectedURL, v.URL, chart)
|
|
|
|
}
|
|
|
|
}
|
|
|
|