зеркало из https://github.com/mislav/hub.git
60 строки
1.8 KiB
Go
60 строки
1.8 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/bmizerany/assert"
|
|
"github.com/jingweno/gh/github"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
)
|
|
|
|
func TestTransformCloneArgs(t *testing.T) {
|
|
github.DefaultConfigFile = "./test_support/clone_gh"
|
|
config := github.Config{User: "jingweno", Token: "123"}
|
|
github.SaveConfig(&config)
|
|
defer os.RemoveAll(filepath.Dir(github.DefaultConfigFile))
|
|
|
|
args := NewArgs([]string{"clone", "foo/gh"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 1, args.ParamsSize())
|
|
assert.Equal(t, "git://github.com/foo/gh.git", args.FirstParam())
|
|
|
|
args = NewArgs([]string{"clone", "-p", "foo/gh"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 1, args.ParamsSize())
|
|
assert.Equal(t, "git@github.com:foo/gh.git", args.FirstParam())
|
|
|
|
args = NewArgs([]string{"clone", "jingweno/gh"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 1, args.ParamsSize())
|
|
assert.Equal(t, "git@github.com:jingweno/gh.git", args.FirstParam())
|
|
|
|
args = NewArgs([]string{"clone", "-p", "acl-services/devise-acl"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 1, args.ParamsSize())
|
|
assert.Equal(t, "git@github.com:acl-services/devise-acl.git", args.FirstParam())
|
|
|
|
args = NewArgs([]string{"clone", "jekyll_and_hyde"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 1, args.ParamsSize())
|
|
assert.Equal(t, "git@github.com:jingweno/jekyll_and_hyde.git", args.FirstParam())
|
|
|
|
args = NewArgs([]string{"clone", "-p", "jekyll_and_hyde"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 1, args.ParamsSize())
|
|
assert.Equal(t, "git@github.com:jingweno/jekyll_and_hyde.git", args.FirstParam())
|
|
|
|
args = NewArgs([]string{"clone", "git://github.com/jingweno/gh", "gh"})
|
|
transformCloneArgs(args)
|
|
|
|
assert.Equal(t, 2, args.ParamsSize())
|
|
assert.Equal(t, "git://github.com/jingweno/gh", args.FirstParam())
|
|
assert.Equal(t, "gh", args.GetParam(1))
|
|
}
|