mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 05:46:55 +00:00
fix(test): Moved playwright folder from nc-gui
This commit is contained in:
79
tests/playwright/pages/Dashboard/Import/ImportTemplate.ts
Normal file
79
tests/playwright/pages/Dashboard/Import/ImportTemplate.ts
Normal file
@@ -0,0 +1,79 @@
|
||||
import { expect, Locator } from '@playwright/test';
|
||||
import BasePage from '../../Base';
|
||||
import { DashboardPage } from '..';
|
||||
|
||||
export class ImportTemplatePage extends BasePage {
|
||||
readonly dashboard: DashboardPage;
|
||||
readonly importButton: Locator;
|
||||
|
||||
constructor(dashboard: DashboardPage) {
|
||||
super(dashboard.rootPage);
|
||||
this.dashboard = dashboard;
|
||||
this.importButton = dashboard.get().locator('.nc-btn-import');
|
||||
}
|
||||
|
||||
get() {
|
||||
return this.dashboard.get().locator(`.nc-modal-quick-import`);
|
||||
}
|
||||
|
||||
async getImportTableList() {
|
||||
await this.get().locator(`.ant-collapse-header`).nth(0).waitFor();
|
||||
const tr = await this.get().locator(`.ant-collapse-header`);
|
||||
const rowCount = await tr.count();
|
||||
const tableList: string[] = [];
|
||||
for (let i = 0; i < rowCount; i++) {
|
||||
const tableName = await tr.nth(i).innerText();
|
||||
tableList.push(tableName);
|
||||
}
|
||||
return tableList;
|
||||
}
|
||||
|
||||
async getImportColumnList() {
|
||||
// return an array
|
||||
const columnList: { type: string; name: string }[] = [];
|
||||
const tr = await this.get().locator(`tr.ant-table-row-level-0:visible`);
|
||||
const rowCount = await tr.count();
|
||||
for (let i = 0; i < rowCount; i++) {
|
||||
// replace \n and \t from innerText
|
||||
const columnType = await tr
|
||||
.nth(i)
|
||||
.innerText()
|
||||
.then(text => text.replace(/\n|\t/g, ''));
|
||||
const columnName = await tr.nth(i).locator(`input[type="text"]`).inputValue();
|
||||
columnList.push({ type: columnType, name: columnName });
|
||||
}
|
||||
return columnList;
|
||||
}
|
||||
|
||||
// todo: Add polling logic to assertions
|
||||
async import({ file, result }: { file: string; result: any }) {
|
||||
const importFile = this.get().locator(`input[type="file"]`);
|
||||
await importFile.setInputFiles(file);
|
||||
await this.importButton.click();
|
||||
|
||||
const tblList = await this.getImportTableList();
|
||||
for (let i = 0; i < result.length; i++) {
|
||||
await expect(tblList[i]).toBe(result[i].name);
|
||||
const columnList = await this.getImportColumnList();
|
||||
await expect(columnList).toEqual(result[i].columns);
|
||||
if (i < result.length - 1) {
|
||||
await this.expandTableList({ index: i + 1 });
|
||||
}
|
||||
}
|
||||
|
||||
await this.get().locator('button:has-text("Back"):visible').waitFor();
|
||||
await this.waitForResponse({
|
||||
requestUrlPathToMatch: '/api/v1/db/data/noco/',
|
||||
httpMethodsToMatch: ['GET'],
|
||||
uiAction: this.get().locator('button:has-text("Import"):visible').click(),
|
||||
});
|
||||
await this.dashboard.waitForTabRender({
|
||||
title: tblList[0],
|
||||
});
|
||||
}
|
||||
|
||||
private async expandTableList(param: { index: number }) {
|
||||
await this.get().locator(`.ant-collapse-header`).nth(param.index).click();
|
||||
await this.rootPage.waitForTimeout(1000);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user