mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-09-19 09:02:41 +01:00
Reduce SQL document test matrix
This commit is contained in:
@@ -28,6 +28,7 @@ export default defineConfig({
|
|||||||
projects: [
|
projects: [
|
||||||
{
|
{
|
||||||
name: "firefox",
|
name: "firefox",
|
||||||
|
grepInvert: /@document-chrome-only/,
|
||||||
use: {
|
use: {
|
||||||
...devices["Desktop Firefox"],
|
...devices["Desktop Firefox"],
|
||||||
launchOptions: {
|
launchOptions: {
|
||||||
@@ -50,6 +51,7 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "webkit",
|
name: "webkit",
|
||||||
|
grepInvert: /@document-chrome-only/,
|
||||||
use: {
|
use: {
|
||||||
...devices["Desktop Safari"],
|
...devices["Desktop Safari"],
|
||||||
},
|
},
|
||||||
@@ -66,6 +68,7 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Microsoft Edge",
|
name: "Microsoft Edge",
|
||||||
|
grepInvert: /@document-chrome-only/,
|
||||||
use: {
|
use: {
|
||||||
...devices["Desktop Edge"],
|
...devices["Desktop Edge"],
|
||||||
channel: "msedge",
|
channel: "msedge",
|
||||||
|
|||||||
@@ -18,6 +18,9 @@ import { documentTestCases } from "./testCases";
|
|||||||
let explorer: DataExplorer = null!;
|
let explorer: DataExplorer = null!;
|
||||||
let documentsTab: DocumentsTab = null!;
|
let documentsTab: DocumentsTab = null!;
|
||||||
|
|
||||||
|
const chromeOnlyDocumentTag = "@document-chrome-only";
|
||||||
|
const crossBrowserSmokeDocumentId = "singlePartitionKey";
|
||||||
|
|
||||||
for (const { name, databaseId, containerId, documents } of documentTestCases) {
|
for (const { name, databaseId, containerId, documents } of documentTestCases) {
|
||||||
test.describe(`Test SQL Documents with ${name}`, () => {
|
test.describe(`Test SQL Documents with ${name}`, () => {
|
||||||
// test.skip(true, "Temporarily disabling all tests in this spec file");
|
// test.skip(true, "Temporarily disabling all tests in this spec file");
|
||||||
@@ -39,8 +42,9 @@ for (const { name, databaseId, containerId, documents } of documentTestCases) {
|
|||||||
|
|
||||||
for (const document of documents) {
|
for (const document of documents) {
|
||||||
const { documentId: docId, partitionKeys, skipCreateDelete } = document;
|
const { documentId: docId, partitionKeys, skipCreateDelete } = document;
|
||||||
|
const testDetails = { tag: docId === crossBrowserSmokeDocumentId ? [] : [chromeOnlyDocumentTag] };
|
||||||
test.describe(`Document ID: ${docId}`, () => {
|
test.describe(`Document ID: ${docId}`, () => {
|
||||||
test(`should load and view document ${docId}`, async () => {
|
test(`should load and view document ${docId}`, testDetails, async () => {
|
||||||
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
||||||
await span.waitFor();
|
await span.waitFor();
|
||||||
await expect(span).toBeVisible();
|
await expect(span).toBeVisible();
|
||||||
@@ -55,14 +59,14 @@ for (const { name, databaseId, containerId, documents } of documentTestCases) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const testOrSkip = skipCreateDelete ? test.skip : test;
|
const testOrSkip = skipCreateDelete ? test.skip : test;
|
||||||
testOrSkip(`should be able to create and delete new document from ${docId}`, async ({ page }) => {
|
testOrSkip(`should be able to create and delete new document from ${docId}`, testDetails, async () => {
|
||||||
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
const span = documentsTab.documentsListPane.getByText(docId, { exact: true }).nth(0);
|
||||||
await span.waitFor();
|
await span.waitFor();
|
||||||
await expect(span).toBeVisible();
|
await expect(span).toBeVisible();
|
||||||
|
|
||||||
await span.click();
|
await span.click();
|
||||||
let newDocumentId;
|
let newDocumentId;
|
||||||
await page.waitForTimeout(5000);
|
await expect(documentsTab.resultsEditor.locator).toBeAttached({ timeout: 60 * 1000 });
|
||||||
await retry(async () => {
|
await retry(async () => {
|
||||||
const newDocumentButton = await explorer.waitForCommandBarButton("New Item", 5000);
|
const newDocumentButton = await explorer.waitForCommandBarButton("New Item", 5000);
|
||||||
await expect(newDocumentButton).toBeVisible();
|
await expect(newDocumentButton).toBeVisible();
|
||||||
|
|||||||
Reference in New Issue
Block a user