This commit adds the `pkgmgr_nix_store` volume mount (`/nix`) to all test runners (unit, integration, container sanity checks, and E2E tests). Previously only the Arch-based E2E container mounted a persistent `/nix` store, causing all other distros (Debian, Ubuntu, Fedora, CentOS, etc.) to download the entire Nix closure repeatedly during test runs. Changes: - Add `-v pkgmgr_nix_store:/nix` to: - scripts/test/test-container.sh - scripts/test/test-e2e.sh (remove Arch-only condition) - scripts/test/test-unit.sh - scripts/test/test-integration.sh - Ensures all test containers reuse the same Nix store. Benefits: - Significantly faster test execution after the first run. - Prevents redundant downloads from cache.nixos.org. - Ensures consistent Nix environments across all test distros. No functional changes to pkgmgr itself; only test infrastructure improved. https://chatgpt.com/share/693890f5-2f54-800f-b47e-1925da85b434
42 lines
1.3 KiB
Bash
Executable File
42 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "============================================================"
|
|
echo ">>> Running sanity test: verifying test containers start"
|
|
echo "============================================================"
|
|
|
|
for distro in $DISTROS; do
|
|
IMAGE="package-manager-test-$distro"
|
|
|
|
echo
|
|
echo "------------------------------------------------------------"
|
|
echo ">>> Testing container: $IMAGE"
|
|
echo "------------------------------------------------------------"
|
|
|
|
echo "[test-container] Running: docker run --rm --entrypoint pkgmgr $IMAGE --help"
|
|
echo
|
|
|
|
# Run the command and capture the output
|
|
if OUTPUT=$(docker run --rm \
|
|
-e PKGMGR_DEV=1 \
|
|
-v pkgmgr_nix_store:/nix \
|
|
-v "$(pwd):/src" \
|
|
-v "pkgmgr_nix_cache:/root/.cache/nix" \
|
|
"$IMAGE" 2>&1); then
|
|
echo "$OUTPUT"
|
|
echo
|
|
echo "[test-container] SUCCESS: $IMAGE responded to 'pkgmgr --help'"
|
|
|
|
else
|
|
echo "$OUTPUT"
|
|
echo
|
|
echo "[test-container] ERROR: $IMAGE failed to run 'pkgmgr --help'"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo
|
|
echo "============================================================"
|
|
echo ">>> All containers passed the sanity check"
|
|
echo "============================================================"
|