|
| 1 | +/********************************************************************** |
| 2 | + * Copyright (C) 2025 Red Hat, Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + * |
| 16 | + * SPDX-License-Identifier: Apache-2.0 |
| 17 | + ***********************************************************************/ |
| 18 | + |
| 19 | +import type { Locator, Page } from '@playwright/test'; |
| 20 | +import { expect as playExpect } from '@playwright/test'; |
| 21 | + |
| 22 | +import { BasePage } from '@podman-desktop/tests-playwright'; |
| 23 | + |
| 24 | +export class TroubleshootingPage extends BasePage { |
| 25 | + readonly heading: Locator; |
| 26 | + readonly header: Locator; |
| 27 | + readonly tabs: Locator; |
| 28 | + readonly tabContent: Locator; |
| 29 | + |
| 30 | + constructor(page: Page) { |
| 31 | + super(page); |
| 32 | + this.header = this.page.getByRole('region', { name: 'Header' }); |
| 33 | + this.heading = this.header.getByRole('heading', { name: 'Troubleshooting' }); |
| 34 | + this.tabs = this.page.getByRole('region', { name: 'Tabs' }); |
| 35 | + this.tabContent = this.page.getByRole('region', { name: 'Tab Content' }); |
| 36 | + } |
| 37 | + |
| 38 | + public async openRepairConnections(): Promise<void> { |
| 39 | + await this.openTab('Repair & Connections'); |
| 40 | + await playExpect(this.tabContent.getByRole('status', { name: 'container connections' })).toBeVisible(); |
| 41 | + } |
| 42 | + |
| 43 | + public async openStores(): Promise<void> { |
| 44 | + await this.openTab('Stores'); |
| 45 | + await playExpect(this.tabContent.getByRole('status', { name: 'stores' })).toBeVisible(); |
| 46 | + } |
| 47 | + |
| 48 | + public async openLogs(): Promise<void> { |
| 49 | + await this.openTab('Logs'); |
| 50 | + await playExpect(this.tabContent.getByText('Logs', { exact: true })).toBeVisible(); |
| 51 | + } |
| 52 | + |
| 53 | + public async openGatherLogs(): Promise<void> { |
| 54 | + await this.openTab('Gather Logs'); |
| 55 | + await playExpect(this.tabContent.getByText('Gather Log Files')).toBeVisible(); |
| 56 | + } |
| 57 | + |
| 58 | + private async openTab(tabName: string): Promise<void> { |
| 59 | + const link = this.tabs.getByRole('link', { name: tabName, exact: true }); |
| 60 | + await playExpect(link, `Tab Link ${tabName} is not visible`).toBeVisible(); |
| 61 | + await link.click(); |
| 62 | + } |
| 63 | + |
| 64 | + // return locator for better processing in playwright assertions |
| 65 | + public async getLogs(): Promise<Locator> { |
| 66 | + await this.openLogs(); |
| 67 | + const list = this.tabContent.getByRole('list', { name: 'logs', exact: true }); |
| 68 | + return list; |
| 69 | + } |
| 70 | + |
| 71 | + public async refreshStore(storeName: string): Promise<void> { |
| 72 | + await this.openStores(); |
| 73 | + const stores = this.tabContent.getByRole('list', { name: 'stores' }); |
| 74 | + let store = stores.getByRole('listitem', { name: storeName }); |
| 75 | + if (await store.count() <= 0) { |
| 76 | + const details = this.tabContent.getByRole('button', { name: 'open details' }).and(this.tabContent.getByText('auth providers')); |
| 77 | + await playExpect(details).toBeVisible(); |
| 78 | + store = details.locator('..').locator('..'); |
| 79 | + console.log(`Store: ${await store.innerHTML()}`); |
| 80 | + } |
| 81 | + await playExpect(store).toBeVisible(); |
| 82 | + await store.scrollIntoViewIfNeeded(); |
| 83 | + const refreshButton = store.getByRole('button', { name: 'Refresh' }); |
| 84 | + await playExpect(refreshButton).toBeEnabled(); |
| 85 | + await refreshButton.click(); |
| 86 | + } |
| 87 | + |
| 88 | + public async getContainerConnectionsStatus(): Promise<string> { |
| 89 | + await this.openRepairConnections(); |
| 90 | + const connectProviderRegion = this.tabContent.getByRole('region', { name: 'Container connections' }); |
| 91 | + const status = connectProviderRegion.getByRole('status', { name: 'container connections' }); |
| 92 | + await playExpect(status).toBeVisible(); |
| 93 | + return await status.innerText(); |
| 94 | + } |
| 95 | + |
| 96 | + public async reconnetProviders(): Promise<string> { |
| 97 | + await this.openRepairConnections(); |
| 98 | + const containerConnectionsRegion = this.tabContent.getByRole('region', { name: 'Container connections' }); |
| 99 | + const reconnectButton = containerConnectionsRegion.getByRole('button', { name: 'Reconnect providers' }); |
| 100 | + await playExpect(reconnectButton).toBeEnabled(); |
| 101 | + await reconnectButton.click(); |
| 102 | + const status = containerConnectionsRegion.getByRole('status', { name: 'Reconnect Providers' }); |
| 103 | + await playExpect(status).toBeVisible(); |
| 104 | + return await status.innerText(); |
| 105 | + } |
| 106 | +} |
0 commit comments