2014-01-02 16:48:22 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load test_helper
|
|
|
|
|
2016-03-02 01:39:52 +00:00
|
|
|
export GIT_DIR="${PYENV_TEST_DIR}/.git"
|
2015-12-24 02:52:33 +00:00
|
|
|
|
2014-01-02 16:48:22 +00:00
|
|
|
setup() {
|
|
|
|
mkdir -p "$HOME"
|
|
|
|
git config --global user.name "Tester"
|
|
|
|
git config --global user.email "tester@test.local"
|
2016-03-02 01:39:52 +00:00
|
|
|
cd "$PYENV_TEST_DIR"
|
2014-01-02 16:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
git_commit() {
|
|
|
|
git commit --quiet --allow-empty -m "empty"
|
|
|
|
}
|
|
|
|
|
|
|
|
@test "default version" {
|
|
|
|
assert [ ! -e "$PYENV_ROOT" ]
|
|
|
|
run pyenv---version
|
|
|
|
assert_success
|
2016-03-04 00:31:04 +00:00
|
|
|
[[ $output == "pyenv 20"* ]]
|
2014-01-02 16:48:22 +00:00
|
|
|
}
|
|
|
|
|
2015-11-21 04:13:52 +00:00
|
|
|
@test "doesn't read version from non-pyenv repo" {
|
2015-10-25 15:54:38 +00:00
|
|
|
git init
|
|
|
|
git remote add origin https://github.com/homebrew/homebrew.git
|
|
|
|
git_commit
|
|
|
|
git tag v1.0
|
|
|
|
|
2015-11-21 04:13:52 +00:00
|
|
|
run pyenv---version
|
2015-10-25 15:54:38 +00:00
|
|
|
assert_success
|
2016-03-04 00:31:04 +00:00
|
|
|
[[ $output == "pyenv 20"* ]]
|
2015-10-25 15:54:38 +00:00
|
|
|
}
|
|
|
|
|
2014-01-02 16:48:22 +00:00
|
|
|
@test "reads version from git repo" {
|
|
|
|
git init
|
2015-11-21 04:13:52 +00:00
|
|
|
git remote add origin https://github.com/yyuu/pyenv.git
|
2014-01-02 16:48:22 +00:00
|
|
|
git_commit
|
2016-03-04 00:31:04 +00:00
|
|
|
git tag v20380119
|
2014-01-02 16:48:22 +00:00
|
|
|
git_commit
|
|
|
|
git_commit
|
|
|
|
|
|
|
|
run pyenv---version
|
2016-03-04 00:31:04 +00:00
|
|
|
assert_success "pyenv 20380119-2-g$(git rev-parse --short HEAD)"
|
2014-01-02 16:48:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@test "prints default version if no tags in git repo" {
|
|
|
|
git init
|
2015-11-21 04:13:52 +00:00
|
|
|
git remote add origin https://github.com/yyuu/pyenv.git
|
2014-01-02 16:48:22 +00:00
|
|
|
git_commit
|
|
|
|
|
|
|
|
run pyenv---version
|
2016-03-04 00:31:04 +00:00
|
|
|
[[ $output == "pyenv 20"* ]]
|
2014-01-02 16:48:22 +00:00
|
|
|
}
|