2021-04-20 04:08:25 +01:00
|
|
|
import { jest } from "@jest/globals";
|
|
|
|
import "expect-playwright";
|
|
|
|
import { safeClick } from "../utils/safeClick";
|
|
|
|
import { generateUniqueName } from "../utils/shared";
|
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");
|
2020-11-02 19:33:14 +00:00
|
|
|
|
2021-04-20 04:08:25 +01:00
|
|
|
await page.goto("https://localhost:1234/testExplorer.html?accountName=portal-tables-runner");
|
|
|
|
await page.waitForSelector("iframe");
|
|
|
|
const explorer = page.frame({
|
|
|
|
name: "explorer",
|
2020-11-02 19:33:14 +00:00
|
|
|
});
|
|
|
|
|
2021-04-20 04:08:25 +01:00
|
|
|
await explorer.click('[data-test="New Table"]');
|
2021-04-30 18:23:34 +01:00
|
|
|
await explorer.fill('[aria-label="Table id"]', tableId);
|
|
|
|
await explorer.click("#sidePanelOkButton");
|
2021-04-20 04:08:25 +01:00
|
|
|
await safeClick(explorer, `[data-test="TablesDB"]`);
|
|
|
|
await safeClick(explorer, `[data-test="${tableId}"] [aria-label="More"]`);
|
|
|
|
await safeClick(explorer, 'button[role="menuitem"]:has-text("Delete Table")');
|
|
|
|
await explorer.fill('text=* Confirm by typing the table id >> input[type="text"]', tableId);
|
|
|
|
await explorer.click('[aria-label="Submit"]');
|
|
|
|
await expect(explorer).not.toHaveText(".dataResourceTree", tableId);
|
|
|
|
});
|