* Add linter rules for import order and type member delimiters * Remove unneeded group * Group all app/* imports before the internal imports * Move app/ imports before parent imports * Separate @node_modules imports into a different group * Substitute app paths by aliases * Fix @node_modules import order and add test related modules * Add aliases for types and test, and group import types
55 lines
1.9 KiB
JavaScript
55 lines
1.9 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 jestExpect from 'expect';
|
|
|
|
import {Channel, Post, Setup} from '@support/server_api';
|
|
import {ChannelScreen} from '@support/ui/screen';
|
|
|
|
describe('Messaging', () => {
|
|
let team;
|
|
let user;
|
|
|
|
beforeAll(async () => {
|
|
({team, user} = await Setup.apiInit());
|
|
|
|
// # Open channel screen
|
|
await ChannelScreen.open(user);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
await ChannelScreen.logout();
|
|
});
|
|
|
|
it('MM-T109 User can\'t send the same message repeatedly', async () => {
|
|
const {
|
|
postMessage,
|
|
sendButtonDisabled,
|
|
} = ChannelScreen;
|
|
|
|
// # Post a message
|
|
const message = Date.now().toString();
|
|
await postMessage(message);
|
|
|
|
// # Then tap send button repeatedly
|
|
await expect(sendButtonDisabled).toBeVisible();
|
|
await sendButtonDisabled.multiTap(3);
|
|
|
|
// * Check that message is successfully posted
|
|
await expect(element(by.text(message))).toExist();
|
|
|
|
// * Check that no duplicate message is saved.
|
|
const {channel} = await Channel.apiGetChannelByName(team.id, 'town-square');
|
|
const {posts} = await Post.apiGetPostsInChannel(channel.id);
|
|
jestExpect(posts.length).toEqual(3);
|
|
jestExpect(posts[0].message).toEqual(message);
|
|
jestExpect(posts[1].message).toEqual(`${user.username} joined the team.`);
|
|
jestExpect(posts[2].message).toEqual('sysadmin joined the team.');
|
|
});
|
|
});
|