mattermost-mobile/detox/e2e/test/channels/create_and_edit_header.e2e.ts

139 lines
6.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 {Setup} from '@support/server_api';
import {
serverOneUrl,
siteOneUrl,
} from '@support/test_config';
import {
ChannelListScreen,
ChannelScreen,
CreateOrEditChannelScreen,
HomeScreen,
LoginScreen,
ServerScreen,
} from '@support/ui/screen';
import {getRandomId} from '@support/utils';
import {expect} from 'detox';
describe('Channels - Create Channel and Edit Channel Header', () => {
const serverOneDisplayName = 'Server 1';
beforeAll(async () => {
const {user} = await Setup.apiInit(siteOneUrl);
// # 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-T4731_1 - should match elements on create channel screen', async () => {
// # Open create channel screen
await CreateOrEditChannelScreen.openCreateChannel();
// * Verify basic elements on create channel screen
await expect(CreateOrEditChannelScreen.closeButton).toBeVisible();
await expect(CreateOrEditChannelScreen.createButton).toBeVisible();
await expect(CreateOrEditChannelScreen.makePrivateToggledOff).toBeVisible();
await expect(CreateOrEditChannelScreen.makePrivateDescription).toHaveText('When a channel is set to private, only invited team members can access and participate in that channel');
await expect(CreateOrEditChannelScreen.displayNameInput).toBeVisible();
await expect(CreateOrEditChannelScreen.purposeInput).toBeVisible();
await expect(CreateOrEditChannelScreen.purposeDescription).toHaveText('Describe how this channel should be used.');
await expect(CreateOrEditChannelScreen.headerInput).toBeVisible();
await expect(CreateOrEditChannelScreen.headerDescription).toHaveText('Specify text to appear in the channel header beside the channel name. For example, include frequently used links by typing link text [Link Title](http://example.com).');
// # Go back to channel list screen
await CreateOrEditChannelScreen.close();
});
it('MM-T4731_2 - should be able to create a public channel and edit the channel header', async () => {
// # Open create channel screen, toggle make private off, fill out channel info, and tap create button
const suffix = getRandomId();
const displayName = `Channel ${suffix}`;
const purpose = `Purpose ${suffix}`;
const header = `Header ${suffix}`;
await CreateOrEditChannelScreen.openCreateChannel();
await expect(CreateOrEditChannelScreen.makePrivateToggledOff).toBeVisible();
await CreateOrEditChannelScreen.displayNameInput.replaceText(displayName);
await CreateOrEditChannelScreen.purposeInput.replaceText(purpose);
await CreateOrEditChannelScreen.headerInput.replaceText(header);
await CreateOrEditChannelScreen.createButton.tap();
// * Verify on newly created public channel
await ChannelScreen.toBeVisible();
await expect(ChannelScreen.headerTitle).toHaveText(displayName);
await expect(ChannelScreen.introDisplayName).toHaveText(displayName);
// # Tap on set header option to edit the channel header
await ChannelScreen.introOptionSetHeaderItem.tap();
// * Verify channel header is correct
await expect(CreateOrEditChannelScreen.headerInput).toHaveValue(header);
// # Edit the channel header, save, and re-open edit channel header screen
await CreateOrEditChannelScreen.headerInput.replaceText(`${header} edit`);
await CreateOrEditChannelScreen.saveButton.tap();
await CreateOrEditChannelScreen.openEditChannel();
// * Verify channel header has new value
await expect(CreateOrEditChannelScreen.headerInput).toHaveValue(`${header} edit`);
// # Go back to channel list screen
await CreateOrEditChannelScreen.close();
await ChannelScreen.back();
});
it('MM-T4731_3 - should be able to create a private channel and edit the channel header', async () => {
// # Open create channel screen, toggle make private on, fill out channel info, and tap create button
const suffix = getRandomId();
const displayName = `Channel ${suffix}`;
const purpose = `Purpose ${suffix}`;
const header = `Header ${suffix}`;
await CreateOrEditChannelScreen.openCreateChannel();
await CreateOrEditChannelScreen.toggleMakePrivateOn();
await CreateOrEditChannelScreen.displayNameInput.replaceText(displayName);
await CreateOrEditChannelScreen.purposeInput.replaceText(purpose);
await CreateOrEditChannelScreen.headerInput.replaceText(header);
await CreateOrEditChannelScreen.createButton.tap();
// * Verify on newly created private channel
await ChannelScreen.toBeVisible();
await expect(ChannelScreen.headerTitle).toHaveText(displayName);
await expect(ChannelScreen.introDisplayName).toHaveText(displayName);
// # Tap on set header option to edit the channel header
await ChannelScreen.introOptionSetHeaderItem.tap();
// * Verify channel header is correct
await expect(CreateOrEditChannelScreen.headerInput).toHaveValue(header);
// # Edit the channel header, save, and re-open edit channel header screen
await CreateOrEditChannelScreen.headerInput.replaceText(`${header} edit`);
await CreateOrEditChannelScreen.saveButton.tap();
await CreateOrEditChannelScreen.openEditChannel();
// * Verify channel header has new value
await expect(CreateOrEditChannelScreen.headerInput).toHaveValue(`${header} edit`);
// # Go back to channel list screen
await CreateOrEditChannelScreen.close();
await ChannelScreen.back();
});
});