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
|
#!/bin/sh
cp -a debian/tests/packages "$AUTOPKGTEST_TMP"
HOME="$AUTOPKGTEST_TMP/home"
mkdir -p "$HOME"
virtualenv -p python3.13 "$AUTOPKGTEST_TMP/ve"
site_packages="$AUTOPKGTEST_TMP/ve/lib/python3.13/site-packages"
VP="$AUTOPKGTEST_TMP/ve/bin/python"
tearDown() {
# Remove any fibpy/fibc installed in the venv
$VP -m pip uninstall --yes fibpy fibc setuptools
rm -f $site_packages/fibpy.egg-link
}
testVirtualenvLayout() {
assertTrue 'pip command installed' "[ -f $AUTOPKGTEST_TMP/ve/bin/pip ]"
assertTrue 'pip library installed' "[ -d $site_packages/pip ]"
}
testFibPy() {
cd "$AUTOPKGTEST_TMP/packages/fibpy"
$VP -m pip install --no-index -f /usr/share/python-wheels/ setuptools
$VP setup.py install
assertTrue 'Install fibpy in a virtualenv' $?
assertTrue 'fibpy was installed to virtualenv' "[ -e $site_packages/fibpy-*.egg ]"
cd "$AUTOPKGTEST_TMP"
stdout=$($VP -m fibpy 5)
assertTrue 'Execute fibpy from a virtualenv' $?
assertEquals 'Correct result' 8 "$stdout"
}
testFibC() {
cd "$AUTOPKGTEST_TMP/packages/fibc"
$VP -m pip install --no-index -f /usr/share/python-wheels/ setuptools
$VP setup.py install
assertTrue 'Install fibc in a virtualenv' $?
assertTrue 'fibc was installed to virtualenv' "[ -e $site_packages/fibc-*.egg ]"
cd "$AUTOPKGTEST_TMP"
stdout=$($VP -c 'from fibc import fib; print(fib(5))')
assertTrue 'Execute fibc from a virtualenv' $?
assertEquals 'Correct result' 8 "$stdout"
}
testFibPyDevelop() {
cd "$AUTOPKGTEST_TMP/packages/fibpy"
$VP -m pip install --no-index -f /usr/share/python-wheels/ setuptools
$VP setup.py develop
assertTrue 'Install editable fibpy in a virtualenv' $?
assertTrue 'fibpy was linked to virtualenv' "[ -e $site_packages/fibpy.egg-link ]"
cd "$AUTOPKGTEST_TMP"
stdout=$($VP -m fibpy 5)
assertTrue 'Execute editable fibpy from a virtualenv' $?
assertEquals 'Correct result' 8 "$stdout"
}
testFibPyPip() {
cd "$AUTOPKGTEST_TMP"
$VP -m pip install --no-index -f /usr/share/python-wheels/ \
-v "$AUTOPKGTEST_TMP/packages/fibpy"
assertTrue 'Install fibpy via pip in a virtualenv' $?
assertTrue 'fibpy was installed to virtualenv' "[ -e $site_packages/fibpy.py ]"
stdout=$($VP -m fibpy 5)
assertTrue 'Execute fibpy from virtualenv' $?
assertEquals 'Correct result' 8 "$stdout"
}
testFibPyPipEditable() {
cd "$AUTOPKGTEST_TMP"
$VP -m pip install --no-index -f /usr/share/python-wheels/ \
-v -e "$AUTOPKGTEST_TMP/packages/fibpy"
assertTrue 'Install editable fibpy via pip in a virtualenv' $?
assertTrue 'fibpy was linked to virtualenv' "[ -e $site_packages/__editable__.fibpy-42.0.0.pth ]"
stdout=$($VP -m fibpy 5)
assertTrue 'Execute fibpy from virtualenv' $?
assertEquals 'Correct result' 8 "$stdout"
}
. shunit2
|