mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-11-29 17:06:58 +00:00
46ca952955
* Add condition for showing quick start carousel * Show coach mark when carousel is closed * Add condition for showing quick start carousel and other UI changes * Fix compile error * Fix issue with coach mark * Fix test * Add new sample data, fix link url, fix e2e tests * Fix e2e tests
41 lines
2.0 KiB
TypeScript
41 lines
2.0 KiB
TypeScript
import { jest } from "@jest/globals";
|
|
import "expect-playwright";
|
|
import { generateDatabaseNameWithTimestamp, generateUniqueName } from "../utils/shared";
|
|
import { waitForExplorer } from "../utils/waitForExplorer";
|
|
jest.setTimeout(240000);
|
|
|
|
test("Mongo CRUD", async () => {
|
|
const databaseId = generateDatabaseNameWithTimestamp();
|
|
const containerId = generateUniqueName("container");
|
|
page.setDefaultTimeout(50000);
|
|
|
|
await page.goto("https://localhost:1234/testExplorer.html?accountName=portal-mongo32-runner");
|
|
const explorer = await waitForExplorer();
|
|
|
|
// Click through quick start carousel
|
|
await explorer.click("#carouselNextBtn");
|
|
await explorer.click("#carouselNextBtn");
|
|
await explorer.click("#carouselNextBtn");
|
|
|
|
// 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");
|
|
explorer.click(`.nodeItem >> text=${databaseId}`);
|
|
explorer.click(`.nodeItem >> text=${containerId}`);
|
|
// Delete database and collection
|
|
explorer.click(`[data-test="${containerId}"] [aria-label="More"]`);
|
|
explorer.click('button[role="menuitem"]:has-text("Delete Collection")');
|
|
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"]`);
|
|
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);
|
|
});
|