From cbffab246997fb5a06211dfb706b54e5ae5bb59f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 16:58:51 +0200 Subject: Adding upstream version 1.21.22. Signed-off-by: Daniel Baumann --- tests/t-triggers-selfcycle/Makefile | 25 ++++++++++++++++++++++ .../pkg-trigger-activate/DEBIAN/control | 7 ++++++ .../pkg-trigger-activate/DEBIAN/postinst | 10 +++++++++ .../pkg-trigger-activate/DEBIAN/triggers | 2 ++ .../pkg-trigger-unpack/DEBIAN/control | 7 ++++++ .../pkg-trigger-unpack/DEBIAN/postinst | 10 +++++++++ .../pkg-trigger-unpack/DEBIAN/triggers | 1 + .../pkg-trigger-unpack/test/trigger/test-file | 1 + 8 files changed, 63 insertions(+) create mode 100644 tests/t-triggers-selfcycle/Makefile create mode 100644 tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/control create mode 100755 tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/postinst create mode 100644 tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/triggers create mode 100644 tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/control create mode 100755 tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/postinst create mode 100644 tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/triggers create mode 100644 tests/t-triggers-selfcycle/pkg-trigger-unpack/test/trigger/test-file (limited to 'tests/t-triggers-selfcycle') diff --git a/tests/t-triggers-selfcycle/Makefile b/tests/t-triggers-selfcycle/Makefile new file mode 100644 index 0000000..cd916f8 --- /dev/null +++ b/tests/t-triggers-selfcycle/Makefile @@ -0,0 +1,25 @@ +TESTS_DEB := pkg-trigger-unpack pkg-trigger-activate + +include ../Test.mk + +test-case: + # Self trigger cycles cannot happen with unpacked files. + $(DPKG_INSTALL) pkg-trigger-unpack.deb + $(DPKG_UNPACK) pkg-trigger-unpack.deb + $(DPKG_CONFIGURE) pkg-trigger-unpack + $(DPKG_CONFIGURE) --pending + $(DPKG_PURGE) pkg-trigger-unpack + + # Self trigger cycles cannot happen with activate directives. + $(DPKG_INSTALL) pkg-trigger-activate.deb + $(DPKG_UNPACK) pkg-trigger-activate.deb + $(DPKG_CONFIGURE) pkg-trigger-activate + $(DPKG_CONFIGURE) --pending + $(DPKG_PURGE) pkg-trigger-activate + + # Cleanup. + $(DPKG_PURGE) pkg-trigger-unpack + $(DPKG_PURGE) pkg-trigger-activate + +test-clean: + -$(DPKG_PURGE) pkg-trigger-unpack pkg-trigger-activate diff --git a/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/control b/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/control new file mode 100644 index 0000000..30a26fa --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pkg-trigger-activate +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers +Architecture: all +Description: test package - interested in files on /test/trigger/ diff --git a/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/postinst b/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/postinst new file mode 100755 index 0000000..4039f5b --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/postinst @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +case "$1" in + triggered) + echo "Pass: triggers processed" + ;; +esac + +exit 0 diff --git a/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/triggers b/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/triggers new file mode 100644 index 0000000..9ca0c8c --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-activate/DEBIAN/triggers @@ -0,0 +1,2 @@ +interest /test/trigger +activate /test/trigger diff --git a/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/control b/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/control new file mode 100644 index 0000000..45b7d2a --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pkg-trigger-unpack +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers +Architecture: all +Description: test package - interested in files on /test/trigger/ diff --git a/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/postinst b/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/postinst new file mode 100755 index 0000000..4039f5b --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/postinst @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +case "$1" in + triggered) + echo "Pass: triggers processed" + ;; +esac + +exit 0 diff --git a/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/triggers b/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/triggers new file mode 100644 index 0000000..3b047af --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-unpack/DEBIAN/triggers @@ -0,0 +1 @@ +interest /test/trigger diff --git a/tests/t-triggers-selfcycle/pkg-trigger-unpack/test/trigger/test-file b/tests/t-triggers-selfcycle/pkg-trigger-unpack/test/trigger/test-file new file mode 100644 index 0000000..647063d --- /dev/null +++ b/tests/t-triggers-selfcycle/pkg-trigger-unpack/test/trigger/test-file @@ -0,0 +1 @@ +activating file -- cgit v1.2.3