blob: dab3c5fe39d5226ed145e9e2e0795e4a669b0766 [file] [log] [blame]
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package fetch
import (
"context"
"errors"
"io/ioutil"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"golang.org/x/pkgsite/internal/derrors"
"golang.org/x/pkgsite/internal/proxy"
)
func TestDirectoryModuleGetterEmpty(t *testing.T) {
g, err := NewDirectoryModuleGetter("", "testdata/has_go_mod")
if err != nil {
t.Fatal(err)
}
if want := "example.com/testmod"; g.modulePath != want {
t.Errorf("got %q, want %q", g.modulePath, want)
}
_, err = NewDirectoryModuleGetter("", "testdata/no_go_mod")
if !errors.Is(err, derrors.BadModule) {
t.Errorf("got %v, want BadModule", err)
}
}
func TestEscapedPath(t *testing.T) {
for _, test := range []struct {
path, version, suffix string
want string
}{
{
"m.com", "v1", "info",
"dir/m.com/@v/v1.info",
},
{
"github.com/aBc", "v2.3.4", "zip",
"dir/github.com/a!bc/@v/v2.3.4.zip",
},
} {
g := NewFSModuleGetter("dir").(*fsModuleGetter)
got, err := g.escapedPath(test.path, test.version, test.suffix)
if err != nil {
t.Fatal(err)
}
if got != test.want {
t.Errorf("%s, %s, %s: got %q, want %q", test.path, test.version, test.suffix, got, test.want)
}
}
}
func TestFSGetter(t *testing.T) {
ctx := context.Background()
const (
modulePath = "github.com/jackc/pgio"
version = "v1.0.0"
goMod = "module github.com/jackc/pgio\n\ngo 1.12\n"
)
ts, err := time.Parse(time.RFC3339, "2019-03-30T17:04:38Z")
if err != nil {
t.Fatal(err)
}
g := NewFSModuleGetter("testdata/modcache")
t.Run("info", func(t *testing.T) {
got, err := g.Info(ctx, modulePath, version)
if err != nil {
t.Fatal(err)
}
want := &proxy.VersionInfo{Version: version, Time: ts}
if !cmp.Equal(got, want) {
t.Errorf("got %+v, want %+v", got, want)
}
})
t.Run("mod", func(t *testing.T) {
got, err := g.Mod(ctx, modulePath, version)
if err != nil {
t.Fatal(err)
}
want := []byte(goMod)
if !cmp.Equal(got, want) {
t.Errorf("got %q, want %q", got, want)
}
})
t.Run("contentdir", func(t *testing.T) {
fsys, err := g.ContentDir(ctx, modulePath, version)
if err != nil {
t.Fatal(err)
}
// Just check that the go.mod file is there and has the right contents.
f, err := fsys.Open("go.mod")
if err != nil {
t.Fatal(err)
}
defer f.Close()
got, err := ioutil.ReadAll(f)
if err != nil {
t.Fatal(err)
}
want := []byte(goMod)
if !cmp.Equal(got, want) {
t.Errorf("got %q, want %q", got, want)
}
})
}