mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
100 lines
2.5 KiB
Text
100 lines
2.5 KiB
Text
|
#!/usr/bin/env bats
|
||
|
|
||
|
load test_helper
|
||
|
|
||
|
setup() {
|
||
|
mkdir -p "$PYENV_TEST_DIR"
|
||
|
cd "$PYENV_TEST_DIR"
|
||
|
}
|
||
|
|
||
|
create_file() {
|
||
|
mkdir -p "$(dirname "$1")"
|
||
|
touch "$1"
|
||
|
}
|
||
|
|
||
|
@test "prints global file if no version files exist" {
|
||
|
assert [ ! -e "${PYENV_ROOT}/version" ]
|
||
|
assert [ ! -e ".python-version" ]
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_ROOT}/version"
|
||
|
}
|
||
|
|
||
|
@test "detects 'global' file" {
|
||
|
create_file "${PYENV_ROOT}/global"
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_ROOT}/global"
|
||
|
}
|
||
|
|
||
|
@test "detects 'default' file" {
|
||
|
create_file "${PYENV_ROOT}/default"
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_ROOT}/default"
|
||
|
}
|
||
|
|
||
|
@test "'version' has precedence over 'global' and 'default'" {
|
||
|
create_file "${PYENV_ROOT}/version"
|
||
|
create_file "${PYENV_ROOT}/global"
|
||
|
create_file "${PYENV_ROOT}/default"
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_ROOT}/version"
|
||
|
}
|
||
|
|
||
|
@test "in current directory" {
|
||
|
create_file ".python-version"
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/.python-version"
|
||
|
}
|
||
|
|
||
|
@test "legacy file in current directory" {
|
||
|
create_file ".pyenv-version"
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/.pyenv-version"
|
||
|
}
|
||
|
|
||
|
@test ".python-version has precedence over legacy file" {
|
||
|
create_file ".python-version"
|
||
|
create_file ".pyenv-version"
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/.python-version"
|
||
|
}
|
||
|
|
||
|
@test "in parent directory" {
|
||
|
create_file ".python-version"
|
||
|
mkdir -p project
|
||
|
cd project
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/.python-version"
|
||
|
}
|
||
|
|
||
|
@test "topmost file has precedence" {
|
||
|
create_file ".python-version"
|
||
|
create_file "project/.python-version"
|
||
|
cd project
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/project/.python-version"
|
||
|
}
|
||
|
|
||
|
@test "legacy file has precedence if higher" {
|
||
|
create_file ".python-version"
|
||
|
create_file "project/.pyenv-version"
|
||
|
cd project
|
||
|
run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/project/.pyenv-version"
|
||
|
}
|
||
|
|
||
|
@test "PYENV_DIR has precedence over PWD" {
|
||
|
create_file "widget/.python-version"
|
||
|
create_file "project/.python-version"
|
||
|
cd project
|
||
|
PYENV_DIR="${PYENV_TEST_DIR}/widget" run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/widget/.python-version"
|
||
|
}
|
||
|
|
||
|
@test "PWD is searched if PYENV_DIR yields no results" {
|
||
|
mkdir -p "widget/blank"
|
||
|
create_file "project/.python-version"
|
||
|
cd project
|
||
|
PYENV_DIR="${PYENV_TEST_DIR}/widget/blank" run pyenv-version-file
|
||
|
assert_success "${PYENV_TEST_DIR}/project/.python-version"
|
||
|
}
|