cosmos-explorer/test/mongo/container32.spec.ts

36 lines
1.8 KiB
TypeScript
Raw Normal View History

2021-05-12 19:41:44 +01:00
import { jest } from "@jest/globals";
import "expect-playwright";
import { generateDatabaseNameWithTimestamp, generateUniqueName } from "../utils/shared";
2021-07-22 00:22:31 +01:00
import { waitForExplorer } from "../utils/waitForExplorer";
2021-05-12 19:41:44 +01:00
jest.setTimeout(240000);
test("Mongo CRUD", async () => {
const databaseId = generateDatabaseNameWithTimestamp();
const containerId = generateUniqueName("container");
2021-07-22 00:22:31 +01:00
page.setDefaultTimeout(50000);
2021-05-12 19:41:44 +01:00
await page.goto("https://localhost:1234/testExplorer.html?accountName=portal-mongo32-runner");
2021-07-22 00:22:31 +01:00
const explorer = await waitForExplorer();
2021-05-12 19:41:44 +01:00
// Create new database and collection
await explorer.click('[data-test="New Collection"]');
await explorer.fill('[aria-label="New database id"]', databaseId);
await explorer.fill('[aria-label="Collection id"]', containerId);
await explorer.fill('[aria-label="Shard key"]', "pk");
await explorer.click("#sidePanelOkButton");
2021-07-22 00:22:31 +01:00
explorer.click(`.nodeItem >> text=${databaseId}`);
2021-07-20 19:40:04 +01:00
explorer.click(`.nodeItem >> text=${containerId}`);
2021-05-12 19:41:44 +01:00
// Delete database and collection
2021-07-20 19:40:04 +01:00
explorer.click(`[data-test="${containerId}"] [aria-label="More"]`);
explorer.click('button[role="menuitem"]:has-text("Delete Collection")');
2021-05-12 19:41:44 +01:00
await explorer.fill('text=* Confirm by typing the collection id >> input[type="text"]', containerId);
await explorer.click('[aria-label="OK"]');
2021-05-12 19:41:44 +01:00
await explorer.click(`[data-test="${databaseId}"] [aria-label="More"]`);
await explorer.click('button[role="menuitem"]:has-text("Delete Database")');
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"]', databaseId);
await explorer.click("#sidePanelOkButton");
await expect(explorer).not.toHaveText(".dataResourceTree", databaseId);
await expect(explorer).not.toHaveText(".dataResourceTree", containerId);
});