From 867e08aa2034d79fdc6cf7995bd29d48b505e438 Mon Sep 17 00:00:00 2001
From: Neil-Jocelyn Schark <neil.schark@h-da.de>
Date: Mon, 20 Jan 2025 15:49:43 +0000
Subject: [PATCH 1/4] cleanup

---
 .gitlab-ci.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0fe06ad0..f60ab4f4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -189,6 +189,8 @@ integration-test-aes:
         - go version
     script:
         - make integration-test-aes
+    after_script:
+        - ./scripts/remove_go_as_user.sh
 
 integration-test-otp:
     tags:
@@ -206,3 +208,5 @@ integration-test-otp:
         - go version
     script:
         - make integration-test-otp
+    after_script:
+        - ./scripts/remove_go_as_user.sh
-- 
GitLab


From 354743245ccc002de22941fc3b359d28c43ea6ac Mon Sep 17 00:00:00 2001
From: Neil-Jocelyn Schark <neil.schark@h-da.de>
Date: Mon, 20 Jan 2025 15:54:09 +0000
Subject: [PATCH 2/4] add needs

---
 .gitlab-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f60ab4f4..fcce1b19 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -176,7 +176,7 @@ unit-tests:
 integration-test-aes:
     tags:
         - shell
-    needs: []
+    needs: ["patch-qkdn-controller", "patch-routing-app"]
     variables:
         DEPENDENCY_PROXY: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/
     before_script:
@@ -195,7 +195,7 @@ integration-test-aes:
 integration-test-otp:
     tags:
         - shell
-    needs: []
+    needs: ["patch-qkdn-controller", "patch-routing-app"]
     variables:
         DEPENDENCY_PROXY: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/
     before_script:
-- 
GitLab


From 6d10f716f1e9e9fb9636d510bec4dc969621e0d9 Mon Sep 17 00:00:00 2001
From: Neil-Jocelyn Schark <neil.schark@h-da.de>
Date: Mon, 20 Jan 2025 15:55:47 +0000
Subject: [PATCH 3/4] wip

---
 .gitlab-ci.yml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fcce1b19..331a1e2f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -189,8 +189,6 @@ integration-test-aes:
         - go version
     script:
         - make integration-test-aes
-    after_script:
-        - ./scripts/remove_go_as_user.sh
 
 integration-test-otp:
     tags:
@@ -208,5 +206,3 @@ integration-test-otp:
         - go version
     script:
         - make integration-test-otp
-    after_script:
-        - ./scripts/remove_go_as_user.sh
-- 
GitLab


From 19efe323eee87ee7d8ec308bce8d902f12c3012a Mon Sep 17 00:00:00 2001
From: Neil-Jocelyn Schark <neil.schark@h-da.de>
Date: Mon, 20 Jan 2025 16:15:59 +0000
Subject: [PATCH 4/4] add routing option

---
 integration-tests/config/controller/routing-config.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/integration-tests/config/controller/routing-config.yaml b/integration-tests/config/controller/routing-config.yaml
index 4611c084..14988a66 100644
--- a/integration-tests/config/controller/routing-config.yaml
+++ b/integration-tests/config/controller/routing-config.yaml
@@ -5,3 +5,4 @@ UserPW: "TestPassword"
 AppName: "dq-routing"
 RegistrationToken: "SecurePresharedToken"
 GrpcAddress: ":54321"
+RoutingOptions: "UseAbsoluteKeyFillLevel"
-- 
GitLab