drastically improve test coverage

This commit is contained in:
Paul Irish 2017-06-15 16:53:31 -07:00
parent f0298c9640
commit d1fd269d2c
2 changed files with 159 additions and 15 deletions

View file

@ -153,7 +153,7 @@ esac
# if testing, log results to stdout. otherwise, mute the output
if [ "$BATS_CWD" ]; then
open=printf
open=echo
else
exec &>/dev/null
fi;

View file

@ -1,34 +1,173 @@
#!/usr/bin/env bats
load 'test_helper/bats-support/load'
load 'test_helper/bats-assert/load'
load "test_helper/bats-support/load"
load "test_helper/bats-assert/load"
foldername="sandboxrepo"
setup() {
# creates git repo with this setup:
# git remote set-url origin git@github.com:user/repo.git
# git checkout master
create_git_sandbox
}
@test "git-open gh basic" {
##
## GitHub
##
@test "gh basic" {
git remote set-url origin "git@github.com:user/repo.git"
git checkout -B "master"
run ../git-open
assert_output 'https://github.com/user/repo/'
assert_output "https://github.com/user/repo/"
}
@test "git-open gh branch" {
git checkout --force -b mybranch
@test "gh branch" {
git remote set-url origin "git@github.com:user/repo.git"
git checkout -B "mybranch"
run ../git-open
assert_output 'https://github.com/user/repo/tree/mybranch'
assert_output "https://github.com/user/repo/tree/mybranch"
}
@test "gh non-origin remote" {
git remote set-url origin "git@github.com:user/repo.git"
git remote add upstream "git@github.com:upstreamorg/repo.git"
run ../git-open "upstream"
assert_output "https://github.com/upstreamorg/repo/"
git checkout -B "mybranch"
run ../git-open "upstream" "otherbranch"
assert_output "https://github.com/upstreamorg/repo/tree/otherbranch"
}
@test "gh without git user" {
# https://github.com/paulirish/git-open/pull/63
git remote set-url origin "github.com:paulirish/git-open.git"
run ../git-open
assert_output "https://github.com/paulirish/git-open/"
}
@test "gh ssh origin" {
git remote set-url origin "ssh://git@github.com/user/repo"
run ../git-open
assert_output "https://github.com/user/repo/"
# https://github.com/paulirish/git-open/pull/30
git remote set-url origin "ssh://git@github.com/user/repo.git"
run ../git-open
assert_output "https://github.com/user/repo/"
}
@test "gh: git open issue" {
# https://github.com/paulirish/git-open/pull/46
git remote set-url origin "github.com:paulirish/git-open.git"
git checkout -B "issues/#12"
run ../git-open "issue"
assert_output "https://github.com/paulirish/git-open/issues/12"
}
@test "gh gist" {
git remote set-url origin "git@gist.github.com:2d84a6db1b41b4020685.git"
run ../git-open
assert_output "https://gist.github.com/2d84a6db1b41b4020685/"
}
@test "# and % in branch names are URL encoded" {
# https://github.com/paulirish/git-open/pull/24
git checkout -B "issue-#42"
run ../git-open
assert_output "https://github.com/paulirish/git-open/tree/issue-%2342"
git checkout -B "just-50%"
run ../git-open
assert_output "https://github.com/paulirish/git-open/tree/just-50%25"
}
##
## Bitbucket
##
@test "bitbucket basic" {
git remote set-url origin "git@bitbucket.org:paulirish/crbug-extension.git"
run ../git-open
assert_output --partial "https://bitbucket.org/paulirish/crbug-extension/"
}
@test "bitbucket non-origin remote" {
# https://github.com/paulirish/git-open/pull/4
git remote add bbclone "git@bitbucket.org:rwhitbeck/git-open.git"
run ../git-open "bbclone"
assert_output --partial "https://bitbucket.org/rwhitbeck/git-open/"
assert_output --partial "//?at=master"
}
@test "bitbucket branch" {
git remote set-url origin "https://paulirish@bitbucket.org/malb/lwe-estimator.git"
git checkout -B "new-bkw"
run ../git-open
assert_output --partial "https://bitbucket.org/malb/lwe-estimator/src/"
assert_output --partial "?at=new-bkw"
}
@test "bitbucket ssh:// clone urls" {
# https://github.com/paulirish/git-open/pull/36
git remote set-url origin "ssh://git@bitbucket.org/lbesson/bin.git"
run ../git-open
assert_output --partial "https://bitbucket.org/lbesson/bin/"
assert_output --partial "//?at=master"
}
@test "no username@bitbucket.org in final url" {
# https://github.com/paulirish/git-open/pull/69
git remote set-url origin "https://trend_rand@bitbucket.org/trend_rand/test-repo.git"
run ../git-open
refute_output --partial "@"
}
##
## GitLab
##
@test "gitlab seperate domains" {
# https://github.com/paulirish/git-open/pull/56
git remote set-url origin "git@git.example.com:namespace/project.git"
git config "gitopen.gitlab.domain" "gitlab.example.com"
git config "gitopen.gitlab.ssh.domain" "git.example.com"
run ../git-open
assert_output "https://gitlab.example.com/namespace/project/"
}
@test "gitlab default ssh origin style" {
# https://github.com/paulirish/git-open/pull/55
git remote set-url origin "git@gitlab.example.com:user/repo"
git config "gitopen.gitlab.domain" "gitlab.example.com"
run ../git-open
assert_output "https://gitlab.example.com/user/repo/"
}
@test "gitlab ssh:// origin style" {
# https://github.com/paulirish/git-open/pull/51
git remote set-url origin "ssh://git@gitlab.domain.com/user/repo"
git config "gitopen.gitlab.domain" "gitlab.domain.com"
run ../git-open
assert_output "https://gitlab.domain.com//user/repo/" # TODO fix double slash
}
# Tests not yet written:
# * gitopen.gitlab.port
# * gitopen.gitlab.protocol
# * Atlassian Bitbucket Server (https://github.com/paulirish/git-open/pull/15)
teardown() {
cd ..
rm -rf "$foldername"
}
# helper to create a test git sandbox that won't dirty the real repo
# helper to create a test git sandbox that won"t dirty the real repo
function create_git_sandbox() {
rm -rf "$foldername"
mkdir "$foldername"
@ -36,10 +175,15 @@ function create_git_sandbox() {
git init -q
git config user.email "test@runner.com" && git config user.name "Test Runner"
git remote add origin git@github.com:user/repo.git
git checkout -fb master
# newer git auto-creates the origin remote
if [ $(git remote) ]; then
git remote set-url origin "github.com:paulirish/git-open.git"
else
git remote add origin "github.com:paulirish/git-open.git"
fi
git checkout -B "master"
echo "ok" > readme.txt
git add readme.txt
git commit -m "add file" -q
}
}