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";
|
|
|
|
jest.setTimeout(120000);
|
|
|
|
|
|
|
|
test("Cassandra keyspace and table CRUD", async () => {
|
|
|
|
const keyspaceId = generateUniqueName("keyspace");
|
|
|
|
const tableId = generateUniqueName("table");
|
|
|
|
|
|
|
|
await page.goto("https://localhost:1234/testExplorer.html?accountName=portal-cassandra-runner");
|
|
|
|
await page.waitForSelector("iframe");
|
|
|
|
const explorer = page.frame({
|
|
|
|
name: "explorer",
|
2020-09-22 21:21:57 +01:00
|
|
|
});
|
2020-11-02 19:33:14 +00:00
|
|
|
|
2021-04-20 04:08:25 +01:00
|
|
|
await explorer.click('[data-test="New Table"]');
|
2021-05-19 03:30:11 +01:00
|
|
|
await explorer.click('[aria-label="Keyspace id"]');
|
|
|
|
await explorer.fill('[aria-label="Keyspace id"]', keyspaceId);
|
|
|
|
await explorer.click('[aria-label="addCollection-tableId"]');
|
|
|
|
await explorer.fill('[aria-label="addCollection-tableId"]', tableId);
|
|
|
|
await explorer.click("#sidePanelOkButton");
|
2021-04-20 04:08:25 +01:00
|
|
|
await safeClick(explorer, `.nodeItem >> text=${keyspaceId}`);
|
|
|
|
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);
|
2021-05-19 03:57:31 +01:00
|
|
|
await explorer.click('[aria-label="OK"]');
|
2021-04-20 04:08:25 +01:00
|
|
|
await explorer.click(`[data-test="${keyspaceId}"] [aria-label="More"]`);
|
|
|
|
await explorer.click('button[role="menuitem"]:has-text("Delete Keyspace")');
|
|
|
|
await explorer.click('text=* Confirm by typing the database id >> input[type="text"]');
|
|
|
|
await explorer.fill('text=* Confirm by typing the database id >> input[type="text"]', keyspaceId);
|
|
|
|
await explorer.click("#sidePanelOkButton");
|
|
|
|
await expect(explorer).not.toHaveText(".dataResourceTree", keyspaceId);
|
|
|
|
await expect(explorer).not.toHaveText(".dataResourceTree", tableId);
|
|
|
|
});
|