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

47 lines
2.5 KiB
TypeScript
Raw Normal View History

2021-04-20 04:08:25 +01:00
import { jest } from "@jest/globals";
import "expect-playwright";
2021-04-21 18:45:34 +01:00
import { generateDatabaseNameWithTimestamp, 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(240000);
2021-04-21 18:45:34 +01:00
test("Mongo CRUD", async () => {
const databaseId = generateDatabaseNameWithTimestamp();
2021-04-20 04:08:25 +01:00
const containerId = generateUniqueName("container");
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-mongo-runner");
2021-07-22 00:22:31 +01:00
const explorer = await waitForExplorer();
2021-04-20 04:08:25 +01:00
// Create new database and collection
await explorer.click('[data-test="New Collection"]');
await explorer.fill('[aria-label="New database id, Type a new database id"]', databaseId);
await explorer.fill('[aria-label="Collection id, Example Collection1"]', containerId);
2021-08-16 17:35:21 +01:00
await explorer.fill('[aria-label="Shard key"]', "pk");
await explorer.click("#sidePanelOkButton");
2021-07-22 00:22:31 +01:00
await explorer.click(`.nodeItem >> text=${databaseId}`);
2021-07-20 19:40:04 +01:00
await explorer.click(`.nodeItem >> text=${containerId}`);
2021-04-20 04:08:25 +01:00
// Create indexing policy
2021-07-20 19:40:04 +01:00
await explorer.click(".nodeItem >> text=Settings");
2021-04-20 04:08:25 +01:00
await explorer.click('button[role="tab"]:has-text("Indexing Policy")');
await explorer.click('[aria-label="Index Field Name 0"]');
await explorer.fill('[aria-label="Index Field Name 0"]', "foo");
await explorer.click("text=Select an index type");
await explorer.click('button[role="option"]:has-text("Single Field")');
await explorer.click('[data-test="Save"]');
// Remove indexing policy
await explorer.click('[aria-label="Delete index Button"]');
await explorer.click('[data-test="Save"]');
// Delete database and collection
await explorer.click(`[data-test="${containerId}"] [aria-label="More options"]`);
2021-07-20 19:40:04 +01:00
await explorer.click('button[role="menuitem"]:has-text("Delete Collection")');
2021-04-20 04:08:25 +01:00
await explorer.fill('text=* Confirm by typing the collection id >> input[type="text"]', containerId);
await explorer.click('[aria-label="OK"]');
await explorer.click(`[data-test="${databaseId}"] [aria-label="More options"]`);
2021-04-20 04:08:25 +01:00
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);
});