2021-04-20 04:08:25 +01:00
|
|
|
import { jest } from "@jest/globals";
|
|
|
|
import "expect-playwright";
|
2024-04-09 18:55:08 +01:00
|
|
|
import { generateUniqueName, getAzureCLICredentialsToken } from "../utils/shared";
|
2021-07-22 00:22:31 +01:00
|
|
|
import { waitForExplorer } from "../utils/waitForExplorer";
|
2020-11-02 19:33:14 +00:00
|
|
|
|
2021-04-20 04:08:25 +01:00
|
|
|
jest.setTimeout(120000);
|
2020-11-02 19:33:14 +00:00
|
|
|
|
2021-04-20 04:08:25 +01:00
|
|
|
test("Tables CRUD", async () => {
|
|
|
|
const tableId = generateUniqueName("table");
|
2024-04-09 18:55:08 +01:00
|
|
|
// We can't retrieve AZ CLI credentials from the browser so we get them here.
|
|
|
|
const token = await getAzureCLICredentialsToken();
|
2021-07-22 00:22:31 +01:00
|
|
|
page.setDefaultTimeout(50000);
|
2020-11-02 19:33:14 +00:00
|
|
|
|
2024-04-09 18:55:08 +01:00
|
|
|
await page.goto(`https://localhost:1234/testExplorer.html?accountName=portal-tables-runner&token=${token}`);
|
2021-07-22 00:22:31 +01:00
|
|
|
const explorer = await waitForExplorer();
|
2020-11-02 19:33:14 +00:00
|
|
|
|
2021-07-22 00:22:31 +01:00
|
|
|
await page.waitForSelector('text="Querying databases"', { state: "detached" });
|
2021-04-20 04:08:25 +01:00
|
|
|
await explorer.click('[data-test="New Table"]');
|
2023-09-27 16:17:40 +01:00
|
|
|
await explorer.fill('[aria-label="Table id, Example Table1"]', tableId);
|
2021-04-30 18:23:34 +01:00
|
|
|
await explorer.click("#sidePanelOkButton");
|
2021-07-22 00:22:31 +01:00
|
|
|
await explorer.click(`[data-test="TablesDB"]`);
|
2024-03-06 07:18:46 +00:00
|
|
|
await explorer.click(`[data-test="${tableId}"] [aria-label="More options"]`);
|
2021-07-20 19:40:04 +01:00
|
|
|
await explorer.click('button[role="menuitem"]:has-text("Delete Table")');
|
2021-04-20 04:08:25 +01:00
|
|
|
await explorer.fill('text=* Confirm by typing the table id >> input[type="text"]', tableId);
|
2021-05-19 03:57:31 +01:00
|
|
|
await explorer.click('[aria-label="OK"]');
|
2021-04-20 04:08:25 +01:00
|
|
|
await expect(explorer).not.toHaveText(".dataResourceTree", tableId);
|
|
|
|
});
|