1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
#!/bin/sh
#set -x
test_dir=$(cd $(dirname $0) && pwd)
export WORKON_HOME="$(echo ${TMPDIR:-/tmp}/WORKON_HOME | sed 's|//|/|g')"
oneTimeSetUp() {
rm -rf "$WORKON_HOME"
mkdir -p "$WORKON_HOME"
source "$test_dir/../virtualenvwrapper.sh"
mkvirtualenv "env1" >/dev/null 2>&1
mkvirtualenv "env2" >/dev/null 2>&1
deactivate >/dev/null 2>&1
}
oneTimeTearDown() {
rm -rf "$WORKON_HOME"
}
setUp () {
echo
rm -f "$test_dir/catch_output"
}
tearDown () {
deactivate >/dev/null 2>&1
}
test_workon () {
workon env1
assertTrue virtualenvwrapper_verify_active_environment
assertSame "env1" $(basename "$VIRTUAL_ENV")
}
test_workon_activate_hooks () {
for t in pre post
do
echo "#!/bin/sh" > "$WORKON_HOME/${t}activate"
echo "echo GLOBAL ${t}activate >> \"$test_dir/catch_output\"" >> "$WORKON_HOME/${t}activate"
chmod +x "$WORKON_HOME/${t}activate"
echo "#!/bin/sh" > "$WORKON_HOME/env2/bin/${t}activate"
echo "echo ENV ${t}activate >> \"$test_dir/catch_output\"" >> "$WORKON_HOME/env1/bin/${t}activate"
chmod +x "$WORKON_HOME/env1/bin/${t}activate"
done
rm -f "$test_dir/catch_output"
touch "$test_dir/catch_output"
workon env1
output=$(cat "$test_dir/catch_output")
expected="GLOBAL preactivate
ENV preactivate
GLOBAL postactivate
ENV postactivate"
assertSame "$expected" "$output"
for t in pre post
do
rm -f "$WORKON_HOME/env1/bin/${t}activate"
rm -f "$WORKON_HOME/${t}activate"
done
}
test_virtualenvwrapper_show_workon_options () {
mkdir "$WORKON_HOME/not_env"
(cd "$WORKON_HOME"; ln -s env1 link_env)
envs=$(virtualenvwrapper_show_workon_options | tr '\n' ' ')
assertSame "env1 env2 link_env " "$envs"
rmdir "$WORKON_HOME/not_env"
rm -f "$WORKON_HOME/link_env"
}
test_virtualenvwrapper_show_workon_options_grep_options () {
mkdir "$WORKON_HOME/not_env"
(cd "$WORKON_HOME"; ln -s env1 link_env)
export GREP_OPTIONS="--count"
envs=$(virtualenvwrapper_show_workon_options | tr '\n' ' ')
unset GREP_OPTIONS
assertSame "env1 env2 link_env " "$envs"
rmdir "$WORKON_HOME/not_env"
rm -f "$WORKON_HOME/link_env"
}
test_virtualenvwrapper_show_workon_options_no_envs () {
old_home="$WORKON_HOME"
export WORKON_HOME=${TMPDIR:-/tmp}/$$
envs=$(virtualenvwrapper_show_workon_options 2>/dev/null | tr '\n' ' ')
assertSame "" "$envs"
export WORKON_HOME="$old_home"
}
test_no_workon_home () {
old_home="$WORKON_HOME"
export WORKON_HOME="$WORKON_HOME/not_there"
workon should_not_be_created >"$old_home/output" 2>&1
output=$(cat "$old_home/output")
assertTrue "Did not see expected message" "echo $output | grep 'does not exist'"
WORKON_HOME="$old_home"
}
. "$test_dir/shunit2"
|