Files
infix/test/.env
Joachim Wiberg 905df0dab7 test: verify container upgrade
This commit adds four (small) container images to the Infamy test container
which are used in the new container upgrade test.  The test verifies that a
mutable container can be upgraded and that old images are properly cleaned
up from the container store.

Fixes #624

Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
2025-10-23 15:23:56 +02:00

49 lines
1.0 KiB
Bash

# Set $testdir before sourcing these envs -*-shell-script-*-
# shellcheck disable=SC2034,SC2154
# Current container image
INFIX_TEST=ghcr.io/kernelkit/infix-test:2.6
ixdir=$(readlink -f "$testdir/..")
logdir=$(readlink -f "$testdir/.log")
envdir="$HOME/.infix/venv"
qeneth="$testdir/qeneth/qeneth"
runners="podman docker"
#
# Interactive prompt in 'make test-sh'
#
build_ps1()
{
local time="\[\e[1;32m\]" # Bold green for time
local host="\[\e[1;34m\]" # Bold blue for hostname
local dir="\[\e[1;33m\]" # Bold yellow for working directory
local reset="\[\e[0m\]" # Reset color
printf "${time}\$(date "+%%H:%%M:%%S") ${host}\h$1${reset}:${dir}\W${reset} # "
}
#
# Figure out available container runner
#
runner()
{
for r in $runners; do
which "$r" >/dev/null && {
echo "$r"
return
}
done
echo "ERROR: No container manager found (tried \"$runners\")" >&2
exit 1
}
#
# Returns the latest started infamy container
#
infamy()
{
$(runner) ps -f name='infamy.*' --format '{{.Names}}' |tail -1
}