Browse Source

test: undo tests for hide/unhide fields

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5332/head
Raju Udava 1 year ago committed by mertmit
parent
commit
177ac6d203
  1. 16
      tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts
  2. 79
      tests/playwright/tests/undo-redo.spec.ts

16
tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts

@ -78,4 +78,20 @@ export class ToolbarFieldsPage extends BasePage {
}); });
await this.toolbar.clickFields(); await this.toolbar.clickFields();
} }
async getFieldsTitles() {
let fields: string[] = await this.rootPage.locator(`.nc-grid-header`).allInnerTexts();
fields = fields[0].split('\n');
// for each entry in fields, remove \n, \t, and \r
fields = fields.map(field => field.replace(/[\n\t\r]/g, ''));
// remove first entry, which is the row number
fields.shift();
// remove empty strings from array
fields = fields.filter(field => field !== '');
console.log(fields);
return fields;
}
} }

79
tests/playwright/tests/undo-redo.spec.ts

@ -4,9 +4,11 @@ import setup from '../setup';
import { Api, UITypes } from 'nocodb-sdk'; import { Api, UITypes } from 'nocodb-sdk';
import { rowMixedValue } from '../setup/xcdb-records'; import { rowMixedValue } from '../setup/xcdb-records';
import { GridPage } from '../pages/Dashboard/Grid'; import { GridPage } from '../pages/Dashboard/Grid';
import { ToolbarPage } from '../pages/Dashboard/common/Toolbar';
let dashboard: DashboardPage, let dashboard: DashboardPage,
grid: GridPage, grid: GridPage,
toolbar: ToolbarPage,
context: any, context: any,
api: Api<any>, api: Api<any>,
records: Record<string, any>, records: Record<string, any>,
@ -20,13 +22,13 @@ let dashboard: DashboardPage,
Scope Actions Scope Actions
------------------------------ ------------------------------
Row Create, Update, Delete Row Create, Update, Delete
LTAR Link, Unlink LTAR Link, Unlink
Fields Show/hide, Reorder Fields Show/hide, Reorder
Sort Add, Update, Delete Sort Add, Update, Delete
Filters Add, Update, Delete (Excluding Filter Groups) Filters Add, Update, Delete (Excluding Filter Groups)
Row Height Update Row Height Update
Column width Update Column width Update
View Rename View Rename
Table Rename Table Rename
**/ **/
@ -36,6 +38,7 @@ test.describe('Undo Redo', () => {
context = await setup({ page, isEmptyProject: true }); context = await setup({ page, isEmptyProject: true });
dashboard = new DashboardPage(page, context.project); dashboard = new DashboardPage(page, context.project);
grid = dashboard.grid; grid = dashboard.grid;
toolbar = dashboard.grid.toolbar;
api = new Api({ api = new Api({
baseURL: `http://localhost:8080/`, baseURL: `http://localhost:8080/`,
@ -54,6 +57,7 @@ test.describe('Undo Redo', () => {
column_name: 'Number', column_name: 'Number',
title: 'Number', title: 'Number',
uidt: UITypes.Number, uidt: UITypes.Number,
pv: true,
}, },
{ {
column_name: 'Decimal', column_name: 'Decimal',
@ -104,7 +108,7 @@ test.describe('Undo Redo', () => {
expect(currentRecords.list.map(r => parseInt(r.Number))).toEqual(expectedValues); expect(currentRecords.list.map(r => parseInt(r.Number))).toEqual(expectedValues);
} }
async function undo({ page, values }: { page: Page; values: number[] }) { async function undo({ page }: { page: Page }) {
const isMac = await grid.isMacOs(); const isMac = await grid.isMacOs();
await dashboard.grid.waitForResponse({ await dashboard.grid.waitForResponse({
uiAction: () => page.keyboard.press(isMac ? 'Meta+z' : 'Control+z'), uiAction: () => page.keyboard.press(isMac ? 'Meta+z' : 'Control+z'),
@ -112,7 +116,6 @@ test.describe('Undo Redo', () => {
requestUrlPathToMatch: `/api/v1/db/data/noco/`, requestUrlPathToMatch: `/api/v1/db/data/noco/`,
responseJsonMatcher: json => json.pageInfo, responseJsonMatcher: json => json.pageInfo,
}); });
await verifyRecords(values);
} }
test('Row: Create, Update, Delete', async ({ page }) => { test('Row: Create, Update, Delete', async ({ page }) => {
@ -135,16 +138,66 @@ test.describe('Undo Redo', () => {
await verifyRecords([]); await verifyRecords([]);
// Undo : Row.Delete // Undo : Row.Delete
await undo({ page, values: [666] }); await undo({ page });
await undo({ page, values: [555, 666] }); await verifyRecords([666]);
await undo({ page });
await verifyRecords([555, 666]);
// Undo : Row.Update // Undo : Row.Update
await undo({ page, values: [555, 444] }); await undo({ page });
await undo({ page, values: [333, 444] }); await verifyRecords([555, 444]);
await undo({ page });
await verifyRecords([333, 444]);
// Undo : Row.Create // Undo : Row.Create
await undo({ page, values: [333] }); await undo({ page });
await undo({ page, values: [] }); await verifyRecords([333]);
await undo({ page });
await verifyRecords([]);
});
test('Fields: Hide, Show, Reorder', async ({ page }) => {
async function verifyFieldsOrder(fields: string[]) {
const fieldTitles = await toolbar.fields.getFieldsTitles();
expect(fieldTitles).toEqual(fields);
}
await dashboard.closeTab({ title: 'Team & Auth' });
await dashboard.treeView.openTable({ title: 'numberBased' });
await verifyFieldsOrder(['Number', 'Decimal', 'Currency']);
// Hide Decimal
await toolbar.fields.toggle({ title: 'Decimal', isLocallySaved: false });
await verifyFieldsOrder(['Number', 'Currency']);
// Hide Currency
await toolbar.fields.toggle({ title: 'Currency', isLocallySaved: false });
await verifyFieldsOrder(['Number']);
// Un hide Decimal
await toolbar.fields.toggle({ title: 'Decimal', isLocallySaved: false });
await verifyFieldsOrder(['Number', 'Decimal']);
// Un hide Currency
await toolbar.fields.toggle({ title: 'Currency', isLocallySaved: false });
await verifyFieldsOrder(['Number', 'Decimal', 'Currency']);
// Undo : un hide Currency
await undo({ page });
await verifyFieldsOrder(['Number', 'Decimal']);
// Undo : un hide Decimal
await undo({ page });
await verifyFieldsOrder(['Number']);
// Undo : hide Currency
await undo({ page });
await verifyFieldsOrder(['Number', 'Currency']);
// Undo : hide Decimal
await undo({ page });
await verifyFieldsOrder(['Number', 'Decimal', 'Currency']);
}); });
}); });

Loading…
Cancel
Save