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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// SPDX-FileCopyrightText: 2017 Stefan Majewsky <majewsky@gmx.net>
// SPDX-License-Identifier: GPL-3.0-only
package rtree
import (
"fmt"
"path/filepath"
"testing"
)
var testIndexWithTwoRepos = Index{
Repos: []*Repo{
{
CheckoutPath: "github.com/foo/bar",
Remotes: []Remote{
{Name: "origin", URL: "https://github.com/foo/bar"},
},
},
{
CheckoutPath: "github.com/git/git",
Remotes: []Remote{
{Name: "origin", URL: "https://github.com/git/git"},
},
},
},
}
func TestGetExistingRepo(t *testing.T) {
Test{
Args: []string{"get", "gh:git/git"},
Index: testIndexWithTwoRepos,
ExpectOutput: filepath.Join(RootPath, "/github.com/git/git") + "\n",
}.Run(t)
}
func TestGetExistingRepoWithoutShortcut(t *testing.T) {
Test{
Args: []string{"get", "https://github.com/git/git"},
Index: testIndexWithTwoRepos,
ExpectOutput: filepath.Join(RootPath, "/github.com/git/git") + "\n",
}.Run(t)
}
func TestGetNewRepo(t *testing.T) {
target := filepath.Join(RootPath, "/github.com/another/repo")
for _, remoteURL := range []string{"gh:another/repo", "https://github.com/another/repo"} {
Test{
Args: []string{"get", remoteURL},
Index: testIndexWithTwoRepos,
ExpectOutput: target + "\n",
ExpectExecution: Recorded("git clone https://github.com/another/repo " + target),
ExpectIndex: &Index{
Repos: []*Repo{
{
CheckoutPath: "github.com/another/repo",
Remotes: []Remote{
//regardless of the remote URL used, we expect the contracted form to be used
{Name: "origin", URL: "https://github.com/another/repo"},
},
},
testIndexWithTwoRepos.Repos[0],
testIndexWithTwoRepos.Repos[1],
},
},
}.Run(t)
}
}
func TestGetNewForkAsRemote(t *testing.T) {
target := filepath.Join(RootPath, "/github.com/git/git")
Test{
Args: []string{"get", "https://example.com/git"},
Index: testIndexWithTwoRepos,
Input: fmt.Sprintf("add as remote to %s\nmyfork\n", target),
ExpectOutput: target + "\n",
ExpectError: fmt.Sprintf(
"Found possible fork candidates. What to do? -> add as remote to %s\n"+
"Existing remotes:\n\t(origin) gh:git/git\n"+
"Enter remote name for https://example.com/git: myfork\n",
target,
),
ExpectExecution: Recorded(
"@"+target+" git remote add myfork https://example.com/git",
"@"+target+" git remote update myfork",
),
ExpectIndex: &Index{
Repos: []*Repo{
testIndexWithTwoRepos.Repos[0],
{
CheckoutPath: "github.com/git/git",
Remotes: []Remote{
{Name: "origin", URL: "https://github.com/git/git"},
{Name: "myfork", URL: "https://example.com/git"},
},
},
},
},
}.Run(t)
}
func TestGetNewForkAsSeparate(t *testing.T) {
target := filepath.Join(RootPath, "/example.com/git")
Test{
Args: []string{"get", "https://example.com/git"},
Index: testIndexWithTwoRepos,
Input: fmt.Sprintf("clone to %s\n", target),
ExpectOutput: target + "\n",
ExpectError: fmt.Sprintf(
"Found possible fork candidates. What to do? -> clone to %s\n",
target,
),
ExpectExecution: Recorded("git clone https://example.com/git " + target),
ExpectIndex: &Index{
Repos: []*Repo{
{
CheckoutPath: "example.com/git",
Remotes: []Remote{
{Name: "origin", URL: "https://example.com/git"},
},
},
testIndexWithTwoRepos.Repos[0],
testIndexWithTwoRepos.Repos[1],
},
},
}.Run(t)
}
|