|
|
|
|
@ -10,20 +10,29 @@ import (
@@ -10,20 +10,29 @@ import (
|
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
func TestCommitSubmoduleLink(t *testing.T) { |
|
|
|
|
sf := NewCommitSubmoduleFile("git@github.com:user/repo.git", "aaaa") |
|
|
|
|
wl := (*CommitSubmoduleFile)(nil).SubmoduleWebLink(t.Context()) |
|
|
|
|
assert.Nil(t, wl) |
|
|
|
|
|
|
|
|
|
wl := sf.SubmoduleWebLink(t.Context()) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo/tree/aaaa", wl.CommitWebLink) |
|
|
|
|
t.Run("GitHubRepo", func(t *testing.T) { |
|
|
|
|
sf := NewCommitSubmoduleFile("git@github.com:user/repo.git", "aaaa") |
|
|
|
|
|
|
|
|
|
wl = sf.SubmoduleWebLink(t.Context(), "1111") |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo/tree/1111", wl.CommitWebLink) |
|
|
|
|
wl := sf.SubmoduleWebLink(t.Context()) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo/tree/aaaa", wl.CommitWebLink) |
|
|
|
|
|
|
|
|
|
wl = sf.SubmoduleWebLink(t.Context(), "1111", "2222") |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo/compare/1111...2222", wl.CommitWebLink) |
|
|
|
|
wl = sf.SubmoduleWebLink(t.Context(), "1111") |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo/tree/1111", wl.CommitWebLink) |
|
|
|
|
|
|
|
|
|
wl = (*CommitSubmoduleFile)(nil).SubmoduleWebLink(t.Context()) |
|
|
|
|
assert.Nil(t, wl) |
|
|
|
|
wl = sf.SubmoduleWebLink(t.Context(), "1111", "2222") |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "https://github.com/user/repo/compare/1111...2222", wl.CommitWebLink) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
t.Run("RelativePath", func(t *testing.T) { |
|
|
|
|
sf := NewCommitSubmoduleFile("../../user/repo", "aaaa") |
|
|
|
|
wl := sf.SubmoduleWebLink(t.Context()) |
|
|
|
|
assert.Equal(t, "../../user/repo", wl.RepoWebLink) |
|
|
|
|
assert.Equal(t, "../../user/repo/tree/aaaa", wl.CommitWebLink) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|