2024-07-04 12:02:05 +02:00
|
|
|
import { expect, test } from '@playwright/test';
|
|
|
|
|
|
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
|
|
|
await page.goto('/');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe('Documents Grid', () => {
|
|
|
|
|
test('checks all the elements are visible', async ({ page }) => {
|
|
|
|
|
await expect(page.locator('h2').getByText('Documents')).toBeVisible();
|
|
|
|
|
|
|
|
|
|
const datagrid = page
|
|
|
|
|
.getByLabel('Datagrid of the documents page 1')
|
|
|
|
|
.getByRole('table');
|
|
|
|
|
|
|
|
|
|
const thead = datagrid.locator('thead');
|
|
|
|
|
await expect(thead.getByText(/Document name/i)).toBeVisible();
|
|
|
|
|
await expect(thead.getByText(/Created at/i)).toBeVisible();
|
|
|
|
|
await expect(thead.getByText(/Updated at/i)).toBeVisible();
|
|
|
|
|
await expect(thead.getByText(/Your role/i)).toBeVisible();
|
2024-08-06 11:42:13 +02:00
|
|
|
await expect(thead.getByText(/Members/i)).toBeVisible();
|
2024-07-04 12:02:05 +02:00
|
|
|
|
|
|
|
|
const row1 = datagrid.getByRole('row').nth(1).getByRole('cell');
|
|
|
|
|
const docName = await row1.nth(1).textContent();
|
|
|
|
|
expect(docName).toBeDefined();
|
|
|
|
|
|
|
|
|
|
const docCreatedAt = await row1.nth(2).textContent();
|
|
|
|
|
expect(docCreatedAt).toBeDefined();
|
|
|
|
|
|
|
|
|
|
const docUpdatedAt = await row1.nth(3).textContent();
|
|
|
|
|
expect(docUpdatedAt).toBeDefined();
|
|
|
|
|
|
|
|
|
|
const docRole = await row1.nth(4).textContent();
|
|
|
|
|
expect(
|
|
|
|
|
docRole &&
|
|
|
|
|
['Administrator', 'Owner', 'Reader', 'Editor'].includes(docRole),
|
|
|
|
|
).toBeTruthy();
|
|
|
|
|
|
|
|
|
|
const docUserNumber = await row1.nth(5).textContent();
|
|
|
|
|
expect(docUserNumber).toBeDefined();
|
|
|
|
|
|
|
|
|
|
// Open the document
|
|
|
|
|
await row1.nth(1).click();
|
|
|
|
|
|
|
|
|
|
await expect(page.locator('h2').getByText(docName!)).toBeVisible();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
[
|
|
|
|
|
{
|
|
|
|
|
nameColumn: 'Document name',
|
|
|
|
|
ordering: 'title',
|
|
|
|
|
cellNumber: 1,
|
2024-08-23 13:20:32 +02:00
|
|
|
orderDefault: '',
|
|
|
|
|
orderDesc: '&ordering=-title',
|
|
|
|
|
orderAsc: '&ordering=title',
|
2024-07-04 12:02:05 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
nameColumn: 'Created at',
|
|
|
|
|
ordering: 'created_at',
|
|
|
|
|
cellNumber: 2,
|
2024-08-23 13:20:32 +02:00
|
|
|
orderDefault: '',
|
|
|
|
|
orderDesc: '&ordering=-created_at',
|
|
|
|
|
orderAsc: '&ordering=created_at',
|
2024-07-04 12:02:05 +02:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
nameColumn: 'Updated at',
|
|
|
|
|
ordering: 'updated_at',
|
|
|
|
|
cellNumber: 3,
|
2024-08-23 13:20:32 +02:00
|
|
|
orderDefault: '&ordering=-updated_at',
|
|
|
|
|
orderDesc: '&ordering=updated_at',
|
|
|
|
|
orderAsc: '',
|
2024-07-04 12:02:05 +02:00
|
|
|
},
|
2024-08-23 13:20:32 +02:00
|
|
|
].forEach(
|
|
|
|
|
({
|
|
|
|
|
nameColumn,
|
|
|
|
|
ordering,
|
|
|
|
|
cellNumber,
|
|
|
|
|
orderDefault,
|
|
|
|
|
orderDesc,
|
|
|
|
|
orderAsc,
|
|
|
|
|
}) => {
|
|
|
|
|
test(`checks datagrid ordering ${ordering}`, async ({ page }) => {
|
|
|
|
|
const responsePromise = page.waitForResponse(
|
|
|
|
|
(response) =>
|
|
|
|
|
response.url().includes(`/documents/?page=1${orderDefault}`) &&
|
|
|
|
|
response.status() === 200,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const responsePromiseOrderingDesc = page.waitForResponse(
|
|
|
|
|
(response) =>
|
|
|
|
|
response.url().includes(`/documents/?page=1${orderDesc}`) &&
|
|
|
|
|
response.status() === 200,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const responsePromiseOrderingAsc = page.waitForResponse(
|
|
|
|
|
(response) =>
|
|
|
|
|
response.url().includes(`/documents/?page=1${orderAsc}`) &&
|
|
|
|
|
response.status() === 200,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Checks the initial state
|
|
|
|
|
const datagrid = page
|
|
|
|
|
.getByLabel('Datagrid of the documents page 1')
|
|
|
|
|
.getByRole('table');
|
|
|
|
|
const thead = datagrid.locator('thead');
|
|
|
|
|
|
|
|
|
|
const response = await responsePromise;
|
|
|
|
|
expect(response.ok()).toBeTruthy();
|
|
|
|
|
|
|
|
|
|
const docNameRow1 = datagrid
|
|
|
|
|
.getByRole('row')
|
|
|
|
|
.nth(1)
|
|
|
|
|
.getByRole('cell')
|
|
|
|
|
.nth(cellNumber);
|
|
|
|
|
const docNameRow2 = datagrid
|
|
|
|
|
.getByRole('row')
|
|
|
|
|
.nth(2)
|
|
|
|
|
.getByRole('cell')
|
|
|
|
|
.nth(cellNumber);
|
|
|
|
|
|
|
|
|
|
await expect(datagrid.getByLabel('Loading data')).toBeHidden();
|
|
|
|
|
|
|
|
|
|
// Initial state
|
|
|
|
|
await expect(docNameRow1).toHaveText(/.*/);
|
|
|
|
|
await expect(docNameRow2).toHaveText(/.*/);
|
|
|
|
|
const initialDocNameRow1 = await docNameRow1.textContent();
|
|
|
|
|
const initialDocNameRow2 = await docNameRow2.textContent();
|
|
|
|
|
|
|
|
|
|
expect(initialDocNameRow1).toBeDefined();
|
|
|
|
|
expect(initialDocNameRow2).toBeDefined();
|
|
|
|
|
|
|
|
|
|
// Ordering ASC
|
|
|
|
|
await thead.getByText(nameColumn).click();
|
|
|
|
|
|
|
|
|
|
const responseOrderingAsc = await responsePromiseOrderingAsc;
|
|
|
|
|
expect(responseOrderingAsc.ok()).toBeTruthy();
|
|
|
|
|
|
|
|
|
|
await expect(datagrid.getByLabel('Loading data')).toBeHidden();
|
|
|
|
|
|
|
|
|
|
await expect(docNameRow1).toHaveText(/.*/);
|
|
|
|
|
await expect(docNameRow2).toHaveText(/.*/);
|
|
|
|
|
const textDocNameRow1Asc = await docNameRow1.textContent();
|
|
|
|
|
const textDocNameRow2Asc = await docNameRow2.textContent();
|
|
|
|
|
expect(
|
|
|
|
|
textDocNameRow1Asc &&
|
|
|
|
|
textDocNameRow2Asc &&
|
|
|
|
|
textDocNameRow1Asc.localeCompare(textDocNameRow2Asc, 'en', {
|
|
|
|
|
caseFirst: 'false',
|
|
|
|
|
ignorePunctuation: true,
|
|
|
|
|
}) <= 0,
|
|
|
|
|
).toBeTruthy();
|
|
|
|
|
|
|
|
|
|
// Ordering Desc
|
|
|
|
|
await thead.getByText(nameColumn).click();
|
|
|
|
|
|
|
|
|
|
const responseOrderingDesc = await responsePromiseOrderingDesc;
|
|
|
|
|
expect(responseOrderingDesc.ok()).toBeTruthy();
|
|
|
|
|
|
|
|
|
|
await expect(datagrid.getByLabel('Loading data')).toBeHidden();
|
|
|
|
|
|
|
|
|
|
await expect(docNameRow1).toHaveText(/.*/);
|
|
|
|
|
await expect(docNameRow2).toHaveText(/.*/);
|
|
|
|
|
const textDocNameRow1Desc = await docNameRow1.textContent();
|
|
|
|
|
const textDocNameRow2Desc = await docNameRow2.textContent();
|
|
|
|
|
|
|
|
|
|
expect(
|
|
|
|
|
textDocNameRow1Desc &&
|
|
|
|
|
textDocNameRow2Desc &&
|
|
|
|
|
textDocNameRow1Desc.localeCompare(textDocNameRow2Desc, 'en', {
|
|
|
|
|
caseFirst: 'false',
|
|
|
|
|
ignorePunctuation: true,
|
|
|
|
|
}) >= 0,
|
|
|
|
|
).toBeTruthy();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
);
|
2024-07-04 12:02:05 +02:00
|
|
|
|
|
|
|
|
test('checks the pagination', async ({ page }) => {
|
|
|
|
|
const responsePromisePage1 = page.waitForResponse(
|
|
|
|
|
(response) =>
|
|
|
|
|
response.url().includes(`/documents/?page=1`) &&
|
|
|
|
|
response.status() === 200,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const responsePromisePage2 = page.waitForResponse(
|
|
|
|
|
(response) =>
|
|
|
|
|
response.url().includes(`/documents/?page=2`) &&
|
|
|
|
|
response.status() === 200,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const datagridPage1 = page
|
|
|
|
|
.getByLabel('Datagrid of the documents page 1')
|
|
|
|
|
.getByRole('table');
|
|
|
|
|
|
|
|
|
|
const responsePage1 = await responsePromisePage1;
|
|
|
|
|
expect(responsePage1.ok()).toBeTruthy();
|
|
|
|
|
|
2024-07-09 11:48:38 +02:00
|
|
|
await expect(
|
|
|
|
|
datagridPage1.getByRole('row').nth(1).getByRole('cell').nth(1),
|
|
|
|
|
).toHaveText(/.*/);
|
2024-07-04 12:02:05 +02:00
|
|
|
|
|
|
|
|
await page.getByLabel('Go to page 2').click();
|
|
|
|
|
|
|
|
|
|
const datagridPage2 = page
|
|
|
|
|
.getByLabel('Datagrid of the documents page 2')
|
|
|
|
|
.getByRole('table');
|
|
|
|
|
|
|
|
|
|
const responsePage2 = await responsePromisePage2;
|
|
|
|
|
expect(responsePage2.ok()).toBeTruthy();
|
|
|
|
|
|
2024-07-09 11:48:38 +02:00
|
|
|
await expect(
|
|
|
|
|
datagridPage2.getByRole('row').nth(1).getByRole('cell').nth(1),
|
|
|
|
|
).toHaveText(/.*/);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('it deletes the document', async ({ page }) => {
|
|
|
|
|
const datagrid = page
|
|
|
|
|
.getByLabel('Datagrid of the documents page 1')
|
|
|
|
|
.getByRole('table');
|
|
|
|
|
|
|
|
|
|
const docRow = datagrid.getByRole('row').nth(1).getByRole('cell');
|
|
|
|
|
|
|
|
|
|
const docName = await docRow.nth(1).textContent();
|
|
|
|
|
|
2024-10-01 16:00:14 +02:00
|
|
|
await docRow
|
2024-07-09 11:48:38 +02:00
|
|
|
.getByRole('button', {
|
2024-10-01 16:00:14 +02:00
|
|
|
name: 'Delete the document',
|
2024-07-09 11:48:38 +02:00
|
|
|
})
|
|
|
|
|
.click();
|
|
|
|
|
|
|
|
|
|
await expect(
|
|
|
|
|
page.locator('h2').getByText(`Deleting the document "${docName}"`),
|
|
|
|
|
).toBeVisible();
|
2024-07-04 12:02:05 +02:00
|
|
|
|
2024-07-09 11:48:38 +02:00
|
|
|
await page
|
|
|
|
|
.getByRole('button', {
|
|
|
|
|
name: 'Confirm deletion',
|
|
|
|
|
})
|
|
|
|
|
.click();
|
2024-07-04 12:02:05 +02:00
|
|
|
|
2024-07-09 11:48:38 +02:00
|
|
|
await expect(
|
|
|
|
|
page.getByText('The document has been deleted.'),
|
|
|
|
|
).toBeVisible();
|
2024-07-04 12:02:05 +02:00
|
|
|
|
2024-07-09 11:48:38 +02:00
|
|
|
await expect(datagrid.getByText(docName!)).toBeHidden();
|
2024-07-04 12:02:05 +02:00
|
|
|
});
|
|
|
|
|
});
|