-
Notifications
You must be signed in to change notification settings - Fork 238
/
detect_test.go
95 lines (90 loc) · 1.81 KB
/
detect_test.go
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package getter
import (
"fmt"
"testing"
)
func TestDetect(t *testing.T) {
cases := []struct {
Input string
Pwd string
Output string
Err bool
}{
{"./foo", "/foo", "file:///foo/foo", false},
{"git::./foo", "/foo", "git::file:///foo/foo", false},
{
"git::github.com/hashicorp/foo",
"",
"git::https://github.com/hashicorp/foo.git",
false,
},
{
"./foo//bar",
"/foo",
"file:///foo/foo//bar",
false,
},
{
"git::github.com/hashicorp/foo//bar",
"",
"git::https://github.com/hashicorp/foo.git//bar",
false,
},
{
"git::https://github.com/hashicorp/consul.git",
"",
"git::https://github.com/hashicorp/consul.git",
false,
},
{
"git::https://[email protected]/foo/bar",
"",
"git::https://[email protected]/foo/bar",
false,
},
{
"git::https://[email protected]/foo/bar",
"/bar",
"git::https://[email protected]/foo/bar",
false,
},
{
"./foo/archive//*",
"/bar",
"file:///bar/foo/archive//*",
false,
},
// https://github.com/hashicorp/go-getter/pull/124
{
"git::ssh://[email protected]/dir1/dir2",
"",
"git::ssh://[email protected]/dir1/dir2",
false,
},
{
"git::[email protected]:dir1/dir2",
"/foo",
"git::ssh://[email protected]/dir1/dir2",
false,
},
{
"git::[email protected]:dir1/dir2",
"",
"git::ssh://[email protected]/dir1/dir2",
false,
},
}
for i, tc := range cases {
t.Run(fmt.Sprintf("%d %s", i, tc.Input), func(t *testing.T) {
output, err := Detect(tc.Input, tc.Pwd, Detectors)
if err != nil != tc.Err {
t.Fatalf("%d: bad err: %s", i, err)
}
if output != tc.Output {
t.Fatalf("%d: bad output: %s\nexpected: %s", i, output, tc.Output)
}
})
}
}