Skip to content

Commit f620980

Browse files
committed
chore(tests): added connection dialog handling
Signed-off-by: Tamara Babalova <[email protected]>
1 parent 94edbd3 commit f620980

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

tests/playwright/src/model/pages/create-machine-page.ts

+24-1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export class CreateMachinePage extends BasePage {
6565
isRootful: boolean = true,
6666
enableUserNet: boolean = false,
6767
startNow: boolean = true,
68+
setAsDefault: boolean = true,
6869
): Promise<ResourcesPage> {
6970
await playExpect(this.podmanMachineConfiguration).toBeVisible();
7071
await this.podmanMachineName.fill(machineName);
@@ -82,11 +83,14 @@ export class CreateMachinePage extends BasePage {
8283
}
8384

8485
await this.createMachineButton.click();
86+
await this.page.waitForTimeout(60000);
8587

8688
const successfulCreationMessage = this.page.getByText('Successful operation');
8789
const goBackToResourcesButton = this.page.getByRole('button', { name: 'Go back to resources' });
8890

89-
await playExpect(successfulCreationMessage).toBeVisible({ timeout: 100000 });
91+
await this.handleConnectionDialog(machineName, setAsDefault);
92+
93+
await playExpect(successfulCreationMessage).toBeVisible({ timeout: 10000 });
9094
await playExpect(goBackToResourcesButton).toBeVisible();
9195
await goBackToResourcesButton.click();
9296

@@ -115,4 +119,23 @@ export class CreateMachinePage extends BasePage {
115119
const clickableCheckbox = upperElement.getByText(checkText);
116120
await clickableCheckbox.click();
117121
}
122+
123+
async handleConnectionDialog(machineName: string, setAsDefault: boolean): Promise<void> {
124+
const connectionDialog = this.page.getByRole('dialog', { name: 'Podman' });
125+
const dialogMessage = connectionDialog.getByText(
126+
new RegExp(
127+
"Podman Machine '" +
128+
machineName +
129+
"' is running but not the default machine .+ Do you want to set it as default?",
130+
),
131+
);
132+
if ((await connectionDialog.isVisible()) && (await dialogMessage.isVisible())) {
133+
let handleButtonName = 'Yes';
134+
if (!setAsDefault) {
135+
handleButtonName = 'Ignore';
136+
}
137+
const handleButton = connectionDialog.getByRole('button', { name: handleButtonName });
138+
await handleButton.click();
139+
}
140+
}
118141
}

tests/playwright/src/specs/podman-machine-rootless.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ describe.skipIf(os.platform() === 'linux')('Rootless Podman machine Verification
6666
await createMachineButton.click();
6767

6868
const createMachinePage = new CreateMachinePage(page);
69-
await createMachinePage.createMachine(PODMAN_MACHINE_NAME, false, false, true);
69+
await createMachinePage.createMachine(PODMAN_MACHINE_NAME, false, false, true, false);
70+
await createMachinePage.handleConnectionDialog(PODMAN_MACHINE_NAME, false);
7071

7172
const machineBox = new ResourcesPodmanConnections(page, MACHINE_VISIBLE_NAME);
7273
const connectionStatusLabel = await machineBox.machineConnectionStatus.textContent();

0 commit comments

Comments
 (0)