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);
|
|
|
|
|
|
|
|
test("Cassandra keyspace and table CRUD", async () => {
|
|
|
|
const keyspaceId = generateUniqueName("keyspace");
|
|
|
|
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-cassandra-runner");
|
|
|
|
await page.waitForSelector("iframe");
|
2021-07-22 00:22:31 +01:00
|
|
|
const explorer = await waitForExplorer();
|
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);
|
2023-07-12 17:59:18 +01:00
|
|
|
await explorer.click('[aria-label="addCollection-table Id Create table"]');
|
|
|
|
await explorer.fill('[aria-label="addCollection-table Id Create table"]', tableId);
|
2021-05-19 03:30:11 +01:00
|
|
|
await explorer.click("#sidePanelOkButton");
|
2021-07-22 00:22:31 +01:00
|
|
|
await explorer.click(`.nodeItem >> text=${keyspaceId}`);
|
2021-07-20 19:40:04 +01:00
|
|
|
await explorer.click(`[data-test="${tableId}"] [aria-label="More"]`);
|
|
|
|
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 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);
|
|
|
|
});
|