mirror of
https://github.com/moby/buildkit.git
synced 2025-07-01 01:41:50 +03:00
120 lines
2.9 KiB
Go
120 lines
2.9 KiB
Go
package git
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestNewGitIdentifier(t *testing.T) {
|
|
tests := []struct {
|
|
url string
|
|
expected GitIdentifier
|
|
}{
|
|
{
|
|
url: "ssh://root@subdomain.example.hostname:2222/root/my/really/weird/path/foo.git",
|
|
expected: GitIdentifier{
|
|
Remote: "ssh://root@subdomain.example.hostname:2222/root/my/really/weird/path/foo.git",
|
|
},
|
|
},
|
|
{
|
|
url: "ssh://root@subdomain.example.hostname:2222/root/my/really/weird/path/foo.git#main",
|
|
expected: GitIdentifier{
|
|
Remote: "ssh://root@subdomain.example.hostname:2222/root/my/really/weird/path/foo.git",
|
|
Ref: "main",
|
|
},
|
|
},
|
|
{
|
|
url: "git@github.com:moby/buildkit.git",
|
|
expected: GitIdentifier{
|
|
Remote: "git@github.com:moby/buildkit.git",
|
|
},
|
|
},
|
|
{
|
|
url: "github.com/moby/buildkit.git#main",
|
|
expected: GitIdentifier{
|
|
Remote: "https://github.com/moby/buildkit.git",
|
|
Ref: "main",
|
|
},
|
|
},
|
|
{
|
|
url: "git://github.com/user/repo.git",
|
|
expected: GitIdentifier{
|
|
Remote: "git://github.com/user/repo.git",
|
|
},
|
|
},
|
|
{
|
|
url: "git://github.com/user/repo.git#mybranch:mydir/mysubdir/",
|
|
expected: GitIdentifier{
|
|
Remote: "git://github.com/user/repo.git",
|
|
Ref: "mybranch",
|
|
Subdir: "mydir/mysubdir/",
|
|
},
|
|
},
|
|
{
|
|
url: "git://github.com/user/repo.git#:mydir/mysubdir/",
|
|
expected: GitIdentifier{
|
|
Remote: "git://github.com/user/repo.git",
|
|
Subdir: "mydir/mysubdir/",
|
|
},
|
|
},
|
|
{
|
|
url: "https://github.com/user/repo.git",
|
|
expected: GitIdentifier{
|
|
Remote: "https://github.com/user/repo.git",
|
|
},
|
|
},
|
|
{
|
|
url: "https://github.com/user/repo.git#mybranch:mydir/mysubdir/",
|
|
expected: GitIdentifier{
|
|
Remote: "https://github.com/user/repo.git",
|
|
Ref: "mybranch",
|
|
Subdir: "mydir/mysubdir/",
|
|
},
|
|
},
|
|
{
|
|
url: "git@github.com:user/repo.git",
|
|
expected: GitIdentifier{
|
|
Remote: "git@github.com:user/repo.git",
|
|
},
|
|
},
|
|
{
|
|
url: "git@github.com:user/repo.git#mybranch:mydir/mysubdir/",
|
|
expected: GitIdentifier{
|
|
Remote: "git@github.com:user/repo.git",
|
|
Ref: "mybranch",
|
|
Subdir: "mydir/mysubdir/",
|
|
},
|
|
},
|
|
{
|
|
url: "ssh://github.com/user/repo.git",
|
|
expected: GitIdentifier{
|
|
Remote: "ssh://github.com/user/repo.git",
|
|
},
|
|
},
|
|
{
|
|
url: "ssh://github.com/user/repo.git#mybranch:mydir/mysubdir/",
|
|
expected: GitIdentifier{
|
|
Remote: "ssh://github.com/user/repo.git",
|
|
Ref: "mybranch",
|
|
Subdir: "mydir/mysubdir/",
|
|
},
|
|
},
|
|
{
|
|
url: "ssh://foo%40barcorp.com@github.com/user/repo.git#mybranch:mydir/mysubdir/",
|
|
expected: GitIdentifier{
|
|
Remote: "ssh://foo%40barcorp.com@github.com/user/repo.git",
|
|
Ref: "mybranch",
|
|
Subdir: "mydir/mysubdir/",
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.url, func(t *testing.T) {
|
|
gi, err := NewGitIdentifier(tt.url)
|
|
require.NoError(t, err)
|
|
require.Equal(t, tt.expected, *gi)
|
|
})
|
|
}
|
|
}
|