Move /e2e -> /e2e-tests
Этот коммит содержится в:
@@ -0,0 +1,66 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
// ***************************************************************
|
||||
// - [#] indicates a test step (e.g. # Go to a page)
|
||||
// - [*] indicates an assertion (e.g. * Check the title)
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @account_setting
|
||||
|
||||
describe('Settings > Sidebar > Channel Switcher', () => {
|
||||
let testUser;
|
||||
let testTeam;
|
||||
|
||||
before(() => {
|
||||
// # Login as test user
|
||||
cy.apiInitSetup({loginAfter: true}).then(({team, user}) => {
|
||||
testUser = user;
|
||||
testTeam = team;
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
// # Visit off-topic
|
||||
cy.visit(`/${testTeam.name}/channels/off-topic`);
|
||||
cy.get('#channelHeaderTitle').should('be.visible').should('contain', 'Off-Topic');
|
||||
});
|
||||
|
||||
it('Cmd/Ctrl+Shift+L closes Channel Switch modal and sets focus to post textbox', () => {
|
||||
// # Type CTRL/CMD+K
|
||||
cy.uiGetPostTextBox().cmdOrCtrlShortcut('K');
|
||||
|
||||
// * Channel switcher hint should be visible
|
||||
cy.get('#quickSwitchHint').should('be.visible').should('contain', 'Type to find a channel. Use UP/DOWN to browse, ENTER to select, ESC to dismiss.');
|
||||
|
||||
// # Type CTRL/CMD+shift+L
|
||||
cy.findByRole('textbox', {name: 'quick switch input'}).cmdOrCtrlShortcut('{shift}L');
|
||||
|
||||
// * Suggestion list should not be visible
|
||||
cy.get('#suggestionList').should('not.exist');
|
||||
|
||||
// * focus should be on the input box
|
||||
cy.uiGetPostTextBox().should('be.focused');
|
||||
});
|
||||
|
||||
it('Cmd/Ctrl+Shift+M closes Channel Switch modal and sets focus to mentions', () => {
|
||||
// # patch user info
|
||||
cy.apiPatchMe({notify_props: {first_name: 'false', mention_keys: testUser.username}});
|
||||
|
||||
// # Type CTRL/CMD+K
|
||||
cy.uiGetPostTextBox().cmdOrCtrlShortcut('K');
|
||||
|
||||
// * Channel switcher hint should be visible
|
||||
cy.get('#quickSwitchHint').should('be.visible').should('contain', 'Type to find a channel. Use UP/DOWN to browse, ENTER to select, ESC to dismiss.');
|
||||
|
||||
// # Type CTRL/CMD+shift+m
|
||||
cy.findByRole('textbox', {name: 'quick switch input'}).cmdOrCtrlShortcut('{shift}M');
|
||||
|
||||
// * Suggestion list should not be visible
|
||||
cy.get('#suggestionList').should('not.exist');
|
||||
|
||||
cy.get('.sidebar--right__title').should('contain', 'Recent Mentions');
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,68 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
// ***************************************************************
|
||||
// - [#] indicates a test step (e.g. # Go to a page)
|
||||
// - [*] indicates an assertion (e.g. * Check the title)
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @account_setting @not_cloud
|
||||
|
||||
import * as TIMEOUTS from '../../../../fixtures/timeouts';
|
||||
|
||||
describe('Settings > Sidebar > Channel Switcher', () => {
|
||||
let testChannel;
|
||||
let testTeam;
|
||||
|
||||
before(() => {
|
||||
cy.shouldNotRunOnCloudEdition();
|
||||
|
||||
cy.apiInitSetup({loginAfter: true}).then(({team, channel}) => {
|
||||
testChannel = channel;
|
||||
testTeam = team;
|
||||
|
||||
// # Create more test channels
|
||||
const numberOfChannels = 14;
|
||||
Cypress._.forEach(Array(numberOfChannels), (_, index) => {
|
||||
cy.apiCreateChannel(testTeam.id, 'channel-switcher', `Channel Switcher ${index.toString()}`);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
// # Visit off-topic
|
||||
cy.visit(`/${testTeam.name}/channels/off-topic`);
|
||||
cy.get('#channelHeaderTitle').should('be.visible').should('contain', 'Off-Topic');
|
||||
});
|
||||
|
||||
it('MM-T266 Using CTRL/CMD+K to show Channel Switcher', () => {
|
||||
// # Type CTRL/CMD+K
|
||||
cy.typeCmdOrCtrl().type('K', {release: true});
|
||||
|
||||
verifyChannelSwitch(testTeam, testChannel);
|
||||
});
|
||||
});
|
||||
|
||||
function verifyChannelSwitch(team, channel) {
|
||||
// * Channel switcher hint should be visible
|
||||
cy.get('#quickSwitchHint').should('be.visible').should('contain', 'Type to find a channel. Use UP/DOWN to browse, ENTER to select, ESC to dismiss.');
|
||||
|
||||
// # Type channel display name on Channel switcher input
|
||||
cy.findByRole('textbox', {name: 'quick switch input'}).type(channel.display_name);
|
||||
cy.wait(TIMEOUTS.HALF_SEC);
|
||||
|
||||
// * Suggestion list should be visible
|
||||
cy.get('#suggestionList').should('be.visible');
|
||||
|
||||
// # Press enter
|
||||
cy.findByRole('textbox', {name: 'quick switch input'}).type('{enter}');
|
||||
|
||||
// * Verify that it redirected into "channel-switcher" as selected channel
|
||||
cy.url().should('include', `/${team.name}/channels/${channel.name}`);
|
||||
cy.get('#channelHeaderTitle').should('be.visible').should('contain', channel.display_name);
|
||||
|
||||
// * Channel name should be visible in LHS
|
||||
cy.get(`#sidebarItem_${channel.name}`).scrollIntoView().should('be.visible');
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
// ***************************************************************
|
||||
// - [#] indicates a test step (e.g. # Go to a page)
|
||||
// - [*] indicates an assertion (e.g. * Check the title)
|
||||
// - Use element ID when selecting an element. Create one if none.
|
||||
// ***************************************************************
|
||||
|
||||
// Stage: @prod
|
||||
// Group: @channels @account_setting
|
||||
|
||||
import {getRandomId} from '../../../../utils';
|
||||
|
||||
describe('Settings > Sidebar > General', () => {
|
||||
const randomId = getRandomId();
|
||||
const newFirstName = `정트리나${randomId}/trina.jung/집단사무국(CO)`;
|
||||
|
||||
let testUser;
|
||||
let otherUser;
|
||||
let offTopicUrl;
|
||||
|
||||
before(() => {
|
||||
cy.apiInitSetup().then(({team, user, offTopicUrl: url}) => {
|
||||
testUser = user;
|
||||
offTopicUrl = url;
|
||||
|
||||
cy.apiCreateUser().then(({user: user1}) => {
|
||||
otherUser = user1;
|
||||
cy.apiAddUserToTeam(team.id, otherUser.id);
|
||||
});
|
||||
|
||||
// # Login as test user, visit off-topic and go to the Profile
|
||||
cy.apiLogin(testUser);
|
||||
cy.visit(offTopicUrl);
|
||||
cy.uiOpenProfileModal();
|
||||
|
||||
// # Open Full Name section
|
||||
cy.get('#nameDesc').click();
|
||||
|
||||
// # Set first name value
|
||||
cy.get('#firstName').clear().type(newFirstName);
|
||||
|
||||
// # Save form
|
||||
cy.uiSave();
|
||||
});
|
||||
});
|
||||
|
||||
it('MM-T183 Filtering by first name with Korean characters', () => {
|
||||
const {username} = testUser;
|
||||
|
||||
cy.apiLogin(otherUser);
|
||||
cy.visit(offTopicUrl);
|
||||
|
||||
// # Type in user's first name substring
|
||||
cy.uiGetPostTextBox().clear().type(`@${newFirstName.substring(0, 11)}`);
|
||||
|
||||
// * Verify that the testUser is selected from mention autocomplete
|
||||
cy.uiVerifyAtMentionInSuggestionList({...testUser, first_name: newFirstName}, true);
|
||||
|
||||
// # Press tab on text input
|
||||
cy.uiGetPostTextBox().tab();
|
||||
|
||||
// * Verify that after enter user's username match
|
||||
cy.uiGetPostTextBox().should('have.value', `@${username} `);
|
||||
|
||||
// # Click enter in post textbox
|
||||
cy.uiGetPostTextBox().type('{enter}');
|
||||
|
||||
// * Verify that message has been post in chat
|
||||
cy.get(`[data-mention="${username}"]`).
|
||||
last().
|
||||
scrollIntoView().
|
||||
should('be.visible');
|
||||
});
|
||||
});
|
||||
Ссылка в новой задаче
Block a user