From 9e5205c2b2e772a5b5359f9e3668e2d550331b8e Mon Sep 17 00:00:00 2001 From: SkorikSergey Date: Fri, 24 Jul 2026 15:07:22 +0300 Subject: [PATCH] add trust author dialog checking to kubedock tests --- tests/e2e/specs/api/BuildPushRunPodmanContainerAPI.spec.ts | 1 + .../miscellaneous/KubedockPodmanPersistUserHomeTest.spec.ts | 1 + tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/tests/e2e/specs/api/BuildPushRunPodmanContainerAPI.spec.ts b/tests/e2e/specs/api/BuildPushRunPodmanContainerAPI.spec.ts index 5c59ae4ad5d..2d1878e8c19 100644 --- a/tests/e2e/specs/api/BuildPushRunPodmanContainerAPI.spec.ts +++ b/tests/e2e/specs/api/BuildPushRunPodmanContainerAPI.spec.ts @@ -134,6 +134,7 @@ oc logs test-hello-pod await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.x86_64'), 'Dockerfile not found in the project tree' ).not.undefined; + await projectAndFileTests.performTrustDialogs(); }); test('Build and push container image from workspace', function (): void { diff --git a/tests/e2e/specs/miscellaneous/KubedockPodmanPersistUserHomeTest.spec.ts b/tests/e2e/specs/miscellaneous/KubedockPodmanPersistUserHomeTest.spec.ts index 225cf3cb986..4be1c54638c 100644 --- a/tests/e2e/specs/miscellaneous/KubedockPodmanPersistUserHomeTest.spec.ts +++ b/tests/e2e/specs/miscellaneous/KubedockPodmanPersistUserHomeTest.spec.ts @@ -120,6 +120,7 @@ suite(`Test image build with persistUserHome enabled (kubedock and podman) ${BAS test('Check the project files were imported', async function (): Promise { const projectSection: ViewSection = await projectAndFileTests.getProjectViewSession(); expect(await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.ppc64le'), 'Files not imported').not.undefined; + await projectAndFileTests.performTrustDialogs(); }); test('Create and check container runs using kubedock and podman with persistUserHome', function (): void { diff --git a/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts b/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts index 6750c06920a..238e5f9f70b 100644 --- a/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts +++ b/tests/e2e/specs/miscellaneous/KubedockPodmanTest.spec.ts @@ -107,6 +107,7 @@ suite( test('Check the project files were imported', async function (): Promise { const projectSection: ViewSection = await projectAndFileTests.getProjectViewSession(); expect(await projectAndFileTests.getProjectTreeItem(projectSection, 'Dockerfile.ppc64le'), 'Files not imported').not.undefined; + await projectAndFileTests.performTrustDialogs(); }); test('Create and check container runs using kubedock and podman', function (): void {