@@ -17,21 +17,21 @@ func TestGetRefURL(t *testing.T) {
17
17
parentPath string
18
18
expect string
19
19
}{
20
- {"git://github.com/user1/repo1" , "/" , "/ " , "http://github.com/user1/repo1" },
21
- {"https://localhost/user1/repo1.git" , "/" , "/ " , "https://localhost/user1/repo1" },
22
- {"http://localhost/user1/repo1.git" , "/" , "/ " , "http://localhost/user1/repo1" },
23
- {
"[email protected] :user1/repo1.git" ,
"/" ,
"/ " ,
"http://github.com/user1/repo1" },
24
- {
"ssh://[email protected] :2222/zefie/lge_g6_kernel_scripts.git" ,
"/" ,
"/ " ,
"http://git.zefie.net/zefie/lge_g6_kernel_scripts" },
25
- {
"[email protected] :2222/zefie/lge_g6_kernel_scripts.git" ,
"/" ,
"/ " ,
"http://git.zefie.net/2222/zefie/lge_g6_kernel_scripts" },
26
- {
"[email protected] :go-gitea/gitea" ,
"https://try.gitea.io/go-gitea/gitea " ,
"/ " ,
"https://try.gitea.io/go-gitea/gitea" },
27
- {
"ssh://[email protected] :9999/go-gitea/gitea" ,
"https://try.gitea.io/go-gitea/gitea " ,
"/ " ,
"https://try.gitea.io/go-gitea/gitea" },
28
- {
"git://[email protected] :9999/go-gitea/gitea" ,
"https://try.gitea.io/go-gitea/log " ,
"/ " ,
"https://try.gitea.io/go-gitea/gitea" },
29
- {
"ssh://[email protected] :9999/go-gitea/gitea" ,
"https://127.0.0.1:3000/go-gitea/log " ,
"/ " ,
"https://127.0.0.1:3000/go-gitea/gitea" },
30
- {"https://gitea.com:3000/user1/repo1.git" , "https://127.0.0.1:3000/go-gitea/gitea " , "/ " , "https://gitea.com:3000/user1/repo1" },
31
- {
"https://username:[email protected] /username/repository.git" ,
"/" ,
"/ " ,
"https://username:[email protected] /username/repository" },
20
+ {"git://github.com/user1/repo1" , "/" , "user1/repo2 " , "http://github.com/user1/repo1" },
21
+ {"https://localhost/user1/repo1.git" , "/" , "user1/repo2 " , "https://localhost/user1/repo1" },
22
+ {"http://localhost/user1/repo1.git" , "/" , "owner/reponame " , "http://localhost/user1/repo1" },
23
+ {
"[email protected] :user1/repo1.git" ,
"/" ,
"owner/reponame " ,
"http://github.com/user1/repo1" },
24
+ {
"ssh://[email protected] :2222/zefie/lge_g6_kernel_scripts.git" ,
"/" ,
"zefie/lge_g6_kernel " ,
"http://git.zefie.net/zefie/lge_g6_kernel_scripts" },
25
+ {
"[email protected] :2222/zefie/lge_g6_kernel_scripts.git" ,
"/" ,
"zefie/lge_g6_kernel " ,
"http://git.zefie.net/2222/zefie/lge_g6_kernel_scripts" },
26
+ {
"[email protected] :go-gitea/gitea" ,
"https://try.gitea.io/" ,
"go-gitea/sdk " ,
"https://try.gitea.io/go-gitea/gitea" },
27
+ {
"ssh://[email protected] :9999/go-gitea/gitea" ,
"https://try.gitea.io/" ,
"go-gitea/sdk " ,
"https://try.gitea.io/go-gitea/gitea" },
28
+ {
"git://[email protected] :9999/go-gitea/gitea" ,
"https://try.gitea.io/" ,
"go-gitea/sdk " ,
"https://try.gitea.io/go-gitea/gitea" },
29
+ {
"ssh://[email protected] :9999/go-gitea/gitea" ,
"https://127.0.0.1:3000/" ,
"go-gitea/sdk " ,
"https://127.0.0.1:3000/go-gitea/gitea" },
30
+ {"https://gitea.com:3000/user1/repo1.git" , "https://127.0.0.1:3000/" , "user/repo2 " , "https://gitea.com:3000/user1/repo1" },
31
+ {
"https://username:[email protected] /username/repository.git" ,
"/" ,
"username/repository2 " ,
"https://username:[email protected] /username/repository" },
32
32
{"somethingbad" , "https://127.0.0.1:3000/go-gitea/gitea" , "/" , "" },
33
- {"git@localhost:user/repo" , "https://localhost/user/repo2 " , "/ " , "https://localhost/user/repo" },
34
- {"../path/to/repo.git/" , "https://localhost/user/repo2/src/branch/master/test " , "/ " , "../ path/to/repo.git/ " },
33
+ {"git@localhost:user/repo" , "https://localhost/" , "user2/repo1 " , "https://localhost/user/repo" },
34
+ {"../path/to/repo.git/" , "https://localhost/" , "user/repo2 " , "https://localhost/user/ path/to/repo.git" },
35
35
}
36
36
37
37
for _ , kase := range kases {
0 commit comments