Этот коммит содержится в:
Mario Vitale
2023-03-27 16:28:42 +02:00
родитель da7a6825ce
Коммит ba6b97fb62
1142 изменённых файлов: 44 добавлений и 44 удалений

Просмотреть файл

@@ -0,0 +1,173 @@
// 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 @autocomplete
import {
createPrivateChannel,
searchForChannel,
} from '../enterprise/elasticsearch_autocomplete/helpers';
import {getAdminAccount} from '../../../support/env';
describe('Autocomplete without Elasticsearch - Channel', () => {
const admin = getAdminAccount();
let testTeam;
let testUser;
let offTopicUrl;
before(() => {
cy.apiGetClientLicense().then(({isCloudLicensed}) => {
if (!isCloudLicensed) {
cy.shouldHaveElasticsearchDisabled();
}
});
// # Login as test user and go to off-topic
cy.apiInitSetup({loginAfter: true}).then((out) => {
testUser = out.user;
testTeam = out.team;
offTopicUrl = out.offTopicUrl;
cy.visit(offTopicUrl);
});
});
afterEach(() => {
cy.reload();
});
it("private channel I don't belong to does not appear", () => {
// # Create private channel, do not add new user to it (sets @privateChannel alias)
createPrivateChannel(testTeam.id).then((channel) => {
// # Go to off-topic channel to partially reload the page
cy.uiGetLhsSection('CHANNELS').findAllByText('Off-Topic').click();
// # Search for the private channel
searchForChannel(channel.name);
// * And it should not appear
cy.findByTestId(channel.name).
should('not.exist');
});
});
it('private channel I do belong to appears', () => {
// # Go to off-topic channel to partially reload the page
cy.uiGetLhsSection('CHANNELS').findAllByText('Off-Topic').click();
// # Create private channel and add new user to it (sets @privateChannel alias)
createPrivateChannel(testTeam.id, testUser).then((channel) => {
// # Search for the private channel
searchForChannel(channel.name);
// * Suggestion list should appear
cy.get('#suggestionList').should('be.visible');
// * Channel should appear in the list
cy.findByTestId(channel.name).
should('be.visible');
});
});
it('channel outside of team does not appear', () => {
const teamName = 'elastic-private-' + Date.now();
const baseUrl = Cypress.config('baseUrl');
// # As admin, create a new team that the new user is not a member of
cy.task('externalRequest', {
user: admin,
path: 'teams',
baseUrl,
method: 'post',
data: {
name: teamName,
display_name: teamName,
type: 'O',
},
}).then((teamResponse) => {
expect(teamResponse.status).to.equal(201);
// # Create a private channel where the new user is not a member of
createPrivateChannel(teamResponse.data.id).then((channel) => {
// # Go to off-topic channel to partially reload the page
cy.uiGetLhsSection('CHANNELS').findAllByText('Off-Topic').click();
// # Search for the private channel
searchForChannel(channel.name);
// * Channel should not appear in the search results
cy.findByTestId(channel.name).
should('not.exist');
});
});
});
describe('channel with', () => {
let channelId;
before(() => {
// // # Visit off-topic
cy.visit(offTopicUrl);
const name = 'hellothere';
// # Create a new channel
cy.apiCreateChannel(testTeam.id, name, name).then(({channel}) => {
channelId = channel.id;
});
// * Verify channel without special characters appears normally
searchForChannel(name);
cy.reload();
});
it('dots appears', () => {
const name = 'hello.there';
// Change name of channel
cy.apiPatchChannel(channelId, {display_name: name});
// * Search for channel should work
searchForChannel(name);
});
it('dashes appears', () => {
const name = 'hello-there';
// Change name of channel
cy.apiPatchChannel(channelId, {display_name: name});
// * Search for channel should work
searchForChannel(name);
});
it('underscores appears', () => {
const name = 'hello_there';
// Change name of channel
cy.apiPatchChannel(channelId, {display_name: name});
// * Search for channel should work
searchForChannel(name);
});
it('dots, dashes, and underscores appears', () => {
const name = 'he.llo-the_re';
// Change name of channel
cy.apiPatchChannel(channelId, {display_name: name});
// * Search for channel should work
searchForChannel(name);
});
});
});

Просмотреть файл

