pyenv/plugins/python-build/test/build.bats

621 lines
14 KiB
Text
Raw Normal View History

2014-01-17 07:14:30 -05:00
#!/usr/bin/env bats
load test_helper
export PYTHON_BUILD_CACHE_PATH="$TMP/cache"
export MAKE=make
export MAKE_OPTS="-j 2"
2014-11-03 03:33:44 -05:00
export CC=cc
export -n PYTHON_CONFIGURE_OPTS
2014-01-17 07:14:30 -05:00
setup() {
mkdir -p "$INSTALL_ROOT"
stub md5 false
stub curl false
2014-01-17 07:14:30 -05:00
}
executable() {
local file="$1"
mkdir -p "${file%/*}"
cat > "$file"
chmod +x "$file"
}
cached_tarball() {
mkdir -p "$PYTHON_BUILD_CACHE_PATH"
pushd "$PYTHON_BUILD_CACHE_PATH" >/dev/null
tarball "$@"
popd >/dev/null
}
tarball() {
local name="$1"
local path="$PWD/$name"
local configure="$path/configure"
shift 1
executable "$configure" <<OUT
#!$BASH
echo "$name: CPPFLAGS=\\"\$CPPFLAGS\\" LDFLAGS=\\"\$LDFLAGS\\"" >> build.log
2014-01-17 07:14:30 -05:00
echo "$name: \$@" \${PYTHONOPT:+PYTHONOPT=\$PYTHONOPT} >> build.log
OUT
for file; do
mkdir -p "$(dirname "${path}/${file}")"
touch "${path}/${file}"
done
tar czf "${path}.tar.gz" -C "${path%/*}" "$name"
}
stub_make_install() {
stub "$MAKE" \
" : echo \"$MAKE \$@\" >> build.log" \
"install : echo \"$MAKE \$@\" >> build.log && cat build.log >> '$INSTALL_ROOT/build.log'"
2014-01-17 07:14:30 -05:00
}
assert_build_log() {
run cat "$INSTALL_ROOT/build.log"
assert_output
}
@test "yaml is installed for python" {
cached_tarball "yaml-0.1.6"
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false
stub uname '-s : echo Linux' '-s : echo Linux'
2014-01-17 07:14:30 -05:00
stub brew false
stub_make_install
stub_make_install
install_fixture definitions/needs-yaml
assert_success
2017-11-03 05:43:02 -04:00
unstub uname
2014-01-17 07:14:30 -05:00
unstub make
assert_build_log <<OUT
yaml-0.1.6: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
2015-09-23 01:23:31 -04:00
yaml-0.1.6: --prefix=$INSTALL_ROOT
2014-01-17 07:14:30 -05:00
make -j 2
make install
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "apply python patch before building" {
cached_tarball "yaml-0.1.6"
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false
stub uname '-s : echo Linux' '-s : echo Linux'
2014-01-17 07:14:30 -05:00
stub brew false
stub_make_install
stub_make_install
stub patch ' : echo patch "$@" | sed -E "s/\.[[:alnum:]]+$/.XXX/" >> build.log'
2014-01-17 07:14:30 -05:00
TMPDIR="$TMP" install_fixture --patch definitions/needs-yaml <<<""
2014-01-17 07:14:30 -05:00
assert_success
2017-11-03 05:43:02 -04:00
unstub uname
2014-01-17 07:14:30 -05:00
unstub make
unstub patch
assert_build_log <<OUT
yaml-0.1.6: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
2015-09-23 01:23:31 -04:00
yaml-0.1.6: --prefix=$INSTALL_ROOT
2014-01-17 07:14:30 -05:00
make -j 2
make install
patch -p0 --force -i $TMP/python-patch.XXX
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
make -j 2
make install
OUT
}
@test "apply python patch from git diff before building" {
cached_tarball "yaml-0.1.6"
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
stub uname '-s : echo Linux' '-s : echo Linux'
stub brew false
stub_make_install
stub_make_install
stub patch ' : echo patch "$@" | sed -E "s/\.[[:alnum:]]+$/.XXX/" >> build.log'
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false
TMPDIR="$TMP" install_fixture --patch definitions/needs-yaml <<<"diff --git a/script.py"
assert_success
2017-11-03 05:43:02 -04:00
unstub uname
unstub make
unstub patch
assert_build_log <<OUT
yaml-0.1.6: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
2015-09-23 01:23:31 -04:00
yaml-0.1.6: --prefix=$INSTALL_ROOT
make -j 2
make install
patch -p1 --force -i $TMP/python-patch.XXX
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "yaml is linked from Homebrew" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
brew_libdir="$TMP/homebrew-yaml"
mkdir -p "$brew_libdir"
2021-09-20 00:43:08 -04:00
for i in {1..4}; do stub uname '-s : echo Darwin'; done
for i in {1..2}; do stub sw_vers '-productVersion : echo 1010'; done
stub brew "--prefix libyaml : echo '$brew_libdir'" false false
2017-11-03 05:43:02 -04:00
stub_make_install
2014-01-17 07:14:30 -05:00
install_fixture definitions/needs-yaml
assert_success
2021-09-20 00:43:08 -04:00
unstub sw_vers
2017-11-03 05:43:02 -04:00
unstub uname
2014-01-17 07:14:30 -05:00
unstub brew
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I$brew_libdir/include -I${TMP}/install/include " LDFLAGS="-L$brew_libdir/lib -L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "readline is linked from Homebrew" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
readline_libdir="$TMP/homebrew-readline"
mkdir -p "$readline_libdir"
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false
stub brew false "--prefix readline : echo '$readline_libdir'"
2014-01-17 07:14:30 -05:00
stub_make_install
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
2014-01-17 07:14:30 -05:00
DEF
assert_success
unstub brew
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I$readline_libdir/include -I${TMP}/install/include " LDFLAGS="-L$readline_libdir/lib -L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "readline is not linked from Homebrew when explicitly defined" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
# python-build
2014-01-17 07:14:30 -05:00
readline_libdir="$TMP/custom"
mkdir -p "$readline_libdir/include/readline"
touch "$readline_libdir/include/readline/rlconf.h"
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false
stub brew false
2014-01-17 07:14:30 -05:00
stub_make_install
export PYTHON_CONFIGURE_OPTS="CPPFLAGS=-I$readline_libdir/include LDFLAGS=-L$readline_libdir/lib"
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
2014-01-17 07:14:30 -05:00
DEF
assert_success
unstub brew
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT CPPFLAGS=-I$readline_libdir/include LDFLAGS=-L$readline_libdir/lib --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "tcl-tk is linked from Homebrew" {
cached_tarball "Python-3.6.2"
tcl_tk_version=8.6
tcl_tk_libdir="$TMP/homebrew-tcl-tk"
mkdir -p "$tcl_tk_libdir/lib"
echo "TCL_VERSION='$tcl_tk_version'" >>"$tcl_tk_libdir/lib/tclConfig.sh"
stub uname false
for i in {1..2}; do stub brew "--prefix tcl-tk : echo '$tcl_tk_libdir'"; done
stub brew false
stub_make_install
run_inline_definition <<DEF
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
DEF
assert_success
unstub brew
unstub make
assert_build_log <<OUT
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=${TMP}/install --libdir=${TMP}/install/lib --with-tcltk-libs=-L${TMP}/homebrew-tcl-tk/lib -ltcl$tcl_tk_version -ltk$tcl_tk_version --with-tcltk-includes=-I${TMP}/homebrew-tcl-tk/include
make -j 2
make install
OUT
}
@test "tcl-tk is not linked from Homebrew when explicitly defined" {
cached_tarball "Python-3.6.2"
# python build
tcl_tk_version_long="8.6.10"
tcl_tk_version="${tcl_tk_version_long%.*}"
# pyenv/pyenv#1026
stub uname false false
stub brew false false
stub_make_install
export PYTHON_CONFIGURE_OPTS="--with-tcltk-libs='-L${TMP}/custom-tcl-tk/lib -ltcl$tcl_tk_version -ltk$tcl_tk_version'"
run_inline_definition <<DEF
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
DEF
assert_success
unstub brew
unstub make
assert_build_log <<OUT
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib --with-tcltk-libs=-L${TMP}/custom-tcl-tk/lib -ltcl8.6 -ltk8.6
make -j 2
make install
OUT
}
2014-01-17 07:14:30 -05:00
@test "number of CPU cores defaults to 2" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
2014-11-03 03:33:44 -05:00
# yyuu/pyenv#222
2014-08-20 23:11:20 -04:00
stub uname '-s : echo Darwin'
2014-11-03 03:33:44 -05:00
stub sw_vers '-productVersion : echo 10.10'
# yyuu/pyenv#257
2014-01-17 07:14:30 -05:00
stub uname '-s : echo Darwin'
stub uname '-s : echo Darwin' false '-s : echo Darwin'
2014-01-17 07:14:30 -05:00
stub sysctl false
stub_make_install
export -n MAKE_OPTS
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
2014-01-17 07:14:30 -05:00
DEF
assert_success
unstub uname
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "number of CPU cores is detected on Mac" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
2014-11-03 03:33:44 -05:00
# yyuu/pyenv#222
2014-08-20 23:11:20 -04:00
stub uname '-s : echo Darwin'
2014-11-03 03:33:44 -05:00
stub sw_vers '-productVersion : echo 10.10'
# yyuu/pyenv#257
2014-01-17 07:14:30 -05:00
stub uname '-s : echo Darwin'
stub uname '-s : echo Darwin' false '-s : echo Darwin'
2014-01-17 07:14:30 -05:00
stub sysctl '-n hw.ncpu : echo 4'
stub_make_install
export -n MAKE_OPTS
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
2014-01-17 07:14:30 -05:00
DEF
assert_success
unstub uname
unstub sysctl
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 4
make install
OUT
}
@test "number of CPU cores is detected on FreeBSD" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false
stub uname '-s : echo FreeBSD' false false
stub sysctl '-n hw.ncpu : echo 1'
stub_make_install
export -n MAKE_OPTS
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
DEF
assert_success
unstub uname
unstub sysctl
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
make -j 1
make install
OUT
}
@test "setting PYTHON_MAKE_INSTALL_OPTS to a multi-word string" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false false
stub uname '-s : echo Linux'
2017-11-03 05:43:02 -04:00
stub_make_install
export PYTHON_MAKE_INSTALL_OPTS="DOGE=\"such wow\""
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
DEF
assert_success
2017-11-03 05:43:02 -04:00
unstub uname
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
make -j 2
make install DOGE="such wow"
OUT
}
@test "setting MAKE_INSTALL_OPTS to a multi-word string" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false false
2016-10-04 21:06:03 -04:00
stub uname '-s : echo Linux'
2017-11-03 05:43:02 -04:00
stub_make_install
2016-10-04 21:06:03 -04:00
export MAKE_INSTALL_OPTS="DOGE=\"such wow\""
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
DEF
assert_success
2017-11-03 05:43:02 -04:00
unstub uname
unstub make
assert_build_log <<OUT
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
make -j 2
make install DOGE="such wow"
2014-01-17 07:14:30 -05:00
OUT
}
@test "custom relative install destination" {
export PYTHON_BUILD_CACHE_PATH="$FIXTURE_ROOT"
cd "$TMP"
install_fixture definitions/without-checksum ./here
assert_success
assert [ -x ./here/bin/package ]
}
@test "make on FreeBSD 9 defaults to gmake" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
2017-11-03 05:43:02 -04:00
stub uname "-s : echo FreeBSD" "-r : echo 9.1" false
2014-01-17 07:14:30 -05:00
2017-11-03 05:43:02 -04:00
# pyenv/pyenv#1026
stub uname false false false
2014-11-03 03:33:44 -05:00
2017-11-03 05:43:02 -04:00
MAKE=gmake stub_make_install
2014-01-17 07:14:30 -05:00
MAKE= install_fixture definitions/vanilla-python
assert_success
unstub gmake
unstub uname
}
@test "make on FreeBSD 10" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2017-11-03 05:43:02 -04:00
stub uname "-s : echo FreeBSD" "-r : echo 10.0-RELEASE" false
# pyenv/pyenv#1026
stub uname false false false
2017-11-03 05:43:02 -04:00
stub_make_install
2017-11-03 05:43:02 -04:00
MAKE= install_fixture definitions/vanilla-python
assert_success
2014-11-03 03:33:44 -05:00
2017-11-03 05:43:02 -04:00
unstub uname
}
@test "make on FreeBSD 11" {
cached_tarball "Python-3.6.2"
stub uname "-s : echo FreeBSD" "-r : echo 11.0-RELEASE" false
# pyenv/pyenv#1026
stub uname false false false
2017-11-03 05:43:02 -04:00
stub_make_install
MAKE= install_fixture definitions/vanilla-python
assert_success
unstub uname
}
2014-01-17 07:14:30 -05:00
@test "can use PYTHON_CONFIGURE to apply a patch" {
2017-09-10 22:02:15 -04:00
cached_tarball "Python-3.6.2"
2014-01-17 07:14:30 -05:00
executable "${TMP}/custom-configure" <<CONF
#!$BASH
apply -p1 -i /my/patch.diff
exec ./configure "\$@"
CONF
2017-11-03 05:43:02 -04:00
stub uname '-s : echo Linux'
2014-01-17 07:14:30 -05:00
stub apply 'echo apply "$@" >> build.log'
stub_make_install
# yyuu/pyenv#257
stub uname '-s : echo Linux'
stub uname '-s : echo Linux'
stub uname '-s : echo Linux'
2014-01-17 07:14:30 -05:00
export PYTHON_CONFIGURE="${TMP}/custom-configure"
run_inline_definition <<DEF
2017-09-10 22:02:15 -04:00
install_package "Python-3.6.2" "http://python.org/ftp/python/3.6.2/Python-3.6.2.tar.gz"
2014-01-17 07:14:30 -05:00
DEF
assert_success
2017-11-03 05:43:02 -04:00
unstub uname
2014-01-17 07:14:30 -05:00
unstub make
unstub apply
assert_build_log <<OUT
apply -p1 -i /my/patch.diff
2017-09-10 22:02:15 -04:00
Python-3.6.2: CPPFLAGS="-I${TMP}/install/include " LDFLAGS="-L${TMP}/install/lib "
Python-3.6.2: --prefix=$INSTALL_ROOT --libdir=$INSTALL_ROOT/lib
2014-01-17 07:14:30 -05:00
make -j 2
make install
2014-01-17 07:14:30 -05:00
OUT
}
@test "copy strategy forces overwrite" {
export PYTHON_BUILD_CACHE_PATH="$FIXTURE_ROOT"
mkdir -p "$INSTALL_ROOT/bin"
touch "$INSTALL_ROOT/bin/package"
chmod -w "$INSTALL_ROOT/bin/package"
install_fixture definitions/without-checksum
assert_success
run "$INSTALL_ROOT/bin/package" "world"
assert_success "hello world"
}
2014-11-03 03:33:44 -05:00
@test "mruby strategy overwrites non-writable files" {
# nop
}
@test "mruby strategy fetches rake if missing" {
# nop
}
@test "rbx uses bundle then rake" {
# nop
}
@test "fixes rbx binstubs" {
# nop
}
@test "JRuby build" {
# nop
}
@test "JRuby+Graal does not install launchers" {
# nop
}
@test "JRuby Java 7 missing" {
# nop
}
@test "JRuby Java is outdated" {
# nop
}
@test "JRuby Java 7 up-to-date" {
# nop
}
@test "Java version string not on first line" {
# nop
}
@test "Java version string on OpenJDK" {
# nop
}
@test "JRuby Java 9 version string" {
# nop
}
2014-01-17 07:14:30 -05:00
@test "non-writable TMPDIR aborts build" {
export TMPDIR="${TMP}/build"
mkdir -p "$TMPDIR"
chmod -w "$TMPDIR"
touch "${TMP}/build-definition"
run python-build "${TMP}/build-definition" "$INSTALL_ROOT"
assert_failure "python-build: TMPDIR=$TMPDIR is set to a non-accessible location"
}
@test "non-executable TMPDIR aborts build" {
export TMPDIR="${TMP}/build"
mkdir -p "$TMPDIR"
chmod -x "$TMPDIR"
touch "${TMP}/build-definition"
run python-build "${TMP}/build-definition" "$INSTALL_ROOT"
assert_failure "python-build: TMPDIR=$TMPDIR is set to a non-accessible location"
}