// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. // ******************************************************************* // - [#] indicates a test step (e.g. # Go to a screen) // - [*] indicates an assertion (e.g. * Check the title) // - Use element testID when selecting an element. Create one if none. // ******************************************************************* import { Post, Setup, } from '@support/server_api'; import { serverOneUrl, siteOneUrl, } from '@support/test_config'; import { ChannelListScreen, ChannelScreen, GlobalThreadsScreen, HomeScreen, LoginScreen, ServerScreen, ThreadOptionsScreen, ThreadScreen, } from '@support/ui/screen'; import {getRandomId} from '@support/utils'; import {expect} from 'detox'; describe('Threads - Reply to Thread', () => { const serverOneDisplayName = 'Server 1'; const channelsCategory = 'channels'; let testChannel: any; beforeAll(async () => { const {channel, user} = await Setup.apiInit(siteOneUrl); testChannel = channel; // # Log in to server await ServerScreen.connectToServer(serverOneUrl, serverOneDisplayName); await LoginScreen.login(user); }); beforeEach(async () => { // * Verify on channel list screen await ChannelListScreen.toBeVisible(); }); afterAll(async () => { // # Log out await HomeScreen.logout(); }); it('MM-T4809_1 - should be able to reply to a thread via thread options', async () => { // # Create a thread, go back to channel list screen, and then go to global threads screen const parentMessage = `Message ${getRandomId()}`; await ChannelScreen.open(channelsCategory, testChannel.name); await ChannelScreen.postMessage(parentMessage); const {post: parentPost} = await Post.apiGetLastPostInChannel(siteOneUrl, testChannel.id); await ChannelScreen.openReplyThreadFor(parentPost.id, parentMessage); const replyMessage = `${parentMessage} reply`; await ThreadScreen.postMessage(replyMessage); await ThreadScreen.back(); await ChannelScreen.back(); await GlobalThreadsScreen.open(); // * Verify thread is displayed await expect(GlobalThreadsScreen.getThreadItem(parentPost.id)).toBeVisible(); // # Open thread options for thread and tap on reply option await GlobalThreadsScreen.openThreadOptionsFor(parentPost.id); await ThreadOptionsScreen.replyThreadOption.tap(); // * Verify on thread screen await ThreadScreen.toBeVisible(); // # Add new reply to thread const newReplyMessage = `${parentMessage} new reply`; await ThreadScreen.postMessage(newReplyMessage); // * Verify new reply is posted const {post: newReplyPost} = await Post.apiGetLastPostInChannel(siteOneUrl, testChannel.id); const {postListPostItem} = ThreadScreen.getPostListPostItem(newReplyPost.id, newReplyMessage); await expect(postListPostItem).toBeVisible(); // # Go back to channel list screen await ThreadScreen.back(); await GlobalThreadsScreen.back(); }); it('MM-T4809_2 - should be able to reply to a thread by opening thread', async () => { // # Create a thread, go back to channel list screen, and then go to global threads screen const parentMessage = `Message ${getRandomId()}`; await ChannelScreen.open(channelsCategory, testChannel.name); await ChannelScreen.postMessage(parentMessage); const {post: parentPost} = await Post.apiGetLastPostInChannel(siteOneUrl, testChannel.id); await ChannelScreen.openReplyThreadFor(parentPost.id, parentMessage); const replyMessage = `${parentMessage} reply`; await ThreadScreen.postMessage(replyMessage); await ThreadScreen.back(); await ChannelScreen.back(); await GlobalThreadsScreen.open(); // * Verify thread is displayed await expect(GlobalThreadsScreen.getThreadItem(parentPost.id)).toBeVisible(); // # Tap on the thread await GlobalThreadsScreen.getThreadItem(parentPost.id).tap(); // * Verify on thread screen await ThreadScreen.toBeVisible(); // # Add new reply to thread const newReplyMessage = `${parentMessage} new reply`; await ThreadScreen.postMessage(newReplyMessage); // * Verify new reply is posted const {post: newReplyPost} = await Post.apiGetLastPostInChannel(siteOneUrl, testChannel.id); const {postListPostItem} = ThreadScreen.getPostListPostItem(newReplyPost.id, newReplyMessage); await expect(postListPostItem).toBeVisible(); // # Go back to channel list screen await ThreadScreen.back(); await GlobalThreadsScreen.back(); }); });