mattermost-mobile/detox/e2e/test/messaging/message_edit.e2e.js
2021-06-01 07:37:50 -07:00

83 lines
2.6 KiB
JavaScript

// 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 {
ChannelScreen,
EditPostScreen,
} from '@support/ui/screen';
import {
Channel,
Post,
Setup,
} from '@support/server_api';
describe('Message Edit', () => {
const testMessage = Date.now().toString();
const additionalText = ' additional text';
const {
getPostListPostItem,
openPostOptionsFor,
postMessage,
} = ChannelScreen;
const {
messageInput,
saveButton,
} = EditPostScreen;
let testChannel;
beforeAll(async () => {
const {team, user} = await Setup.apiInit();
const {channel} = await Channel.apiGetChannelByName(team.id, 'town-square');
testChannel = channel;
// # Open channel screen
await ChannelScreen.open(user);
});
afterAll(async () => {
await ChannelScreen.logout();
});
it('MM-T100 should be able to edit a message and cancel', async () => {
// # Post a message
await postMessage(testMessage);
// # Open edit post screen
const {post} = await Post.apiGetLastPostInChannel(testChannel.id);
await openPostOptionsFor(post.id, testMessage);
await EditPostScreen.open();
// # Edit post and cancel
await messageInput.tap();
await messageInput.typeText(additionalText);
await EditPostScreen.close();
// * Verify post is not edited
await ChannelScreen.toBeVisible();
const {postListPostItem} = await getPostListPostItem(post.id, testMessage);
await expect(postListPostItem).toBeVisible();
});
it('MM-T101 should be able to edit a message and save', async () => {
// # Open edit post screen
const {post} = await Post.apiGetLastPostInChannel(testChannel.id);
await openPostOptionsFor(post.id, testMessage);
await EditPostScreen.open();
// # Edit post and save
await messageInput.tap();
await messageInput.typeText(additionalText);
await saveButton.tap();
// * Verify post is edited
await ChannelScreen.toBeVisible();
const {postListPostItem} = await getPostListPostItem(post.id, `${testMessage}${additionalText} (edited)`);
await expect(postListPostItem).toBeVisible();
});
});