* Detox/E2E: Messaging (at-mentions, channel mentions, autocomplete etc) e2e tests in Gekidou * Enable other failing tests so they're visible * Detox/E2E: Messaging markdown e2e tests in Gekidou (#6450) * Detox/E2E: Messaging markdown e2e tests in Gekidou * Added zephyr test ids * Added markdown smoke test * Enable disabled tests Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
91 lines
3.4 KiB
TypeScript
91 lines
3.4 KiB
TypeScript
// 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 {
|
|
Channel,
|
|
Post,
|
|
Setup,
|
|
} from '@support/server_api';
|
|
import {
|
|
serverOneUrl,
|
|
siteOneUrl,
|
|
} from '@support/test_config';
|
|
import {
|
|
ChannelListScreen,
|
|
ChannelScreen,
|
|
HomeScreen,
|
|
LoginScreen,
|
|
ServerScreen,
|
|
} from '@support/ui/screen';
|
|
import {timeouts, wait} from '@support/utils';
|
|
import {expect} from 'detox';
|
|
|
|
describe('Messaging - Channel Mention', () => {
|
|
const serverOneDisplayName = 'Server 1';
|
|
const channelsCategory = 'channels';
|
|
let testChannel: any;
|
|
let testTeam: any;
|
|
let testUser: any;
|
|
|
|
beforeAll(async () => {
|
|
const {channel, team, user} = await Setup.apiInit(siteOneUrl);
|
|
testChannel = channel;
|
|
testTeam = team;
|
|
testUser = user;
|
|
|
|
// # Log in to server
|
|
await ServerScreen.connectToServer(serverOneUrl, serverOneDisplayName);
|
|
await LoginScreen.login(testUser);
|
|
});
|
|
|
|
beforeEach(async () => {
|
|
// * Verify on channel list screen
|
|
await ChannelListScreen.toBeVisible();
|
|
});
|
|
|
|
afterAll(async () => {
|
|
// # Log out
|
|
await HomeScreen.logout();
|
|
});
|
|
|
|
it('MM-T4875_1 - should post channel mention as channel display name', async () => {
|
|
// # Open a channel screen and post a channel name mention
|
|
await ChannelScreen.open(channelsCategory, testChannel.name);
|
|
const {channel: targetChannel} = await Channel.apiCreateChannel(siteOneUrl, {teamId: testTeam.id});
|
|
await Channel.apiAddUserToChannel(siteOneUrl, testUser.id, targetChannel.id);
|
|
const channelNameMention = `~${targetChannel.name}`;
|
|
await ChannelScreen.postMessage(channelNameMention);
|
|
|
|
// * Verify post shows channel display name mention
|
|
const channelDisplayNameMention = `~${targetChannel.display_name}`;
|
|
const {post} = await Post.apiGetLastPostInChannel(siteOneUrl, testChannel.id);
|
|
await ChannelScreen.hasPostMessage(post.id, channelDisplayNameMention);
|
|
|
|
// # Go back to channel list screen
|
|
await ChannelScreen.back();
|
|
});
|
|
|
|
it('MM-T4875_2 - should be able to open joined channel by tapping on channel mention', async () => {
|
|
// # Open a channel screen, post a channel name mention, and tap on channel display name mention
|
|
await ChannelScreen.open(channelsCategory, testChannel.name);
|
|
const {channel: targetChannel} = await Channel.apiCreateChannel(siteOneUrl, {teamId: testTeam.id});
|
|
await Channel.apiAddUserToChannel(siteOneUrl, testUser.id, targetChannel.id);
|
|
const channelNameMention = `~${targetChannel.name}`;
|
|
const channelDisplayNameMention = `~${targetChannel.display_name}`;
|
|
await ChannelScreen.postMessage(channelNameMention);
|
|
await element(by.text(channelDisplayNameMention)).tap({x: 5, y: 10});
|
|
await wait(timeouts.ONE_SEC);
|
|
|
|
// * Verify redirected to target channel
|
|
await expect(ChannelScreen.headerTitle).toHaveText(targetChannel.display_name);
|
|
|
|
// # Go back to channel list screen
|
|
await ChannelScreen.back();
|
|
});
|
|
});
|