[MM-53127] e2e-tests : Drafts badge doesn't clear when parent message deleted and removed (#23705)

Этот коммит содержится в:
M-ZubairAhmed
2023-07-05 17:13:55 +05:30
коммит произвёл GitHub
родитель 33565dc118
Коммит b153a39d3e
14 изменённых файлов: 440 добавлений и 9 удалений

Просмотреть файл

@@ -0,0 +1,132 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {test, expect} from '@e2e-support/test_fixture';
import {createRandomPost} from '@e2e-support/server/post';
test('MM-T5435_1 Global Drafts link in sidebar should be hidden when another user deleted root post and user removes the deleted post ', async ({
pw,
pages,
}) => {
const {adminClient, team, adminUser, user} = await pw.initSetup();
if (!adminUser) {
throw new Error('Failed to create admin user');
}
// # Get the default channel of the team for getting the channel id
const channel = await adminClient.getChannelByName(team.id, 'town-square');
// # Create a post in the channel by admin
const adminPost = await adminClient.createPost(
createRandomPost({
channel_id: channel.id,
user_id: adminUser.id,
})
);
// # Log in as user in new browser context
const {page} = await pw.testBrowser.login(user);
// # Visit default channel page
const channelPage = new pages.ChannelsPage(page);
await channelPage.goto();
await channelPage.toBeVisible();
const lastPostByAdmin = await channelPage.getLastPost();
await lastPostByAdmin.toBeVisible();
// # Open the last post sent by admin in RHS
await lastPostByAdmin.hover();
await lastPostByAdmin.postMenu.toBeVisible();
await lastPostByAdmin.postMenu.reply();
// # Write a message as a user
const sidebarRight = channelPage.sidebarRight;
await sidebarRight.toBeVisible();
await sidebarRight.postMessage('Replying to a thread');
await sidebarRight.sendMessage();
// # Write a message in the reply thread but don't send it now so that it becomes a draft
const draftMessageByUser = 'I should be in drafts by User';
await sidebarRight.postMessage(draftMessageByUser);
// # Close the RHS for draft to be saved
await sidebarRight.close()
// * Verify drafts link in channel sidebar is visible
await channelPage.sidebarLeft.draftsVisible();
// # Delete the last post by admin
try {
await adminClient.deletePost(adminPost.id);
} catch (error) {
throw new Error('Failed to delete post by admin');
}
// # Open the last post in the channel sent by admin again
await lastPostByAdmin.threadFooter.reply();
// * Verify drafts in user's textbox is still visible
const rhsTextboxValue = await sidebarRight.getInputValue();
expect(rhsTextboxValue).toBe(draftMessageByUser);
// # Click on remove post
const deletedPostByAdminInRHS = await sidebarRight.getRHSPostById(adminPost.id);
await deletedPostByAdminInRHS.remove();
// * Verify the drafts links should also be removed from sidebar
await channelPage.sidebarLeft.draftsNotVisible();
});
test('MM-T5435_2 Global Drafts link in sidebar should be hidden when user deletes root post ', async ({pw, pages}) => {
const {user} = await pw.initSetup();
// # Log in as user in new browser context
const {page} = await pw.testBrowser.login(user);
// # Visit default channel page
const channelPage = new pages.ChannelsPage(page);
await channelPage.goto();
await channelPage.toBeVisible();
// # Post a message in the channel
await channelPage.postMessage('Message which will be deleted');
await channelPage.sendMessage();
// # Start a thread by clicking on reply menuitem from post options menu
const post = await channelPage.getLastPost();
await post.hover();
await post.postMenu.toBeVisible();
await post.postMenu.reply();
const sidebarRight = channelPage.sidebarRight;
await sidebarRight.toBeVisible();
// # Write a message in the thread
await sidebarRight.postMessage('Replying to a thread');
await sidebarRight.sendMessage();
// # Write a message in the reply thread but don't send it
await sidebarRight.postMessage('I should be in drafts');
// # Close the RHS for draft to be saved
await sidebarRight.close()
// * Verify drafts link in channel sidebar is visible
await channelPage.sidebarLeft.draftsVisible();
// # Click on the dot menu of the post and select delete
await post.hover();
await post.postMenu.toBeVisible();
await post.postMenu.openDotMenu();
await channelPage.postDotMenu.toBeVisible()
await channelPage.postDotMenu.delete();
// # Confirm the delete from the modal
await channelPage.deletePostModal.toBeVisible();
await channelPage.deletePostModal.confirm();
// * Verify drafts link in channel sidebar is visible
await channelPage.sidebarLeft.draftsNotVisible();
});