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

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

@@ -0,0 +1,59 @@
// 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 @menu
describe('Main menu', () => {
let testTeam;
let testUser;
before(() => {
cy.apiInitSetup().then(({team, user}) => {
testTeam = team;
testUser = user;
});
});
it('MM-T711_1 - Click on menu item should toggle the menu', () => {
cy.apiLogin(testUser);
cy.visit(`/${testTeam.name}/channels/town-square`);
cy.uiOpenProfileModal();
cy.findByRole('set status').should('not.exist');
});
it('MM-T711_2 - Click on menu divider shouldn\'t toggle the menu', () => {
cy.apiLogin(testUser);
cy.visit(`/${testTeam.name}/channels/town-square`);
cy.uiOpenUserMenu();
cy.findByRole('menu').should('exist').find('.menu-divider:visible').last().click();
cy.findByRole('menu').should('exist');
});
it('should show integrations option for system administrator', () => {
cy.apiAdminLogin();
cy.visit(`/${testTeam.name}/channels/town-square`);
cy.uiOpenProductMenu();
cy.findByRole('menu').findByText('Integrations').should('be.visible');
});
it('should not show integrations option for team member without permissions', () => {
cy.apiLogin(testUser);
cy.visit(`/${testTeam.name}/channels/town-square`);
cy.uiOpenProductMenu();
cy.findByRole('menu').findByText('Integrations').should('not.exist');
});
});

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

@@ -0,0 +1,124 @@
// 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 @menu @custom_status @status_menu
import * as TIMEOUTS from '../../../fixtures/timeouts';
import theme from '../../../fixtures/theme.json';
describe('Status dropdown menu', () => {
const statusTestCases = [
{text: 'Online', className: 'icon-check', profileClassName: 'icon-check-circle'},
{text: 'Away', className: 'icon-clock'},
{text: 'Do Not Disturb', className: 'icon-minus-circle'},
{text: 'Offline', className: 'icon-circle-outline'},
];
before(() => {
// # Login as test user and visit off-topic
cy.apiInitSetup({loginAfter: true}).then(({offTopicUrl}) => {
cy.visit(offTopicUrl);
cy.postMessage('hello');
});
});
beforeEach(() => {
// # Click anywhere to close open menu
cy.get('body').click();
});
it('MM-T2927_1 Should show all available statuses with their icons', () => {
// # Open user menu
cy.uiOpenUserMenu().as('userMenu');
// * Verify all available statuses are shown with icon and text
statusTestCases.forEach((tc) => {
cy.get('@userMenu').findByText(tc.text).
parent().
find('i').should('have.class', tc.className);
});
});
it('MM-T2927_2 Should select each status, and have the user\'s active status change', () => {
// * Verify that all statuses get set correctly
stepThroughStatuses(statusTestCases);
});
it('MM-T2927_3 Icons are visible in dark mode', () => {
// #Change to dark mode
cy.apiSaveThemePreference(JSON.stringify(theme.dark));
// * Verify that all statuses get set correctly
stepThroughStatuses(statusTestCases);
// # Reset the theme to default
cy.apiSaveThemePreference(JSON.stringify(theme.default));
});
it('MM-T2927_4 "Set a Custom Header Status" is clickable', () => {
// # Open user menu
cy.uiOpenUserMenu().as('userMenu');
// * Verify "Set a Custom Status" header is clickable
cy.get('@userMenu').findByText('Set a Custom Status').should('have.css', 'cursor', 'pointer');
});
it('MM-T2927_5 When custom status is disabled, status menu is displayed when status icon is clicked', () => {
cy.apiAdminLogin();
cy.visit('/');
// # Disable custom statuses
cy.apiUpdateConfig({TeamSettings: {EnableCustomUserStatuses: false}});
// # Open user menu to verify it still open up and visible
cy.uiOpenUserMenu();
});
it('MM-T4420 Should stay open when dnd sub-menu header is clicked', () => {
// # Open Dnd sub menu and click on header
cy.uiOpenDndStatusSubMenu().find('#dndSubMenu-header_menuitem').click().then(() => {
cy.wait(TIMEOUTS.HALF_SEC);
// * Verify that dnd submenu is still visible
cy.get('body').find('#dndSubMenu-header_menuitem').should('be.visible');
});
});
it('MM-T4914 Profile menu header is clickable, opens Profile settings', () => {
// # Open user menu
cy.uiOpenUserMenu().as('userMenu');
// * Verify menu header is clickable
cy.get('@userMenu').get('.MenuHeader').should('have.css', 'cursor', 'pointer').click();
// * Verify click on header opens Profile settings modal
cy.findByRole('dialog', {name: 'Profile'}).should('be.visible');
});
});
function stepThroughStatuses(statusTestCases = []) {
// # Wait for posts to load
cy.get('#postListContent').should('be.visible');
// * Verify the user's status icon changes correctly every time
statusTestCases.forEach((tc) => {
// # Open user menu and click option
if (tc.text === 'Do Not Disturb') {
cy.uiOpenDndStatusSubMenu().find('#dndTime-thirty_minutes_menuitem').click();
} else {
cy.uiOpenUserMenu(tc.text);
}
// # Verify correct status icon is shown on user's profile picture
cy.uiGetProfileHeader().
find('i').
and('have.class', tc.profileClassName || tc.className);
});
}