cosmos-explorer/test/tables/container.spec.ts

26 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-04-20 04:08:25 +01:00
import { jest } from "@jest/globals";
import "expect-playwright";
import { generateUniqueName } from "../utils/shared";
2021-07-22 00:22:31 +01:00
import { waitForExplorer } from "../utils/waitForExplorer";
2021-04-20 04:08:25 +01:00
jest.setTimeout(120000);
2021-04-20 04:08:25 +01:00
test("Tables CRUD", async () => {
const tableId = generateUniqueName("table");
2021-07-22 00:22:31 +01:00
page.setDefaultTimeout(50000);
2021-04-20 04:08:25 +01:00
await page.goto("https://localhost:1234/testExplorer.html?accountName=portal-tables-runner");
2021-07-22 00:22:31 +01:00
const explorer = await waitForExplorer();
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"]');
await explorer.fill('[aria-label="Table id, Example Table1"]', tableId);
await explorer.click("#sidePanelOkButton");
2021-07-22 00:22:31 +01:00
await explorer.click(`[data-test="TablesDB"]`);
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);
await explorer.click('[aria-label="OK"]');
2021-04-20 04:08:25 +01:00
await expect(explorer).not.toHaveText(".dataResourceTree", tableId);
});