diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-07-19 18:49:28 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-07-23 17:18:04 +0200 |
commit | 7726bbdbcf8aa49548ecbcfc323b47b0ec034f54 (patch) | |
tree | a075e65a171ffdd78d700355234384376018aa0b /bridge/gitlab/config_test.go | |
parent | 3256b44b1bced56fba551a6d02042e109fe1e4b4 (diff) | |
download | git-bug-7726bbdbcf8aa49548ecbcfc323b47b0ec034f54.tar.gz git-bug-7726bbdbcf8aa49548ecbcfc323b47b0ec034f54.zip |
bridge/gitlab: add bridge config tests
Diffstat (limited to 'bridge/gitlab/config_test.go')
-rw-r--r-- | bridge/gitlab/config_test.go | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/bridge/gitlab/config_test.go b/bridge/gitlab/config_test.go new file mode 100644 index 00000000..248cdb66 --- /dev/null +++ b/bridge/gitlab/config_test.go @@ -0,0 +1,81 @@ +package gitlab + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestProjectPath(t *testing.T) { + type args struct { + url string + } + type want struct { + path string + err error + } + tests := []struct { + name string + args args + want want + }{ + { + name: "default url", + args: args{ + url: "https://gitlab.com/MichaelMure/git-bug", + }, + want: want{ + path: "MichaelMure/git-bug", + err: nil, + }, + }, + { + name: "multiple sub groups", + args: args{ + url: "https://gitlab.com/MichaelMure/group/subgroup/git-bug", + }, + want: want{ + path: "MichaelMure/group/subgroup/git-bug", + err: nil, + }, + }, + { + name: "default url with git extension", + args: args{ + url: "https://gitlab.com/MichaelMure/git-bug.git", + }, + want: want{ + path: "MichaelMure/git-bug", + err: nil, + }, + }, + { + name: "url with git protocol", + args: args{ + url: "git://gitlab.com/MichaelMure/git-bug.git", + }, + want: want{ + path: "MichaelMure/git-bug", + err: nil, + }, + }, + { + name: "ssh url", + args: args{ + url: "git@gitlab.com/MichaelMure/git-bug.git", + }, + want: want{ + path: "MichaelMure/git-bug", + err: nil, + }, + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + path, err := getProjectPath(tt.args.url) + assert.Equal(t, tt.want.path, path) + assert.Equal(t, tt.want.err, err) + }) + } +} |