vain/vain_test.go

123 lines
1.9 KiB
Go
Raw Normal View History

2016-02-11 11:57:16 -08:00
package vain
2016-02-07 23:54:55 -08:00
import (
"fmt"
"testing"
)
func TestString(t *testing.T) {
2016-02-08 00:14:30 -08:00
p := Package{
Vcs: "git",
2016-02-15 01:10:14 -08:00
path: "mcquay.me/bps",
2016-02-07 23:54:55 -08:00
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 TestSupportedVcsStrings(t *testing.T) {
2016-02-07 23:54:55 -08:00
tests := []struct {
in string
want bool
2016-02-07 23:54:55 -08:00
}{
{"hg", true},
{"git", true},
{"bzr", true},
{"", false},
{"bazar", false},
{"mercurial", false},
2016-02-07 23:54:55 -08:00
}
for _, test := range tests {
if got, want := valid(test.in), test.want; got != want {
t.Errorf("%s: %t is incorrect validity", test.in, got)
2016-02-07 23:54:55 -08:00
}
}
}
func TestValid(t *testing.T) {
tests := []struct {
pkgs []Package
in string
want bool
}{
{
pkgs: []Package{},
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{
2016-02-15 01:10:14 -08:00
{path: "a/b/c"},
},
in: "a/b",
want: false,
},
{
pkgs: []Package{
{path: "name/db"},
{path: "name/lib"},
},
in: "name/foo",
want: true,
},
{
pkgs: []Package{
{path: "a"},
},
in: "a/b",
want: false,
},
{
pkgs: []Package{
{path: "foo"},
},
in: "foo/bar",
want: false,
},
{
pkgs: []Package{
2016-02-15 01:10:14 -08:00
{path: "foo/bar"},
{path: "foo/baz"},
},
in: "foo",
want: false,
},
{
pkgs: []Package{
2016-02-15 01:10:14 -08:00
{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)
}
}
}