public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
* [PATCH v2 1/1] testsuite: add test for isar-built package with epoch
@ 2026-08-10 15:15 'Felix Moessbauer' via isar-users
  2026-08-12 14:26 ` Zhihang Wei
  0 siblings, 1 reply; 2+ messages in thread
From: 'Felix Moessbauer' via isar-users @ 2026-08-10 15:15 UTC (permalink / raw)
  To: isar-users; +Cc: akarpovich, Felix Moessbauer

This ensures that packages with different download filename and
location, as well as parts that need to be URL encoded are correctly
handled by the isar-apt download logic in rootfs_install_pkgs_isar_download.

Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
Changes since v1:

- exercises URI percent-decoding in test as well

 .../test-with-epoch/test-with-epoch_1.0.bb         | 14 ++++++++++++++
 testsuite/citest.py                                |  7 +++++++
 2 files changed, 21 insertions(+)
 create mode 100644 meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb

diff --git a/meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb b/meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb
new file mode 100644
index 00000000..a0e6f4ad
--- /dev/null
+++ b/meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb
@@ -0,0 +1,14 @@
+# This software is a part of Isar.
+# Copyright (C) 2026 Siemens AG
+#
+# SPDX-License-Identifier: MIT
+
+# Test that a .deb with an epoch and special characters ('+' and '~') in
+# its version is properly handled by isar-apt (exercises URI percent-decoding).
+
+inherit dpkg-raw
+
+MAINTAINER = "isar-users <isar-users@googlegroups.com>"
+DESCRIPTION = "Test package with epoch in version"
+
+CHANGELOG_V = "1:1.0+test~1-1"
diff --git a/testsuite/citest.py b/testsuite/citest.py
index fcd08c95..51a4da71 100644
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -485,6 +485,13 @@ class CrossTest(CIBaseTest):
             bitbake_extra_args=["-c", "rootfs_install"]
         )
 
+    def test_package_with_epoch(self):
+        self.init()
+        self.perform_build_test(
+            ['mc:qemuamd64-trixie:isar-image-base'],
+            image_install='test-with-epoch',
+            bitbake_extra_args=["-c", "rootfs_install"])
+
     def test_cross_riscv64(self):
         """
         :avocado: tags=riscv64
-- 
2.55.0

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/20260810151554.1967597-1-felix.moessbauer%40siemens.com.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v2 1/1] testsuite: add test for isar-built package with epoch
  2026-08-10 15:15 [PATCH v2 1/1] testsuite: add test for isar-built package with epoch 'Felix Moessbauer' via isar-users
@ 2026-08-12 14:26 ` Zhihang Wei
  0 siblings, 0 replies; 2+ messages in thread
From: Zhihang Wei @ 2026-08-12 14:26 UTC (permalink / raw)
  To: Felix Moessbauer, isar-users; +Cc: akarpovich

Applied to next, thanks.

Zhihang

On 8/10/26 17:15, 'Felix Moessbauer' via isar-users wrote:
> This ensures that packages with different download filename and
> location, as well as parts that need to be URL encoded are correctly
> handled by the isar-apt download logic in rootfs_install_pkgs_isar_download.
>
> Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
> ---
> Changes since v1:
>
> - exercises URI percent-decoding in test as well
>
>   .../test-with-epoch/test-with-epoch_1.0.bb         | 14 ++++++++++++++
>   testsuite/citest.py                                |  7 +++++++
>   2 files changed, 21 insertions(+)
>   create mode 100644 meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb
>
> diff --git a/meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb b/meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb
> new file mode 100644
> index 00000000..a0e6f4ad
> --- /dev/null
> +++ b/meta-test/recipes-app/test-with-epoch/test-with-epoch_1.0.bb
> @@ -0,0 +1,14 @@
> +# This software is a part of Isar.
> +# Copyright (C) 2026 Siemens AG
> +#
> +# SPDX-License-Identifier: MIT
> +
> +# Test that a .deb with an epoch and special characters ('+' and '~') in
> +# its version is properly handled by isar-apt (exercises URI percent-decoding).
> +
> +inherit dpkg-raw
> +
> +MAINTAINER = "isar-users <isar-users@googlegroups.com>"
> +DESCRIPTION = "Test package with epoch in version"
> +
> +CHANGELOG_V = "1:1.0+test~1-1"
> diff --git a/testsuite/citest.py b/testsuite/citest.py
> index fcd08c95..51a4da71 100644
> --- a/testsuite/citest.py
> +++ b/testsuite/citest.py
> @@ -485,6 +485,13 @@ class CrossTest(CIBaseTest):
>               bitbake_extra_args=["-c", "rootfs_install"]
>           )
>   
> +    def test_package_with_epoch(self):
> +        self.init()
> +        self.perform_build_test(
> +            ['mc:qemuamd64-trixie:isar-image-base'],
> +            image_install='test-with-epoch',
> +            bitbake_extra_args=["-c", "rootfs_install"])
> +
>       def test_cross_riscv64(self):
>           """
>           :avocado: tags=riscv64

-- 
You received this message because you are subscribed to the Google Groups "isar-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to isar-users+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/isar-users/797d2eb7-2d90-4215-86cc-53f3cf56d324%40ilbers.de.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-08-12 14:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-10 15:15 [PATCH v2 1/1] testsuite: add test for isar-built package with epoch 'Felix Moessbauer' via isar-users
2026-08-12 14:26 ` Zhihang Wei

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox