103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
import { expect, test } from '@playwright/test';
|
|
import axios from 'axios';
|
|
|
|
export default () => {
|
|
test.describe('search-feedback suite', () => {
|
|
test('creating and searching a feedback succeed', async ({ page }) => {
|
|
await page.goto('http://localhost:3000', {
|
|
waitUntil: 'domcontentloaded',
|
|
});
|
|
|
|
await page.getByRole('radio', { name: 'Feedback' }).click();
|
|
await page.waitForURL(/.*channelId.*/, { timeout: 10000 });
|
|
|
|
await expect(page.getByText('There is no data yet')).toBeVisible();
|
|
|
|
const url = new URL(page.url());
|
|
const pathname = url.pathname;
|
|
const segments = pathname.split('/');
|
|
const projectId = segments[3];
|
|
const params = new URLSearchParams(url.search);
|
|
const channelId = params.get('channelId');
|
|
|
|
await axios.post(
|
|
`http://localhost:4000/api/projects/${projectId}/channels/${channelId}/feedbacks`,
|
|
{
|
|
message: 'test text1',
|
|
},
|
|
{ headers: { 'x-api-key': 'MASTER_API_KEY' } },
|
|
);
|
|
|
|
await axios.post(
|
|
`http://localhost:4000/api/projects/${projectId}/channels/${channelId}/feedbacks`,
|
|
{
|
|
message: 'test text2',
|
|
},
|
|
{ headers: { 'x-api-key': 'MASTER_API_KEY' } },
|
|
);
|
|
|
|
await page.goto(
|
|
`http://localhost:3000/main/project/${projectId}/feedback?channelId=${channelId}`,
|
|
{ waitUntil: 'domcontentloaded' },
|
|
);
|
|
|
|
await page.waitForTimeout(1000);
|
|
|
|
await expect(page.locator('tbody')).toContainText('test text1');
|
|
await expect(page.locator('tbody')).toContainText('test text2');
|
|
|
|
await page.getByText('Filter').click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByRole('button', { name: 'ID' }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByRole('option', { name: 'message' }).click();
|
|
|
|
await page.getByPlaceholder('Please enter').fill('test text1');
|
|
|
|
await page.getByRole('button', { name: 'Confirm' }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await expect(page.locator('tbody')).toContainText('test text1');
|
|
await expect(page.locator('tbody')).not.toContainText('test text2');
|
|
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByText('Filter').click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByText('Add Filter').click();
|
|
|
|
await page.getByRole('button', { name: 'ID' }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByRole('option', { name: 'message' }).click();
|
|
|
|
await page.getByPlaceholder('Please enter').nth(1).fill('test text2');
|
|
|
|
await page.getByText('And', { exact: true }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByRole('option', { name: 'Or', exact: true }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await page.getByRole('button', { name: 'Confirm' }).click();
|
|
await page.waitForTimeout(1000);
|
|
|
|
await expect(page.locator('tbody')).toContainText('test text1');
|
|
await expect(page.locator('tbody')).toContainText('test text2');
|
|
|
|
await page.getByText('View').click();
|
|
await page.getByText('ID').nth(1).click();
|
|
await page.getByText('Created').nth(1).click();
|
|
await page.getByText('Updated').nth(1).click();
|
|
|
|
await page.getByText('Expand').first().click();
|
|
await page.waitForTimeout(1000);
|
|
await page.getByText('Expand').first().click();
|
|
await page.waitForTimeout(1000);
|
|
});
|
|
});
|
|
};
|