1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
package getter
import (
"testing"
)
func TestGitDetector(t *testing.T) {
cases := []struct {
Input string
Output string
}{
{
"git@github.com:hashicorp/foo.git",
"git::ssh://git@github.com/hashicorp/foo.git",
},
{
"git@github.com:org/project.git?ref=test-branch",
"git::ssh://git@github.com/org/project.git?ref=test-branch",
},
{
"git@github.com:hashicorp/foo.git//bar",
"git::ssh://git@github.com/hashicorp/foo.git//bar",
},
{
"git@github.com:hashicorp/foo.git?foo=bar",
"git::ssh://git@github.com/hashicorp/foo.git?foo=bar",
},
{
"git@github.xyz.com:org/project.git",
"git::ssh://git@github.xyz.com/org/project.git",
},
{
"git@github.xyz.com:org/project.git?ref=test-branch",
"git::ssh://git@github.xyz.com/org/project.git?ref=test-branch",
},
{
"git@github.xyz.com:org/project.git//module/a",
"git::ssh://git@github.xyz.com/org/project.git//module/a",
},
{
"git@github.xyz.com:org/project.git//module/a?ref=test-branch",
"git::ssh://git@github.xyz.com/org/project.git//module/a?ref=test-branch",
},
{
// Already in the canonical form, so no rewriting required
// When the ssh: protocol is used explicitly, we recognize it as
// URL form rather than SCP-like form, so the part after the colon
// is a port number, not part of the path.
"git::ssh://git@git.example.com:2222/hashicorp/foo.git",
"git::ssh://git@git.example.com:2222/hashicorp/foo.git",
},
}
pwd := "/pwd"
f := new(GitDetector)
ds := []Detector{f}
for _, tc := range cases {
t.Run(tc.Input, func(t *testing.T) {
output, err := Detect(tc.Input, pwd, ds)
if err != nil {
t.Fatalf("unexpected error: %s", err)
}
if output != tc.Output {
t.Errorf("wrong result\ninput: %s\ngot: %s\nwant: %s", tc.Input, output, tc.Output)
}
})
}
}
|