mattermost-mobile/detox/e2e/test/channels/browse_channels.e2e.ts
yasser khan 3cbde1663d
E2E feature schedule posts (#8709)
- Fix iOS and Android CI.
- Fixes E2E tests on both platform
- Added tests for scheduled draft feature.
2025-04-23 12:10:37 +05:30

198 lines
9.1 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,
Setup,
Team,
User,
} from '@support/server_api';
import {
serverOneUrl,
siteOneUrl,
} from '@support/test_config';
import {
BrowseChannelsScreen,
ChannelDropdownMenuScreen,
ChannelScreen,
ChannelListScreen,
HomeScreen,
LoginScreen,
ServerScreen,
} from '@support/ui/screen';
import {timeouts, wait} from '@support/utils';
import {expect} from 'detox';
describe('Channels - Browse Channels', () => {
const serverOneDisplayName = 'Server 1';
const channelsCategory = 'channels';
let testTeam: any;
let testUser: any;
beforeAll(async () => {
const {team, user} = await Setup.apiInit(siteOneUrl);
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-T4729_1 - should match elements on browse channels screen', async () => {
// # Open browse channels screen
await BrowseChannelsScreen.open();
// * Verify basic elements on browse channels screen
await expect(BrowseChannelsScreen.closeButton).toBeVisible();
await expect(BrowseChannelsScreen.searchInput).toBeVisible();
await expect(BrowseChannelsScreen.flatChannelList).toBeVisible();
// # Go back to channel list screen
await BrowseChannelsScreen.close();
});
it('MM-T4729_2 - should be able to browse and join an unjoined public channel', async () => {
// # As admin, create a new public channel so that user can join
const {channel} = await Channel.apiCreateChannel(siteOneUrl, {teamId: testTeam.id});
// * Verify new public channel does not appear on channel list screen
await expect(ChannelListScreen.getChannelItemDisplayName(channelsCategory, channel.display_name)).not.toExist();
// # Open browse channels screen and search for the new public channel name to join
await BrowseChannelsScreen.open();
await BrowseChannelsScreen.searchInput.replaceText(channel.name);
// * Verify search returns the new public channel item
await wait(timeouts.ONE_SEC);
await expect(BrowseChannelsScreen.getChannelItemDisplayName(channel.name)).toHaveText(channel.display_name);
// # Tap on the new public channel item
await BrowseChannelsScreen.getChannelItem(channel.name).multiTap(2);
await BrowseChannelsScreen.dismissScheduledPostTooltip();
// * Verify on newly joined public channel screen
await ChannelScreen.toBeVisible();
await expect(ChannelScreen.headerTitle).toHaveText(channel.display_name);
await expect(ChannelScreen.introDisplayName).toHaveText(channel.display_name);
// # Go back to channel list screen
await ChannelScreen.back();
await ChannelListScreen.toBeVisible();
// * Verify newly joined public channel is added to channel list
await expect(ChannelListScreen.getChannelItemDisplayName(channelsCategory, channel.name)).toBeVisible();
});
it('MM-T4729_3 - should display empty search state for browse channels', async () => {
// # Open browse channels screen and search for a non-existent channel
const searchTerm = 'blahblahblahblah';
await BrowseChannelsScreen.open();
await BrowseChannelsScreen.searchInput.replaceText(searchTerm);
// * Verify empty search state for browse channels
await wait(timeouts.ONE_SEC);
await expect(element(by.text(`No matches found for “${searchTerm}`))).toBeVisible();
await expect(element(by.text('Check the spelling or try another search.'))).toBeVisible();
// # Go back to channel list screen
await BrowseChannelsScreen.close();
});
it('MM-T4729_4 - should not be able to browse direct and group message channels', async () => {
// # Create direct and group message channels, open browse channels screen, and search for the direct message channel
const {user: testOtherUser1} = await User.apiCreateUser(siteOneUrl, {prefix: 'a'});
await Team.apiAddUserToTeam(siteOneUrl, testOtherUser1.id, testTeam.id);
const {user: testOtherUser2} = await User.apiCreateUser(siteOneUrl, {prefix: 'b'});
await Team.apiAddUserToTeam(siteOneUrl, testOtherUser2.id, testTeam.id);
await Channel.apiCreateDirectChannel(siteOneUrl, [testUser.id, testOtherUser1.id]);
await Channel.apiCreateGroupChannel(siteOneUrl, [testUser.id, testOtherUser1.id, testOtherUser2.id]);
await BrowseChannelsScreen.open();
await BrowseChannelsScreen.searchInput.replaceText(testOtherUser1.username);
// * Verify empty search state for browse channels
await wait(timeouts.ONE_SEC);
await expect(element(by.text(`No matches found for “${testOtherUser1.username}`))).toBeVisible();
// # Search for the group message channel
await BrowseChannelsScreen.searchInput.replaceText(testOtherUser2.username);
// * Verify empty search state for browse channels
await expect(element(by.text(`No matches found for “${testOtherUser2.username}`))).toBeVisible();
// # Go back to channel list screen
await BrowseChannelsScreen.close();
});
it('MM-T4729_5 - should be able to browse an archived channel', async () => {
// # Archive a channel, open browse channels screen, tap on channel dropdown, tap on archived channels menu item, and search for the archived channel
const {channel: archivedChannel} = await Channel.apiCreateChannel(siteOneUrl, {teamId: testTeam.id});
await Channel.apiAddUserToChannel(siteOneUrl, testUser.id, archivedChannel.id);
await Channel.apiDeleteChannel(siteOneUrl, archivedChannel.id);
await BrowseChannelsScreen.open();
await BrowseChannelsScreen.channelDropdownTextPublic.tap();
await wait(timeouts.ONE_SEC);
await ChannelDropdownMenuScreen.archivedChannelsItem.tap();
await BrowseChannelsScreen.searchInput.replaceText(archivedChannel.name);
// * Verify search returns the archived channel item
await wait(timeouts.ONE_SEC);
await expect(BrowseChannelsScreen.getChannelItemDisplayName(archivedChannel.name)).toHaveText(archivedChannel.display_name);
// # Go back to channel list screen
await BrowseChannelsScreen.close();
});
it('MM-T4729_6 - should not be able to browse a joined public channel', async () => {
// # Open browse channels screen and search for a joined public channel
const {channel: joinedPublicChannel} = await Channel.apiCreateChannel(siteOneUrl, {type: 'O', teamId: testTeam.id});
await Channel.apiAddUserToChannel(siteOneUrl, testUser.id, joinedPublicChannel.id);
await BrowseChannelsScreen.open();
await BrowseChannelsScreen.searchInput.replaceText(joinedPublicChannel.name);
// * Verify empty search state for browse channels
await wait(timeouts.ONE_SEC);
await expect(element(by.text(`No matches found for “${joinedPublicChannel.name}`))).toBeVisible();
// # Go back to channel list screen
await BrowseChannelsScreen.close();
});
it('MM-T4729_7 - should not be able to browse joined and unjoined private channel', async () => {
// # As admin, create joined and unjoined private channels, open browse channels screen, and search for the joined private channel
const {channel: joinedPrivateChannel} = await Channel.apiCreateChannel(siteOneUrl, {type: 'P', teamId: testTeam.id});
const {channel: unjoinedPrivateChannel} = await Channel.apiCreateChannel(siteOneUrl, {type: 'P', teamId: testTeam.id});
await Channel.apiAddUserToChannel(siteOneUrl, testUser.id, joinedPrivateChannel.id);
await BrowseChannelsScreen.open();
await BrowseChannelsScreen.searchInput.replaceText(joinedPrivateChannel.name);
// * Verify empty search state for browse channels
await expect(element(by.text(`No matches found for “${joinedPrivateChannel.name}`))).toBeVisible();
// # Search for the unjoined private channel
await BrowseChannelsScreen.searchInput.replaceText(unjoinedPrivateChannel.name);
// * Verify empty search state for browse channels
await wait(timeouts.ONE_SEC);
await expect(element(by.text(`No matches found for “${unjoinedPrivateChannel.name}`))).toBeVisible();
// # Go back to channel list screen
await BrowseChannelsScreen.close();
});
});