Skip to content

Commit 6bc1826

Browse files
authored
chore(test): registry test dependency fix (podman-desktop#8936)
Signed-off-by: xbabalov <[email protected]>
1 parent f80ae0f commit 6bc1826

File tree

1 file changed

+28
-30
lines changed

1 file changed

+28
-30
lines changed

tests/playwright/src/specs/registry.spec.ts

+28-30
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ test.afterAll(async ({ runner }) => {
3838
await runner.close();
3939
});
4040

41-
test.describe.serial('Registries handling verification', () => {
41+
test.describe('Registries handling verification', () => {
4242
test('Check Registries page components and presence of default registries', async ({ navigationBar }) => {
4343
const settingsBar = await navigationBar.openSettings();
4444
const registryPage = await settingsBar.openTabPage(RegistriesPage);
@@ -52,39 +52,37 @@ test.describe.serial('Registries handling verification', () => {
5252
}
5353
});
5454

55-
test.describe.serial('Registry addition workflow verification', () => {
56-
test('Cannot add invalid registry', async ({ page, navigationBar }) => {
57-
await navigationBar.openDashboard();
58-
const settingsBar = await navigationBar.openSettings();
59-
const registryPage = await settingsBar.openTabPage(RegistriesPage);
60-
61-
await registryPage.createRegistry('invalidUrl', 'invalidName', 'invalidPswd');
62-
const urlErrorMsg = page.getByText(
63-
/Unable to find auth info for https:\/\/invalidUrl\/v2\/\. Error: RequestError: getaddrinfo [A-Z_]+ invalidurl$/,
64-
);
65-
await playExpect(urlErrorMsg).toBeVisible({ timeout: 50000 });
66-
await playExpect(registryPage.cancelDialogButton).toBeEnabled();
67-
await registryPage.cancelDialogButton.click();
68-
69-
await registryPage.createRegistry(registryUrl, 'invalidName', 'invalidPswd');
70-
const credsErrorMsg = page.getByText('Wrong Username or Password.');
71-
await playExpect(credsErrorMsg).toBeVisible();
72-
await playExpect(registryPage.cancelDialogButton).toBeEnabled();
73-
await registryPage.cancelDialogButton.click();
74-
});
55+
test('Cannot add invalid registry', async ({ page, navigationBar }) => {
56+
await navigationBar.openDashboard();
57+
const settingsBar = await navigationBar.openSettings();
58+
const registryPage = await settingsBar.openTabPage(RegistriesPage);
59+
60+
await registryPage.createRegistry('invalidUrl', 'invalidName', 'invalidPswd');
61+
const urlErrorMsg = page.getByText(
62+
/Unable to find auth info for https:\/\/invalidUrl\/v2\/\. Error: RequestError: getaddrinfo [A-Z_]+ invalidurl$/,
63+
);
64+
await playExpect(urlErrorMsg).toBeVisible({ timeout: 50000 });
65+
await playExpect(registryPage.cancelDialogButton).toBeEnabled();
66+
await registryPage.cancelDialogButton.click();
67+
68+
await registryPage.createRegistry(registryUrl, 'invalidName', 'invalidPswd');
69+
const credsErrorMsg = page.getByText('Wrong Username or Password.');
70+
await playExpect(credsErrorMsg).toBeVisible();
71+
await playExpect(registryPage.cancelDialogButton).toBeEnabled();
72+
await registryPage.cancelDialogButton.click();
73+
});
7574

76-
test.describe.serial(() => {
77-
test.skip(!canTestRegistry(), 'Registry tests are disabled');
75+
test.describe.serial('Registry addition workflow verification', () => {
76+
test.skip(!canTestRegistry(), 'Registry tests are disabled');
7877

79-
test('Valid registry addition verification', async ({ page }) => {
80-
const registryPage = new RegistriesPage(page);
78+
test('Valid registry addition verification', async ({ page }) => {
79+
const registryPage = new RegistriesPage(page);
8180

82-
await registryPage.createRegistry(registryUrl, registryUsername, registryPswdSecret);
81+
await registryPage.createRegistry(registryUrl, registryUsername, registryPswdSecret);
8382

84-
const registryBox = registryPage.registriesTable.getByLabel(registryName);
85-
const username = registryBox.getByText(registryUsername);
86-
await playExpect(username).toBeVisible({ timeout: 50000 });
87-
});
83+
const registryBox = registryPage.registriesTable.getByLabel(registryName);
84+
const username = registryBox.getByText(registryUsername);
85+
await playExpect(username).toBeVisible({ timeout: 50000 });
8886
});
8987

9088
test('Registry editing availability and invalid credentials verification', async ({ page }) => {

0 commit comments

Comments
 (0)