diff options
author | zeripath <art27@cantab.net> | 2020-04-22 11:34:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 11:34:50 +0100 |
commit | 4ee70a9ec91148ffb9fc9d24e5dda47ec299bd61 (patch) | |
tree | a6557ad5bf0701e5bb8659d983d58fb059ab0e3b /modules/git/submodule_test.go | |
parent | 7e20f1cb5b3ef494676f3629e4980c8cdd64525b (diff) | |
download | gitea-4ee70a9ec91148ffb9fc9d24e5dda47ec299bd61.tar.gz gitea-4ee70a9ec91148ffb9fc9d24e5dda47ec299bd61.zip |
Fix submodule paths when AppSubUrl is not root (#11098)
Fix submodule paths when AppSubUrl is not root
Fix #11002
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'modules/git/submodule_test.go')
-rw-r--r-- | modules/git/submodule_test.go | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/git/submodule_test.go b/modules/git/submodule_test.go index fd6c2aa955..458c547dcb 100644 --- a/modules/git/submodule_test.go +++ b/modules/git/submodule_test.go @@ -17,21 +17,21 @@ func TestGetRefURL(t *testing.T) { parentPath string expect string }{ - {"git://github.com/user1/repo1", "/", "/", "http://github.com/user1/repo1"}, - {"https://localhost/user1/repo1.git", "/", "/", "https://localhost/user1/repo1"}, - {"http://localhost/user1/repo1.git", "/", "/", "http://localhost/user1/repo1"}, - {"git@github.com:user1/repo1.git", "/", "/", "http://github.com/user1/repo1"}, - {"ssh://git@git.zefie.net:2222/zefie/lge_g6_kernel_scripts.git", "/", "/", "http://git.zefie.net/zefie/lge_g6_kernel_scripts"}, - {"git@git.zefie.net:2222/zefie/lge_g6_kernel_scripts.git", "/", "/", "http://git.zefie.net/2222/zefie/lge_g6_kernel_scripts"}, - {"git@try.gitea.io:go-gitea/gitea", "https://try.gitea.io/go-gitea/gitea", "/", "https://try.gitea.io/go-gitea/gitea"}, - {"ssh://git@try.gitea.io:9999/go-gitea/gitea", "https://try.gitea.io/go-gitea/gitea", "/", "https://try.gitea.io/go-gitea/gitea"}, - {"git://git@try.gitea.io:9999/go-gitea/gitea", "https://try.gitea.io/go-gitea/log", "/", "https://try.gitea.io/go-gitea/gitea"}, - {"ssh://git@127.0.0.1:9999/go-gitea/gitea", "https://127.0.0.1:3000/go-gitea/log", "/", "https://127.0.0.1:3000/go-gitea/gitea"}, - {"https://gitea.com:3000/user1/repo1.git", "https://127.0.0.1:3000/go-gitea/gitea", "/", "https://gitea.com:3000/user1/repo1"}, - {"https://username:password@github.com/username/repository.git", "/", "/", "https://username:password@github.com/username/repository"}, + {"git://github.com/user1/repo1", "/", "user1/repo2", "http://github.com/user1/repo1"}, + {"https://localhost/user1/repo1.git", "/", "user1/repo2", "https://localhost/user1/repo1"}, + {"http://localhost/user1/repo1.git", "/", "owner/reponame", "http://localhost/user1/repo1"}, + {"git@github.com:user1/repo1.git", "/", "owner/reponame", "http://github.com/user1/repo1"}, + {"ssh://git@git.zefie.net:2222/zefie/lge_g6_kernel_scripts.git", "/", "zefie/lge_g6_kernel", "http://git.zefie.net/zefie/lge_g6_kernel_scripts"}, + {"git@git.zefie.net:2222/zefie/lge_g6_kernel_scripts.git", "/", "zefie/lge_g6_kernel", "http://git.zefie.net/2222/zefie/lge_g6_kernel_scripts"}, + {"git@try.gitea.io:go-gitea/gitea", "https://try.gitea.io/", "go-gitea/sdk", "https://try.gitea.io/go-gitea/gitea"}, + {"ssh://git@try.gitea.io:9999/go-gitea/gitea", "https://try.gitea.io/", "go-gitea/sdk", "https://try.gitea.io/go-gitea/gitea"}, + {"git://git@try.gitea.io:9999/go-gitea/gitea", "https://try.gitea.io/", "go-gitea/sdk", "https://try.gitea.io/go-gitea/gitea"}, + {"ssh://git@127.0.0.1:9999/go-gitea/gitea", "https://127.0.0.1:3000/", "go-gitea/sdk", "https://127.0.0.1:3000/go-gitea/gitea"}, + {"https://gitea.com:3000/user1/repo1.git", "https://127.0.0.1:3000/", "user/repo2", "https://gitea.com:3000/user1/repo1"}, + {"https://username:password@github.com/username/repository.git", "/", "username/repository2", "https://username:password@github.com/username/repository"}, {"somethingbad", "https://127.0.0.1:3000/go-gitea/gitea", "/", ""}, - {"git@localhost:user/repo", "https://localhost/user/repo2", "/", "https://localhost/user/repo"}, - {"../path/to/repo.git/", "https://localhost/user/repo2/src/branch/master/test", "/", "../path/to/repo.git/"}, + {"git@localhost:user/repo", "https://localhost/", "user2/repo1", "https://localhost/user/repo"}, + {"../path/to/repo.git/", "https://localhost/", "user/repo2", "https://localhost/user/path/to/repo.git"}, } for _, kase := range kases { |