2024-06-05 20:46:32 +01:00
|
|
|
import { expect, test } from "@playwright/test";
|
2024-05-29 17:56:27 +01:00
|
|
|
|
2024-08-15 21:29:57 +01:00
|
|
|
import { DataExplorer, TestAccount, generateUniqueName } from "../fx";
|
2024-05-29 17:56:27 +01:00
|
|
|
|
2024-06-05 20:46:32 +01:00
|
|
|
test("SQL database and container CRUD", async ({ page }) => {
|
2024-08-15 21:29:57 +01:00
|
|
|
const databaseId = generateUniqueName("db");
|
|
|
|
const containerId = "testcontainer"; // A unique container name isn't needed because the database is unique
|
2024-05-29 17:56:27 +01:00
|
|
|
|
2024-06-05 20:46:32 +01:00
|
|
|
const explorer = await DataExplorer.open(page, TestAccount.SQL);
|
|
|
|
|
2024-08-01 18:02:36 +01:00
|
|
|
await explorer.globalCommandButton("New Container").click();
|
2024-08-15 21:29:57 +01:00
|
|
|
await explorer.whilePanelOpen(
|
|
|
|
"New Container",
|
|
|
|
async (panel, okButton) => {
|
|
|
|
await panel.getByPlaceholder("Type a new database id").fill(databaseId);
|
|
|
|
await panel.getByRole("textbox", { name: "Container id, Example Container1" }).fill(containerId);
|
|
|
|
await panel.getByRole("textbox", { name: "Partition key" }).fill("/pk");
|
|
|
|
await panel.getByLabel("Database max RU/s").fill("1000");
|
|
|
|
await okButton.click();
|
|
|
|
},
|
|
|
|
{ closeTimeout: 5 * 60 * 1000 },
|
|
|
|
);
|
|
|
|
|
|
|
|
const databaseNode = await explorer.waitForNode(databaseId);
|
|
|
|
const containerNode = await explorer.waitForContainerNode(databaseId, containerId);
|
2024-06-05 20:46:32 +01:00
|
|
|
|
|
|
|
await containerNode.openContextMenu();
|
|
|
|
await containerNode.contextMenuItem("Delete Container").click();
|
2024-08-15 21:29:57 +01:00
|
|
|
await explorer.whilePanelOpen(
|
|
|
|
"Delete Container",
|
|
|
|
async (panel, okButton) => {
|
|
|
|
await panel.getByRole("textbox", { name: "Confirm by typing the container id" }).fill(containerId);
|
|
|
|
await okButton.click();
|
|
|
|
},
|
|
|
|
{ closeTimeout: 5 * 60 * 1000 },
|
|
|
|
);
|
2024-06-05 20:46:32 +01:00
|
|
|
await expect(containerNode.element).not.toBeAttached();
|
|
|
|
|
|
|
|
await databaseNode.openContextMenu();
|
|
|
|
await databaseNode.contextMenuItem("Delete Database").click();
|
2024-08-15 21:29:57 +01:00
|
|
|
await explorer.whilePanelOpen(
|
|
|
|
"Delete Database",
|
|
|
|
async (panel, okButton) => {
|
|
|
|
await panel.getByRole("textbox", { name: "Confirm by typing the database id" }).fill(databaseId);
|
|
|
|
await okButton.click();
|
|
|
|
},
|
|
|
|
{ closeTimeout: 5 * 60 * 1000 },
|
|
|
|
);
|
2024-06-05 20:46:32 +01:00
|
|
|
|
|
|
|
await expect(databaseNode.element).not.toBeAttached();
|
2021-04-20 04:08:25 +01:00
|
|
|
});
|