From e0d0757ff117b9cfe7cb42a5e23313d40610e315 Mon Sep 17 00:00:00 2001
From: Walter Lozano <walter.lozano@collabora.com>
Date: Mon, 9 Oct 2023 10:02:35 -0300
Subject: [PATCH] Disable HTTP 2 in flapak tests on SDK

Following the same approach used at image generation, disable HTTP 2 in
flatpak to overcome connections issues as OSTree does not support retries.

https://gitlab.apertis.org/infrastructure/apertis-image-recipes/-/merge_requests/612
https://github.com/ostreedev/ostree/issues/2570
https://gitlab.apertis.org/infrastructure/apertis-issues/-/issues/436

Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
---
 test-cases/flatpak-run-demo-hmi-app.yaml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test-cases/flatpak-run-demo-hmi-app.yaml b/test-cases/flatpak-run-demo-hmi-app.yaml
index 742585ec..f5ffe99f 100644
--- a/test-cases/flatpak-run-demo-hmi-app.yaml
+++ b/test-cases/flatpak-run-demo-hmi-app.yaml
@@ -20,6 +20,8 @@ run:
   steps:
     - "Add the Apertis Flatpak repository (only needed on SDK images)"
     - $ flatpak --user remote-add --if-not-exists apertis https://images.apertis.org/flatpak/repo/apertis.flatpakrepo
+    - "Force HTTP 1.1 as OSTree does not support retries over HTTP 2 (only needed on SDK images)"
+    - $ ostree --repo=/home/user/.local/share/flatpak/repo config set 'remote "apertis".http2' false
     - "Install the Flatpak example application (only needed on SDK images)"
     - $ flatpak --user install --reinstall org.apertis.hmi.gnome_font_viewer//${APERTIS_RELEASE}
     - "On the agl-compositor click on the menu icon"
-- 
GitLab