#! /usr/bin/env atf-sh
. $(atf_get_srcdir)/test_environment.sh
tests_init \
issue1881 \
issue1881_newdep \
three_digit_revision \
dual_conflict \
file_become_dir \
dir_become_file \
dir_is_symlink_to_a_dir \
vital \
vital_force \
vital_force_cant_remove \
upgrade_with_dependency \
upgrade_glob_abi_os \
upgrade_glob_abi_version \
upgrade_glob_abi_arch \
upgrade_autoremove \
upgrade_autoremove_flag \
symlink_to_dir_upgrade \
newpkgversion_two_repos \
upgrade_disabled_repo \
upgrade_all_disabled_repos \
upgrade_vulnerable \
upgrade_options_changed \
upgrade_options_added_removed
issue1881_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg1 pkg_a 1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg2 pkg_a 1_1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg3 pkg_b 1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg4 pkg_b 1_1
atf_check \
-o match:".*Installing.*\.\.\.$" \
-e empty \
-s exit:0 \
pkg register -M pkg1.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg3.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg2.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg4.ucl
atf_check \
-o inline:"Creating repository in .: done\nPacking files for repository: done\n" \
-e empty \
-s exit:0 \
pkg repo .
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
atf_check \
-o not-match:"^[[:space:]]+pkg_b: 1$" \
-e ignore \
-s exit:0 \
pkg -o REPOS_DIR="$TMPDIR/repoconf" -o PKG_CACHEDIR="$TMPDIR" upgrade -yx '^pkg_'
}
issue1881_newdep_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg1 pkg_a 1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg2 pkg_a 1_1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg3 pkg_b 1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg4 pkg_b 1_1
cat <<EOF >> ./pkg2.ucl
deps: {
pkg_b: {
origin: "wedontcare",
version: "1"
}
}
EOF
atf_check \
-o match:".*Installing.*\.\.\.$" \
-e empty \
-s exit:0 \
pkg register -M pkg1.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg3.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg2.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg4.ucl
atf_check \
-o inline:"Creating repository in .: done\nPacking files for repository: done\n" \
-e empty \
-s exit:0 \
pkg repo .
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
atf_check \
-o match:"^[[:space:]]+pkg_b: 1_1$" \
-e ignore \
-s exit:0 \
pkg -o REPOS_DIR="$TMPDIR/repoconf" -o PKG_CACHEDIR="$TMPDIR" upgrade -yx '^pkg_'
}
three_digit_revision_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg1 pkg_a 1_90
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg register -M pkg1.ucl
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg pkg1 pkg_a 1_125
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg create -M ./pkg1.ucl
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg repo .
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg -o REPOS_DIR="$TMPDIR/repoconf" -o PKG_CACHEDIR="$TMPDIR" upgrade -yx '^pkg_'
atf_check \
-o inline:"pkg_a-1_125\n" \
-e empty \
-s exit:0 \
pkg info -q
}
dual_conflict_body()
{
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg-1" "pkg-1" "1"
echo "${TMPDIR}/file-pkg-1" > plist-1
echo "entry" > file-pkg-1
atf_check -s exit:0 pkg create -M pkg-1.ucl -p plist-1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg-2" "pkg-2" "1"
echo "${TMPDIR}/file-pkg-2" > plist-2
echo "entry" > file-pkg-2
atf_check -s exit:0 pkg create -M pkg-2.ucl -p plist-2
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
atf_check \
-o inline:"Creating repository in .: done\nPacking files for repository: done\n" \
-e empty \
-s exit:0 \
pkg repo .
mkdir ${TMPDIR}/target
atf_check \
pkg -o REPOS_DIR="$TMPDIR/repoconf" -o PKG_CACHEDIR="$TMPDIR" -r ${TMPDIR}/target install -qy pkg-1 pkg-2
pkg -r ${TMPDIR}/target which ${TMPDIR}/file-pkg-1
pkg -r ${TMPDIR}/target which ${TMPDIR}/file-pkg-2
test -f ${TMPDIR}/target/${TMPDIR}/file-pkg-1 || atf_fail "file absent"
test -f ${TMPDIR}/target/${TMPDIR}/file-pkg-2 || atf_fail "file absent"
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg-1" "pkg-1" "2"
echo "${TMPDIR}/file-pkg-2" > plist-1
atf_check -s exit:0 pkg create -M pkg-1.ucl -p plist-1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg-2" "pkg-2" "2"
echo "${TMPDIR}/file-pkg-1" > plist-2
atf_check -s exit:0 pkg create -M pkg-2.ucl -p plist-2
sleep 1
atf_check \
-o inline:"Creating repository in .: done\nPacking files for repository: done\n" \
-e empty \
-s exit:0 \
pkg repo -l .
atf_check \
pkg -o REPOS_DIR="$TMPDIR/repoconf" -o PKG_CACHEDIR="$TMPDIR" -r ${TMPDIR}/target update -q
atf_check \
pkg -o REPOS_DIR="$TMPDIR/repoconf" -o PKG_CACHEDIR="$TMPDIR" -r ${TMPDIR}/target upgrade -qy
atf_check \
-o inline:'pkg-2-2\n' \
pkg -r ${TMPDIR}/target which -q ${TMPDIR}/file-pkg-1
atf_check \
-o inline:'pkg-1-2\n' \
pkg -r ${TMPDIR}/target which -q ${TMPDIR}/file-pkg-2
}
file_become_dir_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "1"
echo "${TMPDIR}/file-pkg-1" > plist-1
echo "entry" > file-pkg-1
atf_check pkg create -M pkg.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-1.pkg
atf_check test -f target/${TMPDIR}/file-pkg-1
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "2"
rm file-pkg-1
mkdir file-pkg-1
echo entry > file-pkg-1/file
echo "${TMPDIR}/file-pkg-1/file" > plist-2
atf_check pkg create -M pkg.ucl -p plist-2
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-2.pkg
}
dir_become_file_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "1"
mkdir file-pkg-1
echo entry > file-pkg-1/file
echo "${TMPDIR}/file-pkg-1/file" > plist-1
atf_check pkg create -M pkg.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "2"
rm -rf file-pkg-1
echo entry > file-pkg-1
echo "${TMPDIR}/file-pkg-1" > plist-2
atf_check pkg create -M pkg.ucl -p plist-2
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-2.pkg
}
dir_is_symlink_to_a_dir_body()
{
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "1"
mkdir share lib lib/something
ln -sf ../lib/something share/something
echo "entry" > lib/something/file
echo "${TMPDIR}/lib/something/file" > plist-1
echo "${TMPDIR}/share/something" >> plist-1
atf_check pkg create -M pkg.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "2"
rm share/something
mkdir share/something
echo "entry" > share/something/file
echo "${TMPDIR}/lib/something/file" > plist-2
echo "${TMPDIR}/share/something/file" >> plist-2
atf_check pkg create -M pkg.ucl -p plist-2
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-2.pkg
}
vital_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "meta" "mymeta" "1"
mkdir file-pkg-1
cat << EOF >> meta.ucl
vital = true;
EOF
echo entry > file-pkg-1/file
echo "${TMPDIR}/file-pkg-1/file" > plist-1
atf_check pkg create -M meta.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/mymeta-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "plop" "myplop" "1"
atf_check pkg create -M plop.ucl
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/myplop-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "plop" "myplop" "2"
echo "${TMPDIR}/file-pkg-1/file" > plist-2
atf_check pkg create -M plop.ucl -p plist-2
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
rm ${TMPDIR}/mymeta-1.pkg
atf_check -o ignore pkg repo .
atf_check -o ignore pkg -o REPOS_DIR="$TMPDIR/repoconf" -r ${TMPDIR}/target -o PKG_CACHEDIR="$TMPDIR" update
OUTPUT="Updating local repository catalogue...
local repository is up to date.
All repositories are up to date.
Checking for upgrades (1 candidates): done
Processing candidates (1 candidates): done
Checking integrity... done (1 conflicting)
- myplop-2 conflicts with mymeta-1 on ${TMPDIR}/file-pkg-1/file
Cannot solve problem using SAT solver, trying another plan
Checking integrity... done (0 conflicting)
Your packages are up to date.
"
ERROR=""
atf_check -o inline:"${OUTPUT}" -e inline:"${ERROR}" -s exit:0 pkg -o REPOS_DIR="$TMPDIR/repoconf" -r ${TMPDIR}/target -o PKG_CACHEDIR="$TMPDIR" upgrade -y
}
vital_force_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "meta" "mymeta" "1"
mkdir file-pkg-1
cat << EOF >> meta.ucl
vital = true;
EOF
echo entry > file-pkg-1/file
echo "${TMPDIR}/file-pkg-1/file" > plist-1
atf_check pkg create -M meta.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/mymeta-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "plop" "myplop" "1"
atf_check pkg create -M plop.ucl
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/myplop-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "plop" "myplop" "2"
echo "${TMPDIR}/file-pkg-1/file" > plist-2
atf_check pkg create -M plop.ucl -p plist-2
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
atf_check -o ignore pkg repo .
atf_check -o ignore pkg -o REPOS_DIR="$TMPDIR/repoconf" -r ${TMPDIR}/target -o PKG_CACHEDIR="$TMPDIR" update
OUTPUT="Updating local repository catalogue...
local repository is up to date.
All repositories are up to date.
Checking integrity... done (1 conflicting)
- myplop-2 conflicts with mymeta-1 on ${TMPDIR}/file-pkg-1/file
Checking integrity... done (0 conflicting)
The following 2 package(s) will be affected (of 0 checked):
Installed packages to be UPGRADED:
myplop: 1 -> 2
Installed packages to be REMOVED:
mymeta: 1
Number of packages to be removed: 1
Number of packages to be upgraded: 1
[1/2] Deinstalling mymeta-1...
[1/2] Deleting files for mymeta-1: done
[2/2] Upgrading myplop from 1 to 2...
[2/2] Extracting myplop-2: done
"
ERROR=""
atf_check -o inline:"${OUTPUT}" -e inline:"${ERROR}" -s exit:0 pkg -o REPOS_DIR="$TMPDIR/repoconf" -r ${TMPDIR}/target -o PKG_CACHEDIR="$TMPDIR" upgrade -fy myplop
}
vital_force_cant_remove_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "meta" "mymeta" "1"
mkdir file-pkg-1
cat << EOF >> meta.ucl
vital = true;
EOF
echo entry > file-pkg-1/file
echo "${TMPDIR}/file-pkg-1/file" > plist-1
atf_check pkg create -M meta.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/mymeta-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "plop" "myplop" "1"
atf_check pkg create -M plop.ucl
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/myplop-1.pkg
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "plop" "myplop" "2"
echo "${TMPDIR}/file-pkg-1/file" > plist-2
atf_check pkg create -M plop.ucl -p plist-2
mkdir repoconf
cat << EOF > repoconf/repo.conf
local: {
url: file:///$TMPDIR,
enabled: true
}
EOF
atf_check -o ignore pkg repo .
atf_check -o ignore pkg -o REPOS_DIR="$TMPDIR/repoconf" -r ${TMPDIR}/target -o PKG_CACHEDIR="$TMPDIR" update
OUTPUT="Updating local repository catalogue...
local repository is up to date.
All repositories are up to date.
Checking integrity... done (1 conflicting)
- myplop-2 conflicts with mymeta-1 on ${TMPDIR}/file-pkg-1/file
Cannot solve problem using SAT solver, trying another plan
Checking integrity... done (0 conflicting)
Your packages are up to date.
"
ERROR=""
atf_check -o inline:"${OUTPUT}" -e inline:"${ERROR}" -s exit:0 pkg -o REPOS_DIR="$TMPDIR/repoconf" -r ${TMPDIR}/target -o PKG_CACHEDIR="$TMPDIR" -o FORCE_CAN_REMOVE_VITAL=NO upgrade -fy myplop
}
upgrade_with_dependency_body() {
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testa" "testa" "1.0"
atf_check pkg create -M testa.ucl -o ./repo
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testb" "testb" "1.0"
cat << EOF >> testb.ucl
deps: {
testa: {
origin: "testa",
}
}
EOF
atf_check pkg create -M testb.ucl -o ./repo
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
repositories: {
local: { url : file://${TMPDIR}/repo }
}
EOF
atf_check \
-o inline:"Creating repository in ./repo: done\nPacking files for repository: done\n" \
-e empty \
-s exit:0 \
pkg -C ./pkg.conf repo ./repo
atf_check \
-o ignore \
-s exit:0 \
pkg -C ./pkg.conf update -f
atf_check \
pkg -C ./pkg.conf install -qy testb
rm -r ./repo
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testa" "testa" "2.0"
atf_check pkg create -M testa.ucl -o ./repo
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testb" "testb" "2.0"
cat << EOF >> testb.ucl
deps: {
testa: {
origin: "testa",
}
}
EOF
atf_check pkg create -M testb.ucl -o ./repo
atf_check \
-o inline:"Creating repository in ./repo: done\nPacking files for repository: done\n" \
-e empty \
-s exit:0 \
pkg -C ./pkg.conf repo ./repo
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg -C ./pkg.conf update -f
OUTPUT="Updating local repository catalogue...
local repository is up to date.
All repositories are up to date.
Checking for upgrades (2 candidates): done
Processing candidates (2 candidates): done
Checking integrity... done (0 conflicting)
The following 2 package(s) will be affected (of 0 checked):
Installed packages to be UPGRADED:
testa: 1.0 -> 2.0
testb: 1.0 -> 2.0
Number of packages to be upgraded: 2
${JAILED}[1/2] Upgrading testa from 1.0 to 2.0...
${JAILED}[2/2] Upgrading testb from 1.0 to 2.0...
"
atf_check \
-o inline:"${OUTPUT}" \
-e empty \
-s exit:0 \
pkg -C ./pkg.conf upgrade -y
}
upgrade_glob_abi_os_body() {
atf_skip_on Darwin Irrelevant on OSX
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testa" "testa" "1.0" "/"
cc -shared -Wl,-soname=libtesta.so.2 -o libtesta.so.2
ln -s libtesta.so.2 libtesta.so
cc -shared -Wl,-rpath=${TMPDIR} -L. -ltesta -o dep.so
cat << EOF >> testa.ucl
shlibs_provided: [ "libtesta.so.2" ]
files: {
${TMPDIR}/libtesta.so.2: ""
}
EOF
atf_check pkg create -M testa.ucl -o ./repo
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
repositories: {
local: { url : file://${TMPDIR}/repo }
}
EOF
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testb" "testb" "2.0"
cat << EOF >> testb.ucl
shlibs_required: [ "libtesta.so.2" ]
files: {
${TMPDIR}/dep.so: ""
}
EOF
atf_check pkg create -M testb.ucl -o ./repo
atf_check \
-o inline:"Creating repository in ./repo: done\nPacking files for repository: done\n" \
pkg -C ./pkg.conf repo ./repo
atf_check \
-o ignore \
pkg -C ./pkg.conf update -f
atf_check \
pkg -C ./pkg.conf install -qy testb
}
upgrade_glob_abi_version_body() {
atf_skip_on Darwin Irrelevant on OSX
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testa" "testa" "1.0" "/" "${OS}:*"
cc -shared -Wl,-soname=libtesta.so.2 -o libtesta.so.2
ln -s libtesta.so.2 libtesta.so
cc -shared -Wl,-rpath=${TMPDIR} -L. -ltesta -o dep.so
cat << EOF >> testa.ucl
shlibs_provided: [ "libtesta.so.2" ]
files: {
${TMPDIR}/libtesta.so.2: ""
}
EOF
atf_check pkg create -M testa.ucl -o ./repo
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
repositories: {
local: { url : file://${TMPDIR}/repo }
}
EOF
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testb" "testb" "2.0"
cat << EOF >> testb.ucl
shlibs_required: [ "libtesta.so.2" ]
files: {
${TMPDIR}/dep.so: ""
}
EOF
atf_check pkg create -M testb.ucl -o ./repo
atf_check \
-o inline:"Creating repository in ./repo: done\nPacking files for repository: done\n" \
pkg -C ./pkg.conf repo ./repo
atf_check \
-o ignore \
pkg -C ./pkg.conf update -f
atf_check \
pkg -C ./pkg.conf install -qy testb
}
upgrade_glob_abi_arch_body() {
atf_skip_on Darwin Irrelevant on OSX
atf_skip_on Linux the versioning does not work for linux
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testa" "testa" "1.0" "/" "${OS}:16:*"
cc -shared -Wl,-soname=libtesta.so.2 -o libtesta.so.2
ln -s libtesta.so.2 libtesta.so
cc -shared -Wl,-rpath=${TMPDIR} -L. -ltesta -o dep.so
cat << EOF >> testa.ucl
shlibs_provided: [ "libtesta.so.2" ]
files: {
${TMPDIR}/libtesta.so.2: ""
}
EOF
atf_check pkg create -M testa.ucl -o ./repo
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
repositories: {
local: { url : file://${TMPDIR}/repo }
}
EOF
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "testb" "testb" "2.0" "/" "${OS}:16:*"
cat << EOF >> testb.ucl
shlibs_required: [ "libtesta.so.2" ]
files: {
${TMPDIR}/dep.so: ""
}
EOF
atf_check pkg create -M testb.ucl -o ./repo
atf_check \
-o inline:"Creating repository in ./repo: done\nPacking files for repository: done\n" \
pkg -C ./pkg.conf repo ./repo
atf_check \
-o ignore \
-e ignore \
pkg -o IGNORE_OSVERSION=yes -o ABI=${OS}:16:amd64 -o OSVERSION=1600000 -C ./pkg.conf update -f
atf_check \
-e ignore \
pkg -o IGNORE_OSVERSION=yes -o ABI=${OS}:16:amd64 -o OSVERSION=1600000 -C ./pkg.conf install -qy testb
}
upgrade_autoremove_body() {
# Install master v1 with olddep as automatic dependency
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "olddep" "olddep" "1.0"
atf_check -o ignore pkg register -A -M olddep.ucl
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "master" "master" "1.0"
cat << EOF >> master.ucl
deps: {
olddep {
origin: olddep,
version: "1.0"
}
}
EOF
atf_check -o ignore pkg register -M master.ucl
# Create master v2 in repo (no longer depends on olddep)
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "master2" "master" "2.0"
atf_check pkg create -M master2.ucl -o ./repo
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
AUTOREMOVE=YES
repositories: {
local: { url : file://${TMPDIR}/repo }
}
EOF
atf_check -o ignore pkg -C ./pkg.conf repo ./repo
atf_check -o ignore pkg -C ./pkg.conf update -f
# Upgrade: master 1.0 -> 2.0, olddep should be autoremoved
atf_check \
-o match:"Upgrading master" \
-o match:"Deinstalling olddep" \
-s exit:0 \
pkg -C ./pkg.conf upgrade -y
atf_check -s exit:0 pkg info -e master
atf_check -s exit:1 pkg info -e olddep
}
upgrade_autoremove_flag_body() {
# Same but with --autoremove flag instead of config
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "olddep" "olddep" "1.0"
atf_check -o ignore pkg register -A -M olddep.ucl
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "master" "master" "1.0"
cat << EOF >> master.ucl
deps: {
olddep {
origin: olddep,
version: "1.0"
}
}
EOF
atf_check -o ignore pkg register -M master.ucl
# Create master v2 in repo (no longer depends on olddep)
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "master2" "master" "2.0"
atf_check pkg create -M master2.ucl -o ./repo
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
repositories: {
local: { url : file://${TMPDIR}/repo }
}
EOF
atf_check -o ignore pkg -C ./pkg.conf repo ./repo
atf_check -o ignore pkg -C ./pkg.conf update -f
# Upgrade with --autoremove: olddep should be removed
atf_check \
-o match:"Upgrading master" \
-o match:"Deinstalling olddep" \
-s exit:0 \
pkg -C ./pkg.conf upgrade -y --autoremove
atf_check -s exit:0 pkg info -e master
atf_check -s exit:1 pkg info -e olddep
}
symlink_to_dir_upgrade_body() {
# PR #2041: when v1 has a symlink and v2 replaces it with a real
# directory containing files, pkg should remove the symlink before
# renaming the temporary directory into place.
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "1"
mkdir -p base
echo "content" > base/file
ln -s ../base errors-mx
echo "${TMPDIR}/base/file" > plist-1
echo "${TMPDIR}/errors-mx" >> plist-1
atf_check pkg create -M pkg.ucl -p plist-1
mkdir target
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-1.pkg
# Verify symlink was installed
atf_check test -L target/${TMPDIR}/errors-mx
# v2: replaces symlink with a real directory containing a file
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg" "pkg" "2"
rm errors-mx
mkdir errors-mx
echo "new content" > errors-mx/newfile
echo "${TMPDIR}/errors-mx/newfile" > plist-2
atf_check pkg create -M pkg.ucl -p plist-2
# Upgrade: should succeed despite symlink existing at target
atf_check \
-o ignore \
-s exit:0 \
pkg -o REPOS_DIR="${TMPDIR}" -r ${TMPDIR}/target install -Uy ${TMPDIR}/pkg-2.pkg
# Verify the directory replaced the symlink
atf_check test -d target/${TMPDIR}/errors-mx
atf_check test -f target/${TMPDIR}/errors-mx/newfile
}
newpkgversion_two_repos_body() {
# Issue #2023: when two repos provide the same newer version of "pkg",
# pkg upgrade could loop forever because newpkgversion was not reset
# when the solver found nothing to do.
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg1" "pkg" "1.0"
atf_check -o ignore pkg register -M pkg1.ucl
# Create two repos, both with pkg 2.0
atf_check -s exit:0 sh ${RESOURCEDIR}/test_subr.sh new_pkg "pkg2" "pkg" "2.0"
atf_check pkg create -M pkg2.ucl -o ./repo1
atf_check pkg create -M pkg2.ucl -o ./repo2
atf_check -o ignore pkg repo ./repo1
atf_check -o ignore pkg repo ./repo2
cat << EOF > pkg.conf
PKG_DBDIR=${TMPDIR}
REPOS_DIR=[]
repositories: {
repo1: { url : file://${TMPDIR}/repo1 }
repo2: { url : file://${TMPDIR}/repo2 }
}
EOF
atf_check -o ignore pkg -C ./pkg.conf update -f
# This must not loop forever; should exit 0
atf_check \
-o ignore \
-e empty \
-s exit:0 \
pkg -C ./pkg.conf upgrade -y
}
# Verify that "pkg upgrade -r <repo>" works on a disabled repository,
# as documented in the man page ("irrespective of the configured active
# status").
upgrade_disabled_repo_body()
{
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
atf_check -o ignore pkg register -M test.ucl
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "2"
atf_check pkg create -M test.ucl
atf_check -o ignore pkg repo .
mkdir repos
cat <<EOF > repos/myrepo.conf
myrepo: {
url: "file://${TMPDIR}",
enabled: no
}
EOF
atf_check \
-o match:"Updating myrepo" \
-s exit:0 \
pkg -R repos update -r myrepo
atf_check \
-o match:"Upgrading test from 1 to 2" \
-s exit:0 \
pkg -o REPOS_DIR="${TMPDIR}/repos" -o PKG_CACHEDIR="${TMPDIR}" \
upgrade -y -r myrepo
atf_check \
-o inline:"2\n" \
pkg query "%v" test
}
# Verify that "pkg upgrade -r <repo>" works when ALL repositories are disabled.
upgrade_all_disabled_repos_body()
{
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
atf_check -o ignore pkg register -M test.ucl
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "2"
atf_check pkg create -M test.ucl
atf_check -o ignore pkg repo .
mkdir repos
cat <<EOF > repos/repo1.conf
repo1: {
url: "file://${TMPDIR}",
enabled: no
}
EOF
cat <<EOF > repos/repo2.conf
repo2: {
url: "file://${TMPDIR}",
enabled: no
}
EOF
atf_check \
-o match:"Updating repo1" \
-s exit:0 \
pkg -R repos update -r repo1
atf_check \
-o match:"Upgrading test from 1 to 2" \
-s exit:0 \
pkg -o REPOS_DIR="${TMPDIR}/repos" -o PKG_CACHEDIR="${TMPDIR}" \
upgrade -y -r repo1
atf_check \
-o inline:"2\n" \
pkg query "%v" test
}
upgrade_vulnerable_body()
{
# Install v1 locally
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
atf_check -o ignore pkg register -M test.ucl
# Create v1.5 in repo
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1.5"
atf_check pkg create -M test.ucl
atf_check -o ignore pkg repo .
mkdir repoconf
cat <<EOF > repoconf/repo.conf
local: {
url: "file://${TMPDIR}",
enabled: true
}
EOF
# vuln.xml: test >=1.0 <2.0 is vulnerable
cat > vuln.xml << 'VULN'
<?xml version="1.0" encoding="utf-8"?>
<vuxml xmlns="http://www.vuxml.org/apps/vuxml-1">
<vuln vid="test-vuln-001">
<topic>Test vulnerability</topic>
<affects>
<package>
<name>test</name>
<range>
<ge>1.0</ge>
<lt>2.0</lt>
</range>
</package>
</affects>
<references>
<cvename>CVE-2024-00001</cvename>
</references>
</vuln>
</vuxml>
VULN
atf_check -o ignore \
pkg -o REPOS_DIR="${TMPDIR}/repoconf" -o PKG_CACHEDIR="${TMPDIR}" \
update
# Upgrade dry-run: should show vulnerability marker on the new version
atf_check \
-o match:"\(vulnerable!\)" \
-o match:"WARNING: 1 package.* have known vulnerabilities" \
-s exit:0 \
pkg -o REPOS_DIR="${TMPDIR}/repoconf" -o PKG_CACHEDIR="${TMPDIR}" \
upgrade -n
}
upgrade_options_changed_body()
{
# Install v1 with OPT1=on OPT2=off
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
cat <<EOF >> test.ucl
options: {
"OPT1": "on"
"OPT2": "off"
}
EOF
atf_check -o ignore pkg register -M test.ucl
# Create v1 in repo with OPT1=off OPT2=on (same version, options differ)
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
cat <<EOF >> test.ucl
options: {
"OPT1": "off"
"OPT2": "on"
}
EOF
atf_check pkg create -M test.ucl
atf_check -o ignore pkg repo .
mkdir repoconf
cat <<EOF > repoconf/repo.conf
local: {
url: "file://${TMPDIR}",
enabled: true
}
EOF
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}/repoconf" \
-o PKG_CACHEDIR="${TMPDIR}" update
# Upgrade dry-run: should show which options changed
atf_check \
-o match:"REINSTALL" \
-o match:"OPT1 \(on -> off\)" \
-o match:"OPT2 \(off -> on\)" \
-s exit:0 \
pkg -o REPOS_DIR="${TMPDIR}/repoconf" \
-o PKG_CACHEDIR="${TMPDIR}" upgrade -n
}
upgrade_options_added_removed_body()
{
# Install v1 with OPT1=on
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
cat <<EOF >> test.ucl
options: {
"OPT1": "on"
}
EOF
atf_check -o ignore pkg register -M test.ucl
# Create v1 in repo with OPT2=on (OPT1 removed, OPT2 added)
atf_check sh ${RESOURCEDIR}/test_subr.sh new_pkg "test" "test" "1"
cat <<EOF >> test.ucl
options: {
"OPT2": "on"
}
EOF
atf_check pkg create -M test.ucl
atf_check -o ignore pkg repo .
mkdir repoconf
cat <<EOF > repoconf/repo.conf
local: {
url: "file://${TMPDIR}",
enabled: true
}
EOF
atf_check -o ignore pkg -o REPOS_DIR="${TMPDIR}/repoconf" \
-o PKG_CACHEDIR="${TMPDIR}" update
# Upgrade dry-run: should show added/removed options
atf_check \
-o match:"REINSTALL" \
-o match:"OPT1 \(removed\)" \
-o match:"OPT2 \(added\)" \
-s exit:0 \
pkg -o REPOS_DIR="${TMPDIR}/repoconf" \
-o PKG_CACHEDIR="${TMPDIR}" upgrade -n
}