Merge pull request #785 from migmartri/784-malformed

Fixed URL parse
pull/791/head
Michelle Noorali 8 years ago
commit 1b060b1f5c

@ -5,6 +5,7 @@ import (
"errors"
"fmt"
"io/ioutil"
"net/url"
"os"
"path/filepath"
"strings"
@ -131,9 +132,10 @@ func (r *ChartRepository) Index() error {
created = time.Now().UTC().String()
}
url := filepath.Join(r.URL, key+".tgz")
url, _ := url.Parse(r.URL)
url.Path = filepath.Join(url.Path, key+".tgz")
entry := &ChartRef{Chartfile: *chartfile, Name: chartfile.Name, URL: url, Created: created, Checksum: hash, Removed: false}
entry := &ChartRef{Chartfile: *chartfile, Name: chartfile.Name, URL: url.String(), Created: created, Checksum: hash, Removed: false}
r.IndexFile.Entries[key] = entry

@ -90,7 +90,8 @@ func TestIndex(t *testing.T) {
if v.Created != created {
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")
// Created manually since we control the input of the test
expectedURL := testURL + "/" + chart + ".tgz"
if v.URL != expectedURL {
t.Errorf("Expected url in entry to be %s but got %s for chart: %s", expectedURL, v.URL, chart)
}

Loading…
Cancel
Save