@@ -0,0 +1,173 @@
// 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 @autocomplete
import * as TIMEOUTS from '../../../fixtures/timeouts';
import {withTimestamp, createEmail} from '../enterprise/elasticsearch_autocomplete/helpers';
describe('Autocomplete without Elasticsearch - Renaming', () => {
const timestamp = Date.now();
let testTeam;
before(() => {
cy.apiGetClientLicense().then(({isCloudLicensed}) => {
if (!isCloudLicensed) {
cy.shouldHaveElasticsearchDisabled();
}
});
// # Create new team for tests
cy.apiCreateTeam(`search-${timestamp}`, `search-${timestamp}`).then(({team}) => {
testTeam = team;
});
});
it('renamed user appears in message input box', () => {
const spiderman = {
username: withTimestamp('spiderman', timestamp),
password: 'passwd',
first_name: 'Peter',
last_name: 'Parker',
email: createEmail('spiderman', timestamp),
nickname: withTimestamp('friendlyneighborhood', timestamp),
};
// # Create a new user
cy.apiCreateUser({user: spiderman}).then(({user}) => {
cy.apiAddUserToTeam(testTeam.id, user.id).then(() => {
cy.visit(`/${testTeam.name}/channels/off-topic`);
// # Verify user appears in search results pre-change
searchAndVerifyUser(user);
// # Rename a user
const newName = withTimestamp('webslinger', timestamp);
cy.apiPatchUser(user.id, {username: newName}).then(() => {
user.username = newName;
// # Verify user appears in search results post-change
searchAndVerifyUser(user);
});
});
});
});
it('renamed channel appears in channel switcher', () => {
const channelName = 'newchannel' + Date.now();
const newChannelName = 'updatedchannel' + Date.now();
// # Create a new channel
cy.apiCreateChannel(testTeam.id, channelName, channelName).then(({channel}) => {
// # Channel should appear in search results pre-change
searchAndVerifyChannel(channel);
// # Change the channels name
cy.apiPatchChannel(channel.id, {name: newChannelName});
channel.name = newChannelName;
cy.reload();
// # Search for channel and verify it appears
searchAndVerifyChannel(channel);
});
});
describe('renamed team', () => {
let testUser;
let testChannel;
before(() => {
const punisher = {
username: withTimestamp('punisher', timestamp),
password: 'passwd',
first_name: 'Frank',
last_name: 'Castle',
email: createEmail('punisher', timestamp),
nickname: withTimestamp('lockednloaded', timestamp),
};
// # Setup new channel and user
cy.apiCreateUser({user: punisher}).then(({user}) => {
testUser = user;
cy.apiAddUserToTeam(testTeam.id, testUser.id).then(() => {
cy.visit(`/${testTeam.name}/channels/off-topic`);
// # Hit escape to close and lingering modals
cy.get('body').type('{esc}');
// # Verify user appears in search results pre-change
searchAndVerifyUser(user);
});
});
const channelName = 'another-channel' + Date.now();
// # Create a new channel
cy.apiCreateChannel(testTeam.id, channelName, channelName).then(({channel}) => {
testChannel = channel;
// # Channel should appear in search results pre-change
searchAndVerifyChannel(testChannel);
// # Hit escape to close the modal
cy.get('body').type('{esc}');
});
// # Rename the team
cy.apiPatchTeam(testTeam.id, {display_name: 'updatedteam' + timestamp});
});
it('correctly searches for user', () => {
cy.get('body').type('{esc}');
searchAndVerifyUser(testUser);
});
it('correctly searches for channel', () => {
cy.get('body').type('{esc}');
searchAndVerifyChannel(testChannel);
});
});
});
function searchAndVerifyChannel(channel) {
// # Type cmd-K to open channel switcher
cy.typeCmdOrCtrl().type('k');
// # Search for channel's display name
cy.findByRole('textbox', {name: 'quick switch input'}).
should('be.visible').
as('input').
clear().
type(channel.display_name);
// * Suggestions should appear
cy.get('#suggestionList', {timeout: TIMEOUTS.FIVE_SEC}).should('be.visible');
// * Channel should appear
cy.findByTestId(channel.name).
should('be.visible');
}
function searchAndVerifyUser(user) {
// # Start @ mentions autocomplete with username
cy.uiGetPostTextBox().
as('input').
clear().
type(`@${user.username}`);
// * Suggestion list should appear
cy.get('#suggestionList', {timeout: TIMEOUTS.FIVE_SEC}).should('be.visible');
// * Verify user appears in results post-change
return cy.uiVerifyAtMentionSuggestion(user);
}

Просмотреть файл

@@ -0,0 +1,58 @@
// 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 @autocomplete @search
describe('Autocomplete in the search box - scrolling', () => {
const usersCount = 15;
const timestamp = Date.now();
before(() => {
// # Create new team for tests
cy.apiCreateTeam(`search-${timestamp}`, `search-${timestamp}`).then(({team}) => {
// # Create pool of users for tests
for (let i = 0; i < usersCount; i++) {
cy.apiCreateUser().then(({user}) => {
cy.apiAddUserToTeam(team.id, user.id);
});
}
cy.visit(`/${team.name}/channels/off-topic`);
// # Post a new message to ensure page fully rendered before acting into the searchBox
cy.postMessage('hello');
});
});
it('MM-T4084 correctly scrolls when the user navigates through options with the keyboard', () => {
// # Type into the searchBox to show list of users
cy.get('#searchBox').type('from:');
cy.get('#search-autocomplete__popover .suggestion-list__item').first().as('firstItem');
cy.get('#search-autocomplete__popover .suggestion-list__item').last().as('lastItem');
// * Check that list is scrolled to top
cy.get('@firstItem').should('be.visible');
cy.get('@lastItem').should('not.be.visible');
// # Move to bottom of the list using keyboard
cy.get('body').type('{downarrow}'.repeat(usersCount));
// * Check that list is scrolled to bottom
cy.get('@firstItem').should('not.be.visible');
cy.get('@lastItem').should('be.visible');
// # Move to top of the list using keyboard
cy.get('body').type('{uparrow}'.repeat(usersCount));
// * Check that list is scrolled to top
cy.get('@firstItem').should('be.visible');
cy.get('@lastItem').should('not.be.visible');
});
});