mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-25 15:06:55 +00:00
c30a9681fe
* Fix API endpoint for CassandraProxy query API * activate Mongo Proxy and Cassandra Proxy in Prod * Add CP Prod endpoint * Run npm format and tests * Revert code * fix bug that blocked local mongo proxy and cassandra proxy development * Add prod endpoint * fix pr check tests * Remove prod * Remove prod endpoint * Remove dev endpoint * Support data plane RBAC * Support data plane RBAC * Add additional changes for Portal RBAC functionality * Address errors and checks * Cleanup DP RBAC code * Run format * Fix unit tests * Remove unnecessary code * Run npm format * Fix enableAadDataPlane feature flag behavior * Fix enable AAD dataplane feature flag behavior * Address feedback comments * Minor fix * Add new fixes * Fix Tables test * Run npm format --------- Co-authored-by: Asier Isayas <aisayas@microsoft.com>
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { expect, test } from "@playwright/test";
|
|
|
|
import { DataExplorer, TestAccount, generateUniqueName } from "../fx";
|
|
|
|
test("Tables CRUD", async ({ page }) => {
|
|
const tableId = generateUniqueName("table");
|
|
|
|
const explorer = await DataExplorer.open(page, TestAccount.Tables);
|
|
|
|
await explorer.commandBarButton("New Table").click();
|
|
await explorer.whilePanelOpen("New Table", async (panel, okButton) => {
|
|
await panel.getByRole("textbox", { name: "Table id, Example Table1" }).fill(tableId);
|
|
await panel.getByLabel("Table Max RU/s").fill("1000");
|
|
await okButton.click();
|
|
});
|
|
|
|
const databaseNode = explorer.treeNode("DATA/TablesDB");
|
|
await databaseNode.expand();
|
|
|
|
const tableNode = explorer.treeNode(`DATA/TablesDB/${tableId}`);
|
|
await expect(tableNode.element).toBeAttached();
|
|
|
|
await tableNode.openContextMenu();
|
|
await tableNode.contextMenuItem("Delete Table").click();
|
|
await explorer.whilePanelOpen("Delete Table", async (panel, okButton) => {
|
|
await panel.getByRole("textbox", { name: "Confirm by typing the table id" }).fill(tableId);
|
|
await okButton.click();
|
|
});
|
|
|
|
await expect(tableNode.element).not.toBeAttached();
|
|
});
|