From 851b6a097165af4d51c0db01b5e05256e5006896 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:00:48 +0200 Subject: Adding upstream version 2.6.1. Signed-off-by: Daniel Baumann --- .../test-bug-596498-trusted-unsigned-repo | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100755 test/integration/test-bug-596498-trusted-unsigned-repo (limited to 'test/integration/test-bug-596498-trusted-unsigned-repo') diff --git a/test/integration/test-bug-596498-trusted-unsigned-repo b/test/integration/test-bug-596498-trusted-unsigned-repo new file mode 100755 index 0000000..4d0e3dc --- /dev/null +++ b/test/integration/test-bug-596498-trusted-unsigned-repo @@ -0,0 +1,75 @@ +#!/bin/sh +set -e + +TESTDIR="$(readlink -f "$(dirname "$0")")" +. "$TESTDIR/framework" +setupenvironment +configarchitecture 'i386' + +buildsimplenativepackage 'cool' 'i386' '1.0' 'unstable' + +msgmsg 'default setup' +setupaptarchive + +aptgetupdate() { + rm -rf rootdir/var/lib/apt/ rootdir/var/cache/apt/*.bin + ${1:-testwarning} aptget update --allow-insecure-repositories +} + +PKGTEXT="$(aptget install cool --assume-no -d | head -n 8)" +DOWNLOG="$(echo "$PKGTEXT" | tail -n 1)" +PKGTEXT="$(echo "$PKGTEXT" | head -n 7)" +DEBFILE='rootdir/etc/apt/sources.list.d/apt-test-unstable-*.list' + +testsuccessequal "$PKGTEXT +$DOWNLOG +Download complete and in download only mode" aptget install cool --assume-no -d + +testsuccessequal "$PKGTEXT +$DOWNLOG +Download complete and in download only mode" aptget install cool --assume-no -d --allow-unauthenticated + +msgmsg 'sources marked trusted=no' +sed -i -e 's#\(deb\(-src\)\?\) #\1 [trusted=no] #' $DEBFILE +aptgetupdate 'testsuccess' + +testfailureequal "$PKGTEXT +WARNING: The following packages cannot be authenticated! + cool +Install these packages without verification? [y/N] N +E: Some packages could not be authenticated" aptget install cool --assume-no -d + +configarchitecture 'amd64' 'i386' +testequal "$(echo "$PKGTEXT" | sed 's#cool$#cool:i386#g') +WARNING: The following packages cannot be authenticated! + cool:i386 +Authentication warning overridden. +$DOWNLOG +Download complete and in download only mode" aptget install cool:i386 --assume-no -d --allow-unauthenticated +configarchitecture 'i386' + +find aptarchive/ \( -name 'Release.gpg' -o -name 'InRelease' \) -delete +msgmsg 'unsigned repo' +sed -i -e 's#\(deb\(-src\)\?\) \[trusted=no\] #\1 #' $DEBFILE +aptgetupdate + +testfailureequal "$PKGTEXT +WARNING: The following packages cannot be authenticated! + cool +Install these packages without verification? [y/N] N +E: Some packages could not be authenticated" aptget install cool --assume-no -d + +testsuccessequal "$PKGTEXT +WARNING: The following packages cannot be authenticated! + cool +Authentication warning overridden. +$DOWNLOG +Download complete and in download only mode" aptget install cool --assume-no -d --allow-unauthenticated + +msgmsg 'sources marked trusted=yes' +sed -i -e 's#\(deb\(-src\)\?\) #\1 [trusted=yes] #' $DEBFILE +aptgetupdate 'testsuccess' + +testsuccessequal "$PKGTEXT +$DOWNLOG +Download complete and in download only mode" aptget install cool --assume-no -d -- cgit v1.2.3