| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- // Copyright 2022 The Gitea Authors. All rights reserved.
- // SPDX-License-Identifier: MIT
-
- package url
-
- import (
- "context"
- "net/http"
- "net/url"
- "testing"
-
- "code.gitea.io/gitea/modules/httplib"
- "code.gitea.io/gitea/modules/setting"
- "code.gitea.io/gitea/modules/test"
-
- "github.com/stretchr/testify/assert"
- )
-
- func TestParseGitURLs(t *testing.T) {
- kases := []struct {
- kase string
- expected *GitURL
- }{
- {
- kase: "git@127.0.0.1:go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "ssh",
- User: url.User("git"),
- Host: "127.0.0.1",
- Path: "go-gitea/gitea.git",
- },
- extraMark: 1,
- },
- },
- {
- kase: "git@[fe80:14fc:cec5:c174:d88%2510]:go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "ssh",
- User: url.User("git"),
- Host: "[fe80:14fc:cec5:c174:d88%10]",
- Path: "go-gitea/gitea.git",
- },
- extraMark: 1,
- },
- },
- {
- kase: "git@[::1]:go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "ssh",
- User: url.User("git"),
- Host: "[::1]",
- Path: "go-gitea/gitea.git",
- },
- extraMark: 1,
- },
- },
- {
- kase: "git@github.com:go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "ssh",
- User: url.User("git"),
- Host: "github.com",
- Path: "go-gitea/gitea.git",
- },
- extraMark: 1,
- },
- },
- {
- kase: "ssh://git@github.com/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "ssh",
- User: url.User("git"),
- Host: "github.com",
- Path: "/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
- {
- kase: "ssh://git@[::1]/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "ssh",
- User: url.User("git"),
- Host: "[::1]",
- Path: "/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
- {
- kase: "/repositories/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "file",
- Path: "/repositories/go-gitea/gitea.git",
- },
- extraMark: 2,
- },
- },
- {
- kase: "file:///repositories/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "file",
- Path: "/repositories/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
- {
- kase: "https://github.com/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "https",
- Host: "github.com",
- Path: "/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
- {
- kase: "https://git:git@github.com/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "https",
- Host: "github.com",
- User: url.UserPassword("git", "git"),
- Path: "/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
- {
- kase: "https://[fe80:14fc:cec5:c174:d88%2510]:20/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "https",
- Host: "[fe80:14fc:cec5:c174:d88%10]:20",
- Path: "/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
-
- {
- kase: "git://github.com/go-gitea/gitea.git",
- expected: &GitURL{
- URL: &url.URL{
- Scheme: "git",
- Host: "github.com",
- Path: "/go-gitea/gitea.git",
- },
- extraMark: 0,
- },
- },
- }
-
- for _, kase := range kases {
- t.Run(kase.kase, func(t *testing.T) {
- u, err := ParseGitURL(kase.kase)
- assert.NoError(t, err)
- assert.Equal(t, kase.expected.extraMark, u.extraMark)
- assert.Equal(t, *kase.expected, *u)
- })
- }
- }
-
- func TestParseRepositoryURL(t *testing.T) {
- defer test.MockVariableValue(&setting.AppURL, "https://localhost:3000")()
- defer test.MockVariableValue(&setting.SSH.Domain, "try.gitea.io")()
-
- ctxURL, _ := url.Parse("https://gitea")
- ctxReq := &http.Request{URL: ctxURL, Header: http.Header{}}
- ctxReq.Host = ctxURL.Host
- ctxReq.Header.Add("X-Forwarded-Proto", ctxURL.Scheme)
- ctx := context.WithValue(t.Context(), httplib.RequestContextKey, ctxReq)
- cases := []struct {
- input string
- ownerName, repoName, remaining string
- }{
- {input: "/user/repo"},
-
- {input: "https://localhost:3000/user/repo", ownerName: "user", repoName: "repo"},
- {input: "https://external:3000/user/repo"},
-
- {input: "https://localhost:3000/user/repo.git/other", ownerName: "user", repoName: "repo", remaining: "/other"},
-
- {input: "https://gitea/user/repo", ownerName: "user", repoName: "repo"},
- {input: "https://gitea:3333/user/repo"},
-
- {input: "ssh://try.gitea.io:2222/user/repo", ownerName: "user", repoName: "repo"},
- {input: "ssh://external:2222/user/repo"},
-
- {input: "git+ssh://user@try.gitea.io/user/repo.git", ownerName: "user", repoName: "repo"},
- {input: "git+ssh://user@external/user/repo.git"},
-
- {input: "root@try.gitea.io:user/repo.git", ownerName: "user", repoName: "repo"},
- {input: "root@gitea:user/repo.git", ownerName: "user", repoName: "repo"},
- {input: "root@external:user/repo.git"},
- }
-
- for _, c := range cases {
- t.Run(c.input, func(t *testing.T) {
- ret, _ := ParseRepositoryURL(ctx, c.input)
- assert.Equal(t, c.ownerName, ret.OwnerName)
- assert.Equal(t, c.repoName, ret.RepoName)
- assert.Equal(t, c.remaining, ret.RemainingPath)
- })
- }
-
- t.Run("WithSubpath", func(t *testing.T) {
- defer test.MockVariableValue(&setting.AppURL, "https://localhost:3000/subpath")()
- defer test.MockVariableValue(&setting.AppSubURL, "/subpath")()
- cases = []struct {
- input string
- ownerName, repoName, remaining string
- }{
- {input: "https://localhost:3000/user/repo"},
- {input: "https://localhost:3000/subpath/user/repo.git/other", ownerName: "user", repoName: "repo", remaining: "/other"},
-
- {input: "ssh://try.gitea.io:2222/user/repo", ownerName: "user", repoName: "repo"},
- {input: "ssh://external:2222/user/repo"},
-
- {input: "git+ssh://user@try.gitea.io/user/repo.git", ownerName: "user", repoName: "repo"},
- {input: "git+ssh://user@external/user/repo.git"},
-
- {input: "root@try.gitea.io:user/repo.git", ownerName: "user", repoName: "repo"},
- {input: "root@external:user/repo.git"},
- }
-
- for _, c := range cases {
- t.Run(c.input, func(t *testing.T) {
- ret, _ := ParseRepositoryURL(ctx, c.input)
- assert.Equal(t, c.ownerName, ret.OwnerName)
- assert.Equal(t, c.repoName, ret.RepoName)
- assert.Equal(t, c.remaining, ret.RemainingPath)
- })
- }
- })
- }
-
- func TestMakeRepositoryBaseLink(t *testing.T) {
- defer test.MockVariableValue(&setting.AppURL, "https://localhost:3000/subpath")()
- defer test.MockVariableValue(&setting.AppSubURL, "/subpath")()
-
- u, err := ParseRepositoryURL(t.Context(), "https://localhost:3000/subpath/user/repo.git")
- assert.NoError(t, err)
- assert.Equal(t, "/subpath/user/repo", MakeRepositoryWebLink(u))
-
- u, err = ParseRepositoryURL(t.Context(), "https://github.com/owner/repo.git")
- assert.NoError(t, err)
- assert.Equal(t, "https://github.com/owner/repo", MakeRepositoryWebLink(u))
-
- u, err = ParseRepositoryURL(t.Context(), "git@github.com:owner/repo.git")
- assert.NoError(t, err)
- assert.Equal(t, "https://github.com/owner/repo", MakeRepositoryWebLink(u))
-
- u, err = ParseRepositoryURL(t.Context(), "git+ssh://other:123/owner/repo.git")
- assert.NoError(t, err)
- assert.Equal(t, "https://other/owner/repo", MakeRepositoryWebLink(u))
- }
|