See the new test case for details, but this simulates the recent glvnd switch, with mesa, nvidia and libglvnd. Thanks @st3r4g for the fix! this indeed fixes the new test case. Close #186
367 lines
11 KiB
Bash
367 lines
11 KiB
Bash
#!/usr/bin/env atf-sh
|
|
|
|
atf_test_case conflicts_trans
|
|
|
|
conflicts_trans_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: conflicting pkgs in transaction"
|
|
}
|
|
|
|
conflicts_trans_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "B>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" ../pkg_B
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A B
|
|
# EAGAIN, conflicts.
|
|
atf_check_equal $? 11
|
|
# 0 pkgs installed.
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 0
|
|
}
|
|
|
|
conflicts_trans_hold_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: conflicting pkg with on-hold installed pkg"
|
|
}
|
|
|
|
conflicts_trans_hold_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "vpkg>19_1" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" --provides "vpkg-19_1" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A B
|
|
atf_check_equal $? 0
|
|
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.1_1 -s "A pkg" --conflicts "vpkg>19_1" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.1_1 -s "B pkg" --provides "vpkg-20_1" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
echo "B updated to 1.1_1"
|
|
xbps-install -r root --repository=$PWD/some_repo -dyuv B
|
|
atf_check_equal $? 11
|
|
|
|
echo "B is now on hold"
|
|
xbps-pkgdb -r root -m hold B
|
|
xbps-install -r root --repository=$PWD/some_repo -dyuv
|
|
atf_check_equal $? 0
|
|
|
|
atf_check_equal $(xbps-query -r root -p pkgver A) A-1.1_1
|
|
atf_check_equal $(xbps-query -r root -p pkgver B) B-1.0_1
|
|
}
|
|
|
|
atf_test_case conflicts_trans_vpkg
|
|
|
|
conflicts_trans_vpkg_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: conflicting virtual pkgs in transaction"
|
|
}
|
|
|
|
conflicts_trans_vpkg_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin pkg_C/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "vpkg>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" --provides "vpkg-0_1" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n C-1.0_1 -s "C pkg" --dependencies "vpkg>=0" ../pkg_C
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A C
|
|
# EAGAIN, conflicts.
|
|
atf_check_equal $? 11
|
|
# 0 pkgs installed.
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 0
|
|
}
|
|
|
|
atf_test_case conflicts_trans_multi
|
|
|
|
conflicts_trans_multi_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: multiple conflicting pkgs in transaction"
|
|
}
|
|
|
|
conflicts_trans_multi_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin pkg_C/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "B>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n C-1.0_1 -s "C pkg" --dependencies "B>=0" ../pkg_C
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A C
|
|
# EAGAIN, conflicts.
|
|
atf_check_equal $? 11
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 0
|
|
}
|
|
|
|
atf_test_case conflicts_installed
|
|
|
|
conflicts_installed_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: installed pkg conflicts with pkg in transaction"
|
|
}
|
|
|
|
conflicts_installed_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "B>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" ../pkg_B
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A
|
|
atf_check_equal $? 0
|
|
xbps-install -r root --repository=$PWD/some_repo -dy B
|
|
atf_check_equal $? 11
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 1
|
|
}
|
|
|
|
atf_test_case conflicts_installed_multi
|
|
|
|
conflicts_installed_multi_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: installed pkg conflicts with multiple pkgs in transaction"
|
|
}
|
|
|
|
conflicts_installed_multi_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin pkg_C/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "B>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n C-1.0_1 -s "C pkg" --dependencies "B>=0" ../pkg_C
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A
|
|
atf_check_equal $? 0
|
|
xbps-install -r root --repository=$PWD/some_repo -dy C
|
|
atf_check_equal $? 11
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 1
|
|
}
|
|
|
|
atf_test_case conflicts_trans_installed
|
|
|
|
conflicts_trans_installed_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: pkg in transaction conflicts with installed pkg"
|
|
}
|
|
|
|
conflicts_trans_installed_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "B>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" ../pkg_B
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy B
|
|
atf_check_equal $? 0
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A
|
|
atf_check_equal $? 11
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 1
|
|
}
|
|
|
|
atf_test_case conflicts_trans_update
|
|
|
|
conflicts_trans_update_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: no conflicts with updated pkgs in transaction"
|
|
}
|
|
|
|
conflicts_trans_update_body() {
|
|
mkdir repo repo2
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin
|
|
|
|
cd repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --provides "xserver-abi-video-19_1" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" --conflicts "xserver-abi-video<19" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/repo -dy A B
|
|
atf_check_equal $? 0
|
|
|
|
cd repo2
|
|
xbps-create -A noarch -n A-1.1_1 -s "A pkg" --provides "xserver-abi-video-20_1" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.1_1 -s "B pkg" --conflicts "xserver-abi-video<20" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/repo2 -dyuv
|
|
atf_check_equal $? 0
|
|
atf_check_equal $(xbps-query -r root -p pkgver A) A-1.1_1
|
|
atf_check_equal $(xbps-query -r root -p pkgver B) B-1.1_1
|
|
|
|
xbps-install -r root --repository=$PWD/repo -dyvf A B
|
|
atf_check_equal $? 0
|
|
atf_check_equal $(xbps-query -r root -p pkgver A) A-1.0_1
|
|
atf_check_equal $(xbps-query -r root -p pkgver B) B-1.0_1
|
|
|
|
xbps-install -r root --repository=$PWD/repo2 -dyvf B-1.1_1
|
|
atf_check_equal $? 11
|
|
}
|
|
|
|
atf_test_case conflicts_trans_installed_multi
|
|
|
|
conflicts_trans_installed_multi_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: pkg in transaction conflicts with installed pkg"
|
|
}
|
|
|
|
conflicts_trans_installed_multi_body() {
|
|
mkdir some_repo
|
|
mkdir -p pkg_A/usr/bin pkg_B/usr/bin pkg_C/usr/bin
|
|
cd some_repo
|
|
xbps-create -A noarch -n A-1.0_1 -s "A pkg" --conflicts "B>=0" ../pkg_A
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n B-1.0_1 -s "B pkg" ../pkg_B
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n C-1.0_1 -s "C pkg" --dependencies "B>=0" ../pkg_C
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
xbps-install -r root --repository=$PWD/some_repo -dy C
|
|
atf_check_equal $? 0
|
|
xbps-install -r root --repository=$PWD/some_repo -dy A
|
|
atf_check_equal $? 11
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 2
|
|
}
|
|
|
|
atf_test_case conflicts_trans_provrep
|
|
|
|
conflicts_trans_provrep_head() {
|
|
atf_set "descr" "Tests for pkg conflicts: https://github.com/void-linux/xbps/issues/186"
|
|
}
|
|
|
|
conflicts_trans_provrep_body() {
|
|
mkdir -p repo libGL/usr/bin libglvnd/usr/bin nvidia-libs/usr/bin neverball/usr/bin
|
|
cd repo
|
|
xbps-create -A noarch -n libGL-19.1_1 -s "libGL" ../libGL
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n libglvnd-1.0_1 -s "libglvnd" --provides "libGL-7.11.1_1" --replaces "libGL>=0" ../libglvnd
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n nvidia-libs-1.0_1 -s "nvidia-libs" --provides "libGL-7.11.1_1" --replaces "libGL>=0" --conflicts "libGL>=7.11" ../nvidia-libs
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n neverball-1.0_1 -s "neverball" --dependencies "libGL>=0" ../neverball
|
|
atf_check_equal $? 0
|
|
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
# Simulate a glvnd switch from start with libGL (mesa)
|
|
xbps-install -r root --repository=$PWD/repo -dy neverball
|
|
atf_check_equal $? 0
|
|
|
|
# 2 pkgs installed: libGL and neverball
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 2
|
|
|
|
out=$(xbps-query -r root -p pkgver libGL)
|
|
atf_check_equal "$out" "libGL-19.1_1"
|
|
out=$(xbps-query -r root -p pkgver neverball)
|
|
atf_check_equal "$out" "neverball-1.0_1"
|
|
|
|
# Now install nvidia-libs
|
|
xbps-install -r root --repository=$PWD/repo -dy nvidia-libs
|
|
atf_check_equal $? 0
|
|
|
|
# 2 pkgs installed: nvidia-libs and neverball
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 2
|
|
out=$(xbps-query -r root -p pkgver nvidia-libs)
|
|
atf_check_equal "$out" "nvidia-libs-1.0_1"
|
|
|
|
# now create the nvidia-libs pkg with glvnd support
|
|
cd repo
|
|
xbps-create -A noarch -n neverball-1.1_1 -s "neverball" --dependencies "libGL>=0" ../neverball
|
|
atf_check_equal $? 0
|
|
xbps-create -A noarch -n nvidia-libs-1.1_1 -s "nvidia-libs" --dependencies "libglvnd>=0" ../nvidia-libs
|
|
atf_check_equal $? 0
|
|
xbps-rindex -d -a $PWD/*.xbps
|
|
atf_check_equal $? 0
|
|
cd ..
|
|
|
|
# Upgrade nvidia-libs
|
|
xbps-install -r root --repository=$PWD/repo -dyu
|
|
atf_check_equal $? 0
|
|
|
|
# 3 pkgs installed: libglvnd, nvidia-libs and neverball
|
|
xbps-query -r root -l|wc -l
|
|
atf_check_equal $(xbps-query -r root -l|wc -l) 3
|
|
|
|
out=$(xbps-query -r root -p pkgver libglvnd)
|
|
atf_check_equal "$out" "libglvnd-1.0_1"
|
|
out=$(xbps-query -r root -p pkgver nvidia-libs)
|
|
atf_check_equal "$out" "nvidia-libs-1.1_1"
|
|
out=$(xbps-query -r root -p pkgver neverball)
|
|
atf_check_equal "$out" "neverball-1.1_1"
|
|
}
|
|
|
|
atf_init_test_cases() {
|
|
atf_add_test_case conflicts_trans
|
|
atf_add_test_case conflicts_trans_hold
|
|
atf_add_test_case conflicts_trans_vpkg
|
|
atf_add_test_case conflicts_trans_multi
|
|
atf_add_test_case conflicts_trans_installed
|
|
atf_add_test_case conflicts_trans_installed_multi
|
|
atf_add_test_case conflicts_installed
|
|
atf_add_test_case conflicts_installed_multi
|
|
atf_add_test_case conflicts_trans_update
|
|
atf_add_test_case conflicts_trans_provrep
|
|
}
|