mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-24 04:51:51 +00:00
496 lines
16 KiB
TypeScript
496 lines
16 KiB
TypeScript
import { Page, Locator, expect } from "@playwright/test";
|
|
import { BasePage } from "../base-page";
|
|
|
|
// AWS provider data
|
|
export interface AWSProviderData {
|
|
accountId: string;
|
|
alias?: string;
|
|
roleArn?: string;
|
|
externalId?: string;
|
|
accessKeyId?: string;
|
|
secretAccessKey?: string;
|
|
}
|
|
|
|
// AWS credential options
|
|
export const AWS_CREDENTIAL_OPTIONS = {
|
|
AWS_ROLE_ARN: "role",
|
|
AWS_CREDENTIALS: "credentials"
|
|
} as const;
|
|
|
|
// AWS credential type
|
|
type AWSCredentialType = (typeof AWS_CREDENTIAL_OPTIONS)[keyof typeof AWS_CREDENTIAL_OPTIONS];
|
|
|
|
// AWS provider credential
|
|
export interface AWSProviderCredential {
|
|
type: AWSCredentialType;
|
|
roleArn?: string;
|
|
externalId?: string;
|
|
accessKeyId?: string;
|
|
secretAccessKey?: string;
|
|
}
|
|
|
|
// Providers page
|
|
export class ProvidersPage extends BasePage {
|
|
|
|
// Button to add a new cloud provider
|
|
readonly addProviderButton: Locator;
|
|
readonly providersTable: Locator;
|
|
|
|
// Provider selection elements
|
|
readonly awsProviderRadio: Locator;
|
|
readonly gcpProviderRadio: Locator;
|
|
readonly azureProviderRadio: Locator;
|
|
readonly m365ProviderRadio: Locator;
|
|
readonly kubernetesProviderRadio: Locator;
|
|
readonly githubProviderRadio: Locator;
|
|
|
|
// AWS provider form elements
|
|
readonly accountIdInput: Locator;
|
|
readonly aliasInput: Locator;
|
|
readonly nextButton: Locator;
|
|
readonly backButton: Locator;
|
|
readonly saveButton: Locator;
|
|
readonly launchScanButton: Locator;
|
|
|
|
// AWS credentials type selection
|
|
readonly roleCredentialsRadio: Locator;
|
|
readonly staticCredentialsRadio: Locator;
|
|
|
|
// AWS role credentials form
|
|
readonly roleArnInput: Locator;
|
|
readonly externalIdInput: Locator;
|
|
|
|
// AWS static credentials form
|
|
readonly accessKeyIdInput: Locator;
|
|
readonly secretAccessKeyInput: Locator;
|
|
|
|
// Delete button
|
|
readonly deleteProviderConfirmationButton: Locator;
|
|
|
|
constructor(page: Page) {
|
|
super(page);
|
|
|
|
// Button to add a new cloud provider
|
|
this.addProviderButton = page.getByRole("button", { name: "Add Cloud Provider", exact: true });
|
|
|
|
// Table displaying existing providers
|
|
this.providersTable = page.getByRole("table");
|
|
|
|
// Radio buttons to select the type of cloud provider
|
|
this.awsProviderRadio = page.getByRole("radio", {
|
|
name: /Amazon Web Services/i,
|
|
});
|
|
this.gcpProviderRadio = page.getByRole("radio", {
|
|
name: /Google Cloud Platform/i,
|
|
});
|
|
this.azureProviderRadio = page.getByRole("radio", {
|
|
name: /Microsoft Azure/i,
|
|
});
|
|
this.m365ProviderRadio = page.getByRole("radio", {
|
|
name: /Microsoft 365/i,
|
|
});
|
|
this.kubernetesProviderRadio = page.getByRole("radio", {
|
|
name: /Kubernetes/i,
|
|
});
|
|
this.githubProviderRadio = page.getByRole("radio", { name: /GitHub/i });
|
|
|
|
// AWS provider form inputs
|
|
this.accountIdInput = page.getByRole("textbox", { name: "Account ID" });
|
|
this.aliasInput = page.getByRole("textbox", { name: "Provider alias (optional)" });
|
|
|
|
// Navigation buttons in the form (next and back)
|
|
this.nextButton = page
|
|
.locator("form")
|
|
.getByRole("button", { name: "Next", exact: true });
|
|
this.backButton = page.getByRole("button", { name: "Back" });
|
|
|
|
// Button to save the form
|
|
this.saveButton = page.getByRole("button", { name: "Save", exact: true });
|
|
|
|
// Button to launch a scan
|
|
this.launchScanButton = page.getByRole("button", {
|
|
name: "Launch scan",
|
|
exact: true,
|
|
});
|
|
|
|
// Radios for selecting AWS credentials method
|
|
this.roleCredentialsRadio = page.getByRole("radio", {
|
|
name: /Connect assuming IAM Role/i,
|
|
});
|
|
this.staticCredentialsRadio = page.getByRole("radio", {
|
|
name: /Connect via Credentials/i,
|
|
});
|
|
|
|
// Inputs for IAM Role credentials
|
|
this.roleArnInput = page.getByRole("textbox", { name: "Role ARN" });
|
|
this.externalIdInput = page.getByRole("textbox", { name: "External ID" });
|
|
|
|
// Inputs for static credentials
|
|
this.accessKeyIdInput = page.getByRole("textbox", { name: "Access Key ID" });
|
|
this.secretAccessKeyInput = page.getByRole("textbox", { name: "Secret Access Key" });
|
|
|
|
// Delete button in confirmation modal
|
|
this.deleteProviderConfirmationButton = page.getByRole("button", {
|
|
name: "Delete",
|
|
exact: true,
|
|
});
|
|
}
|
|
|
|
async goto(): Promise<void> {
|
|
// Go to the providers page
|
|
|
|
await super.goto("/providers");
|
|
}
|
|
|
|
async clickAddProvider(): Promise<void> {
|
|
// Click the add provider button
|
|
|
|
await this.addProviderButton.click();
|
|
await this.waitForPageLoad();
|
|
}
|
|
|
|
async selectAWSProvider(): Promise<void> {
|
|
// Prefer label-based click for radios, force if overlay intercepts
|
|
await this.awsProviderRadio.click({ force: true });
|
|
await this.waitForPageLoad();
|
|
}
|
|
|
|
async fillAWSProviderDetails(data: AWSProviderData): Promise<void> {
|
|
// Fill the AWS provider details
|
|
|
|
await this.accountIdInput.fill(data.accountId);
|
|
|
|
if (data.alias) {
|
|
await this.aliasInput.fill(data.alias);
|
|
}
|
|
}
|
|
|
|
async clickNext(): Promise<void> {
|
|
// The wizard interface may use different labels for its primary action button on each step.
|
|
// This function determines which button to click depending on the current URL and page content.
|
|
|
|
// Get the current page URL
|
|
const url = this.page.url();
|
|
|
|
// If on the "connect-account" step, click the "Next" button
|
|
if (/\/providers\/connect-account/.test(url)) {
|
|
await this.nextButton.click();
|
|
await this.waitForPageLoad();
|
|
return;
|
|
}
|
|
|
|
// If on the "add-credentials" step, check for "Save" and "Next" buttons
|
|
if (/\/providers\/add-credentials/.test(url)) {
|
|
// Some UI implementations use "Save" instead of "Next" for primary action
|
|
const saveBtn = this.saveButton;
|
|
if (await saveBtn.count()) {
|
|
await saveBtn.click();
|
|
await this.waitForPageLoad();
|
|
return;
|
|
}
|
|
// If "Save" is not present, try clicking the "Next" button
|
|
if (await this.nextButton.count()) {
|
|
await this.nextButton.click();
|
|
await this.waitForPageLoad();
|
|
return;
|
|
}
|
|
}
|
|
|
|
// If on the "test-connection" step, click the "Launch scan" button
|
|
if (/\/providers\/test-connection/.test(url)) {
|
|
const buttonByText = this.page
|
|
.locator("button")
|
|
.filter({ hasText: "Launch scan" });
|
|
|
|
await buttonByText.click();
|
|
await this.waitForPageLoad();
|
|
|
|
// Wait for either success (redirect to scans) or error message to appear
|
|
// The error container has multiple p.text-danger elements, we want the first one with the technical error
|
|
const errorMessage = this.page.locator("p.text-danger").first();
|
|
|
|
try {
|
|
// Wait up to 15 seconds for either the error message or redirect
|
|
await Promise.race([
|
|
// Wait for error message to appear
|
|
errorMessage.waitFor({ state: "visible", timeout: 15000 }),
|
|
// Wait for redirect to scans page (success case)
|
|
this.page.waitForURL(/\/scans/, { timeout: 15000 }),
|
|
]);
|
|
|
|
// If we're still on test-connection page, check for error
|
|
if (/\/providers\/test-connection/.test(this.page.url())) {
|
|
const isErrorVisible = await errorMessage.isVisible().catch(() => false);
|
|
if (isErrorVisible) {
|
|
const errorText = await errorMessage.textContent();
|
|
throw new Error(
|
|
`Test connection failed with error: ${errorText?.trim() || "Unknown error"}`,
|
|
);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
// If timeout or other error, check if error message is present
|
|
const isErrorVisible = await errorMessage.isVisible().catch(() => false);
|
|
if (isErrorVisible) {
|
|
const errorText = await errorMessage.textContent();
|
|
throw new Error(
|
|
`Test connection failed with error: ${errorText?.trim() || "Unknown error"}`,
|
|
);
|
|
}
|
|
// Re-throw original error if no error message found
|
|
throw error;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
// Fallback logic: try finding any common primary action buttons in expected order
|
|
const candidates = [
|
|
{ name: "Next" }, // Try the "Next" button
|
|
{ name: "Save" }, // Try the "Save" button
|
|
{ name: "Launch scan" }, // Try the "Launch scan" button
|
|
{ name: /Continue|Proceed/i }, // Try "Continue" or "Proceed" (case-insensitive)
|
|
] as const;
|
|
|
|
// Try each candidate name and click it if found
|
|
for (const candidate of candidates) {
|
|
// Try each candidate name and click it if found
|
|
const btn = this.page.getByRole("button", {
|
|
name: candidate.name as any,
|
|
});
|
|
|
|
if (await btn.count()) {
|
|
await btn.click();
|
|
await this.waitForPageLoad();
|
|
return;
|
|
}
|
|
}
|
|
|
|
// If none of the expected action buttons are present, throw an error
|
|
throw new Error(
|
|
"Could not find an actionable Next/Save/Launch scan button on this step",
|
|
);
|
|
}
|
|
|
|
async selectCredentialsType(type: AWSCredentialType): Promise<void> {
|
|
// Ensure we are on the add-credentials page where the selector exists
|
|
|
|
await expect(this.page).toHaveURL(/\/providers\/add-credentials/);
|
|
if (type === AWS_CREDENTIAL_OPTIONS.AWS_ROLE_ARN) {
|
|
await this.roleCredentialsRadio.click({ force: true });
|
|
} else if (type === AWS_CREDENTIAL_OPTIONS.AWS_CREDENTIALS) {
|
|
await this.staticCredentialsRadio.click({ force: true });
|
|
} else {
|
|
throw new Error(`Invalid AWS credential type: ${type}`);
|
|
}
|
|
// Wait for the page to load
|
|
await this.waitForPageLoad();
|
|
}
|
|
|
|
async fillRoleCredentials(credentials: AWSProviderCredential): Promise<void> {
|
|
// Fill the role credentials form
|
|
|
|
if (credentials.accessKeyId) {
|
|
await this.accessKeyIdInput.fill(credentials.accessKeyId);
|
|
}
|
|
if (credentials.secretAccessKey) {
|
|
await this.secretAccessKeyInput.fill(credentials.secretAccessKey);
|
|
}
|
|
if (credentials.roleArn) {
|
|
await this.roleArnInput.fill(credentials.roleArn);
|
|
}
|
|
if (credentials.externalId) {
|
|
// External ID may be prefilled and disabled; only fill if enabled
|
|
if (await this.externalIdInput.isEnabled()) {
|
|
await this.externalIdInput.fill(credentials.externalId);
|
|
}
|
|
}
|
|
}
|
|
|
|
async fillStaticCredentials(credentials: AWSProviderCredential): Promise<void> {
|
|
// Fill the static credentials form
|
|
|
|
if (credentials.accessKeyId) {
|
|
await this.accessKeyIdInput.fill(credentials.accessKeyId);
|
|
}
|
|
if (credentials.secretAccessKey) {
|
|
await this.secretAccessKeyInput.fill(credentials.secretAccessKey);
|
|
}
|
|
}
|
|
|
|
async verifyPageLoaded(): Promise<void> {
|
|
// Verify the providers page is loaded
|
|
|
|
await expect(this.page).toHaveTitle(/Prowler/);
|
|
await expect(this.addProviderButton).toBeVisible();
|
|
await this.page.waitForLoadState('networkidle');
|
|
}
|
|
|
|
async verifyConnectAccountPageLoaded(): Promise<void> {
|
|
// Verify the connect account page is loaded
|
|
|
|
await expect(this.page).toHaveTitle(/Prowler/);
|
|
await expect(this.awsProviderRadio).toBeVisible();
|
|
}
|
|
|
|
async verifyCredentialsPageLoaded(): Promise<void> {
|
|
// Verify the credentials page is loaded
|
|
|
|
await expect(this.page).toHaveTitle(/Prowler/);
|
|
await expect(this.roleCredentialsRadio).toBeVisible();
|
|
}
|
|
|
|
async verifyLaunchScanPageLoaded(): Promise<void> {
|
|
// Verify the launch scan page is loaded
|
|
|
|
await expect(this.page).toHaveTitle(/Prowler/);
|
|
await expect(this.page).toHaveURL(/\/providers\/test-connection/);
|
|
|
|
// Verify the Launch scan button is visible
|
|
const launchScanButton = this.page
|
|
.locator("button")
|
|
.filter({ hasText: "Launch scan" });
|
|
await expect(launchScanButton).toBeVisible();
|
|
}
|
|
|
|
async verifyLoadProviderPageAfterNewProvider(): Promise<void> {
|
|
// Verify the provider page is loaded
|
|
|
|
await this.waitForPageLoad();
|
|
await expect(this.page).toHaveTitle(/Prowler/);
|
|
await expect(this.providersTable).toBeVisible();
|
|
}
|
|
|
|
async verifySingleRowForProviderUID(providerUID: string): Promise<boolean> {
|
|
// Verify if table has 1 row and that row contains providerUID
|
|
|
|
await expect(this.providersTable).toBeVisible();
|
|
|
|
// Get the matching rows
|
|
const matchingRows = this.providersTable.locator("tbody tr", {
|
|
hasText: providerUID,
|
|
});
|
|
|
|
// Verify the number of matching rows is 1
|
|
const count = await matchingRows.count();
|
|
if (count !== 1) return false;
|
|
return true;
|
|
}
|
|
|
|
async deleteProviderIfExists(providerUID: string): Promise<void> {
|
|
// Delete the provider if it exists
|
|
|
|
// Navigate to providers page
|
|
await this.goto();
|
|
await expect(this.providersTable).toBeVisible({ timeout: 10000 });
|
|
|
|
// Find and use the search input to filter the table
|
|
const searchInput = this.page.getByPlaceholder(/search|filter/i);
|
|
await expect(searchInput).toBeVisible({ timeout: 5000 });
|
|
|
|
// Clear and search for the specific provider
|
|
await searchInput.clear();
|
|
await searchInput.fill(providerUID);
|
|
await searchInput.press("Enter");
|
|
|
|
// Wait for the table to finish loading/filtering
|
|
await this.waitForPageLoad();
|
|
|
|
// Additional wait for React table to re-render with the server-filtered data
|
|
// The filtering happens on the server, but the table component needs time
|
|
// to process the response and update the DOM after network idle
|
|
await this.page.waitForTimeout(1500);
|
|
|
|
// Get all rows from the table
|
|
const allRows = this.providersTable.locator("tbody tr");
|
|
|
|
// Helper function to check if a row is the "No results" row
|
|
const isNoResultsRow = async (row: Locator): Promise<boolean> => {
|
|
const text = await row.textContent();
|
|
return text?.includes("No results") || text?.includes("No data") || false;
|
|
};
|
|
|
|
// Helper function to find the row with the specific UID
|
|
const findProviderRow = async (): Promise<Locator | null> => {
|
|
const count = await allRows.count();
|
|
|
|
for (let i = 0; i < count; i++) {
|
|
const row = allRows.nth(i);
|
|
|
|
// Skip "No results" rows
|
|
if (await isNoResultsRow(row)) {
|
|
continue;
|
|
}
|
|
|
|
// Check if this row contains the UID in the UID column (column 3)
|
|
const uidCell = row.locator("td").nth(3);
|
|
const uidText = await uidCell.textContent();
|
|
|
|
if (uidText?.includes(providerUID)) {
|
|
return row;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
// Wait for filtering to complete (max 0 or 1 data rows)
|
|
await expect(async () => {
|
|
const targetRow = await findProviderRow();
|
|
const count = await allRows.count();
|
|
|
|
// Count only real data rows (not "No results")
|
|
let dataRowCount = 0;
|
|
for (let i = 0; i < count; i++) {
|
|
if (!(await isNoResultsRow(allRows.nth(i)))) {
|
|
dataRowCount++;
|
|
}
|
|
}
|
|
|
|
// Should have 0 or 1 data row
|
|
expect(dataRowCount).toBeLessThanOrEqual(1);
|
|
}).toPass({ timeout: 20000 });
|
|
|
|
// Find the provider row
|
|
const targetRow = await findProviderRow();
|
|
|
|
if (!targetRow) {
|
|
// Provider not found, nothing to delete
|
|
// Navigate back to providers page to ensure clean state
|
|
await this.goto();
|
|
await expect(this.providersTable).toBeVisible({ timeout: 10000 });
|
|
return;
|
|
}
|
|
|
|
// Find and click the action button (last cell = actions column)
|
|
const actionButton = targetRow.locator("td").last().locator("button").first();
|
|
await expect(actionButton).toBeVisible({ timeout: 5000 });
|
|
await actionButton.click();
|
|
|
|
// Wait for dropdown menu to appear and find delete option
|
|
const deleteMenuItem = this.page.getByRole("menuitem", {
|
|
name: /delete.*provider/i,
|
|
});
|
|
await expect(deleteMenuItem).toBeVisible({ timeout: 5000 });
|
|
await deleteMenuItem.click();
|
|
|
|
// Wait for confirmation modal to appear
|
|
const modal = this.page.locator('[role="dialog"], .modal, [data-testid*="modal"]').first();
|
|
await expect(modal).toBeVisible({ timeout: 10000 });
|
|
|
|
// Find and click the delete confirmation button
|
|
await expect(this.deleteProviderConfirmationButton).toBeVisible({ timeout: 5000 });
|
|
await this.deleteProviderConfirmationButton.click();
|
|
|
|
// Wait for modal to close (this indicates deletion was initiated)
|
|
await expect(modal).not.toBeVisible({ timeout: 10000 });
|
|
|
|
// Wait for page to reload
|
|
await this.waitForPageLoad();
|
|
|
|
// Navigate back to providers page to ensure clean state
|
|
await this.goto();
|
|
await expect(this.providersTable).toBeVisible({ timeout: 10000 });
|
|
}
|
|
}
|