tests: package with repolock as dependency
This commit is contained in:
parent
1383744603
commit
ee2b5fb56f
@ -121,8 +121,74 @@ reinstall_repolock_body() {
|
||||
atf_check_equal $out A-1.0_1
|
||||
}
|
||||
|
||||
atf_test_case update_repolock_as_dependency
|
||||
|
||||
update_repolock_as_dependency_head() {
|
||||
atf_set "descr" "Tests for dependency update: pkg is in repository locked mode"
|
||||
}
|
||||
|
||||
update_repolock_as_dependency_body() {
|
||||
mkdir -p repo repo2 pkg_A
|
||||
cd repo
|
||||
xbps-create -A noarch -n A-1.0_1 -s "A pkg" ../pkg_A
|
||||
atf_check_equal $? 0
|
||||
xbps-rindex -d -a $PWD/*.xbps
|
||||
atf_check_equal $? 0
|
||||
cd ../repo2
|
||||
xbps-create -A noarch -n A-1.1_1 -s "A pkg" ../pkg_A
|
||||
atf_check_equal $? 0
|
||||
xbps-create -A noarch -n B-1.0_1 -s "B pkg" -D "A>=1.0_1" ../pkg_A
|
||||
atf_check_equal $? 0
|
||||
xbps-rindex -d -a $PWD/*.xbps
|
||||
atf_check_equal $? 0
|
||||
cd ..
|
||||
# install A-1.0_1 from repository "repo", B from "repo2"
|
||||
xbps-install -r root --repository=repo2 --repository=repo -yvd A-1.0_1 B
|
||||
atf_check_equal $? 0
|
||||
# A-1.0_1 is now locked
|
||||
xbps-pkgdb -r root -m repolock A
|
||||
atf_check_equal $? 0
|
||||
out=$(xbps-query -r root -p repository A)
|
||||
atf_check_equal "$out" "$(readlink -f repo)"
|
||||
out=$(xbps-query -r root -p pkgver B)
|
||||
atf_check_equal $out B-1.0_1
|
||||
# create updated B using newer A
|
||||
cd repo2
|
||||
xbps-create -A noarch -n B-1.1_1 -s "B pkg" -D "A>=1.1_1" ../pkg_A
|
||||
atf_check_equal $? 0
|
||||
xbps-rindex -d -a $PWD/*.xbps
|
||||
atf_check_equal $? 0
|
||||
cd ..
|
||||
# repolock disallows update of A from "repo2"
|
||||
xbps-install -r root --repository=repo2 --repository=repo -yuvd
|
||||
out=$(xbps-query -r root -p repository A)
|
||||
atf_check_equal "$out" "$(readlink -f repo)"
|
||||
out=$(xbps-query -r root -p pkgver A)
|
||||
atf_check_equal $out A-1.0_1
|
||||
out=$(xbps-query -r root -p pkgver B)
|
||||
atf_check_equal $out B-1.0_1
|
||||
# create newer A in "repo"
|
||||
cd repo
|
||||
xbps-create -A noarch -n A-1.1_1 -s "A pkg" ../pkg_A
|
||||
atf_check_equal $? 0
|
||||
xbps-rindex -d -a $PWD/*.xbps
|
||||
atf_check_equal $? 0
|
||||
cd ..
|
||||
# update passes now
|
||||
xbps-install -r root --repository=repo2 --repository=repo -yuvd
|
||||
atf_check_equal $?u 0u
|
||||
out=$(xbps-query -r root -p pkgver A)
|
||||
atf_check_equal $out A-1.1_1
|
||||
out=$(xbps-query -r root -p pkgver B)
|
||||
atf_check_equal $out B-1.1_1
|
||||
out=$(xbps-query -r root -p repository A)
|
||||
atf_check_equal "$out" "$(readlink -f repo)"
|
||||
}
|
||||
|
||||
|
||||
atf_init_test_cases() {
|
||||
atf_add_test_case update_repolock
|
||||
atf_add_test_case update_repolock_explicit
|
||||
atf_add_test_case reinstall_repolock
|
||||
atf_add_test_case update_repolock_as_dependency
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user