0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/apps/comments-ui/test/e2e/content.test.ts
Ronald Langeveld cf6884d098
Wired up Admin Comment Endpoints to UI (#21661)
ref PLG-227

- Updated logic that allows Admin Users on comments to interact with
some endpoints from a specific admin-only route.
- It pulls 2 admin specific routes:
- 1. an admin specific 'browse' route that includes hidden comments that
would otherwise be hidden from regular users and members.
- 2. A specific replies route, that would also include hidden comments
- This was needed in order to get accurate pagination.

- Additionally, it wires up the routes via `message-handler` that deal
with the potential cors issues.
- Includes style updates

---------

Co-authored-by: Sanne de Vries <sannedv@protonmail.com>
Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
2024-11-21 10:52:36 +00:00

144 lines
4.8 KiB
TypeScript

import {MockedApi, initialize} from '../utils/e2e';
import {expect, test} from '@playwright/test';
test.describe('Deleted and Hidden Content', async () => {
// This is actually handled by the API since it shouldn not longer return hidden or deleted comments for non-admins, but we still test the behaviour here.
test('hides hidden and deleted comments for non admins', async ({page}) => {
const mockedApi = new MockedApi({});
mockedApi.addComment({
html: '<p>This is comment 1</p>'
});
mockedApi.addComment({
html: '<p>This is comment 2</p>',
status: 'hidden'
});
mockedApi.addComment({
html: '<p>This is comment 3</p>'
});
mockedApi.addComment({
html: '<p>This is comment 4</p>',
status: 'deleted'
});
mockedApi.addComment({
html: '<p>This is comment 5</p>'
});
const {frame} = await initialize({
mockedApi,
page,
publication: 'Publisher Weekly',
labs: {
commentImprovements: true
}
});
const iframeElement = await page.locator('iframe[data-frame="admin-auth"]');
await expect(iframeElement).toHaveCount(1);
// Check if more actions button is visible on each comment
const comments = await frame.getByTestId('comment-component');
// 3 comments are visible
await expect(comments).toHaveCount(3);
});
test('hide and deleted comment shows with hidden/deleted text when it has replies', async ({page}) => {
const mockedApi = new MockedApi({});
mockedApi.addComment({
html: '<p>This is comment 1</p>'
});
mockedApi.addComment({
html: '<p>This is comment 2</p>',
status: 'hidden',
replies: [
mockedApi.buildReply({
html: '<p>This is reply 1</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 2</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 3</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 4</p>'
})
]
});
mockedApi.addComment({
html: '<p>This is comment 3</p>'
});
mockedApi.addComment({
html: '<p>This is comment 4</p>',
status: 'deleted',
replies: [
mockedApi.buildReply({
html: '<p>This is reply 1</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 2</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 3</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 4</p>'
})
]
});
mockedApi.addComment({
html: '<p>This is comment 5</p>'
});
const {frame} = await initialize({
mockedApi,
page,
publication: 'Publisher Weekly',
labs: {
commentImprovements: true
}
});
await expect (frame.getByText('This is comment 2')).not.toBeVisible();
await expect (frame.getByText('This comment has been hidden')).toBeVisible();
await expect (frame.getByText('This is comment 4')).not.toBeVisible();
await expect (frame.getByText('This comment has been removed')).toBeVisible();
});
test('hides replies thats hidden and deleted', async ({page}) => {
const mockedApi = new MockedApi({});
mockedApi.addComment({
html: '<p>This is comment 2</p>',
status: 'hidden',
replies: [
mockedApi.buildReply({
html: '<p>This is reply 1</p>'
}),
mockedApi.buildReply({
html: '<p>This is reply 2</p>',
status: 'deleted'
}),
mockedApi.buildReply({
html: '<p>This is reply 3</p>',
status: 'hidden'
})
]
});
const {frame} = await initialize({
mockedApi,
page,
publication: 'Publisher Weekly',
labs: {
commentImprovements: true
}
});
await expect (frame.getByText('This is reply 1')).toBeVisible();
await expect (frame.getByText('This is reply 2')).not.toBeVisible();
// parent comment is hidden but shows text
await expect (frame.getByText('This comment has been hidden')).toBeVisible();
});
});