stephen mcquay
557717c138
I think I understand this now; the failure comes from here: https://golang.org/src/cmd/go/vcs.go#L818 and makes it so one can't both host: - github.com/foo - github.com/foo/bar which would have to clone the latter inside of the former. Fixes #1.
95 lines
1.5 KiB
Go
95 lines
1.5 KiB
Go
package vain
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestString(t *testing.T) {
|
|
p := Package{
|
|
Path: "mcquay.me/bps",
|
|
Repo: "https://s.mcquay.me/sm/bps",
|
|
}
|
|
got := fmt.Sprintf("%s", p)
|
|
want := `<meta name="go-import" content="mcquay.me/bps git https://s.mcquay.me/sm/bps">`
|
|
if got != want {
|
|
t.Errorf(
|
|
"incorrect converstion to meta; got %s, want %s",
|
|
got,
|
|
want,
|
|
)
|
|
}
|
|
}
|
|
|
|
func TestVcsStrings(t *testing.T) {
|
|
tests := []struct {
|
|
got string
|
|
want string
|
|
}{
|
|
{fmt.Sprintf("%+v", Git), "git"},
|
|
{fmt.Sprintf("%+v", Hg), "mercurial"},
|
|
}
|
|
for _, test := range tests {
|
|
if test.got != test.want {
|
|
t.Errorf("incorrect conversion of vain.Vcs -> string; got %q, want %q", test.got, test.want)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestValid(t *testing.T) {
|
|
tests := []struct {
|
|
pkgs []Package
|
|
in string
|
|
want bool
|
|
}{
|
|
{
|
|
pkgs: []Package{},
|
|
in: "bobo",
|
|
want: true,
|
|
},
|
|
{
|
|
pkgs: []Package{
|
|
{Path: ""},
|
|
},
|
|
in: "bobo",
|
|
want: true,
|
|
},
|
|
{
|
|
pkgs: []Package{
|
|
{Path: "bobo"},
|
|
},
|
|
in: "bobo",
|
|
want: false,
|
|
},
|
|
{
|
|
pkgs: []Package{
|
|
{Path: "a/b/c"},
|
|
},
|
|
in: "a/b/c",
|
|
want: false,
|
|
},
|
|
{
|
|
pkgs: []Package{
|
|
{Path: "foo/bar"},
|
|
{Path: "foo/baz"},
|
|
},
|
|
in: "foo",
|
|
want: false,
|
|
},
|
|
{
|
|
pkgs: []Package{
|
|
{Path: "bilbo"},
|
|
{Path: "frodo"},
|
|
},
|
|
in: "foo/bar/baz",
|
|
want: true,
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
got := Valid(test.in, test.pkgs)
|
|
if got != test.want {
|
|
t.Errorf("Incorrect testing of %q against %#v; got %t, want %t", test.in, test.pkgs, got, test.want)
|
|
}
|
|
}
|
|
}
|