mattermost-mobile/app/screens/channel/header/header.test.tsx
Daniel Espino García 23565b5135
Add autotranslations (#9324)
* Add autotranslations

* Develop latest changes and missing features

* i18n-extract

* Fix tests and update api behavior

* Fix minor bugs

* adjustments to shimmer animation, showtranslation modal style

* Update post.tsx

* Update show_translation.tsx

* adjust sizing and opacity of translate icon

* Add channel header translated icon

* Disable auto translation item if it is not a supported language

* Move channel info to the top

* Update edit channel to channel info

* Fix align of option items

* Fix i18n

* Add detox related changes for channel settings changes

* Add tests

* Address changes around the my channel column change

* Address feedback

* Fix test

* Fix bad import

* Fix set my channel autotranslation

* Fix test

* Address feedback

* Add missing files from last commit

* Remove unneeded change

---------

Co-authored-by: Matthew Birtch <mattbirtch@gmail.com>
2026-02-10 17:50:39 +01:00

233 lines
8.4 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {type ComponentProps} from 'react';
import NavigationHeader from '@components/navigation_header';
import {General} from '@constants';
import {useServerUrl} from '@context/server';
import {fetchPlaybookRunsForChannel} from '@playbooks/actions/remote/runs';
import {goToCreateQuickChecklist, goToPlaybookRun, goToPlaybookRuns} from '@playbooks/screens/navigation';
import EphemeralStore from '@store/ephemeral_store';
import {renderWithIntl, waitFor} from '@test/intl-test-helper';
import ChannelHeader from './header';
jest.mock('@components/navigation_header', () => ({
__esModule: true,
default: jest.fn(),
}));
jest.mocked(NavigationHeader).mockImplementation((props) => React.createElement('NavigationHeader', {testID: 'navigation-header', ...props}));
jest.mock('@screens/navigation');
jest.mock('@playbooks/screens/navigation');
jest.mock('@playbooks/actions/remote/runs');
jest.mock('@calls/state', () => ({
getCallsConfig: jest.fn().mockReturnValue({
pluginEnabled: false,
}),
}));
const serverUrl = 'some.server.url';
jest.mock('@context/server');
jest.mocked(useServerUrl).mockReturnValue(serverUrl);
describe('ChannelHeader', () => {
function getBaseProps(): ComponentProps<typeof ChannelHeader> {
return {
channelId: 'channel-id',
channelType: 'O',
currentUserId: 'current-user-id',
displayName: 'Test Channel',
teamId: 'team-id',
hasPlaybookRuns: false,
playbooksActiveRuns: 0,
callsEnabledInChannel: false,
groupCallsAllowed: false,
isBookmarksEnabled: false,
canAddBookmarks: false,
hasBookmarks: false,
shouldRenderBookmarks: false,
isCustomStatusEnabled: false,
isCustomStatusExpired: false,
isOwnDirectMessage: false,
shouldRenderChannelBanner: false,
isPlaybooksEnabled: true,
isChannelAutotranslated: false,
};
}
beforeEach(() => {
jest.clearAllMocks();
});
it('shows playbook button with "+" when there are no active runs', () => {
const props = getBaseProps();
props.hasPlaybookRuns = false;
props.playbooksActiveRuns = 0;
props.isPlaybooksEnabled = true;
const {getByTestId} = renderWithIntl(<ChannelHeader {...props}/>);
const navHeader = getByTestId('navigation-header');
expect(navHeader.props.rightButtons).toEqual(
expect.arrayContaining([
expect.objectContaining({
iconName: 'product-playbooks',
count: '+',
}),
]),
);
});
it('does not show playbook button when is DM or GM', () => {
const props = getBaseProps();
props.hasPlaybookRuns = true;
props.playbooksActiveRuns = 1;
props.channelType = General.DM_CHANNEL;
const {getByTestId, rerender} = renderWithIntl(<ChannelHeader {...props}/>);
const navHeader = getByTestId('navigation-header');
let rightButtons = navHeader.props.rightButtons;
expect(rightButtons).not.toEqual(expect.arrayContaining(
[
expect.objectContaining({
iconName: 'product-playbooks',
}),
]),
);
props.channelType = General.GM_CHANNEL;
rerender(<ChannelHeader {...props}/>);
rightButtons = navHeader.props.rightButtons;
expect(rightButtons).not.toEqual(
expect.arrayContaining([
expect.objectContaining({
iconName: 'product-playbooks',
}),
]),
);
props.channelType = General.OPEN_CHANNEL;
rerender(<ChannelHeader {...props}/>);
rightButtons = navHeader.props.rightButtons;
expect(rightButtons).toEqual(
expect.arrayContaining([
expect.objectContaining({
iconName: 'product-playbooks',
}),
]),
);
});
it('shows playbook button with count when there are active runs', () => {
const props = getBaseProps();
props.playbooksActiveRuns = 3;
props.hasPlaybookRuns = true;
const {getByTestId} = renderWithIntl(<ChannelHeader {...props}/>);
const navHeader = getByTestId('navigation-header');
expect(navHeader.props.rightButtons).toEqual(
expect.arrayContaining([
expect.objectContaining({
iconName: 'product-playbooks',
count: 3,
}),
]),
);
});
it('navigates to single playbook run when there is an active playbook provided', () => {
const props = getBaseProps();
props.playbooksActiveRuns = 1;
props.hasPlaybookRuns = true;
props.activeRunId = 'run-id';
const {getByTestId} = renderWithIntl(<ChannelHeader {...props}/>);
const navHeader = getByTestId('navigation-header');
const playbookButton = (navHeader.props as ComponentProps<typeof NavigationHeader>).rightButtons?.find((button) => button.iconName === 'product-playbooks');
expect(playbookButton).toBeTruthy();
playbookButton?.onPress();
expect(goToPlaybookRun).toHaveBeenCalledWith(expect.anything(), 'run-id');
expect(goToPlaybookRuns).not.toHaveBeenCalled();
});
it('navigates to playbook runs list when there is no active playbook provided', () => {
const props = getBaseProps();
props.activeRunId = undefined;
props.playbooksActiveRuns = 3;
props.hasPlaybookRuns = true;
props.displayName = 'Test Channel';
const {getByTestId} = renderWithIntl(<ChannelHeader {...props}/>);
const navHeader = getByTestId('navigation-header');
const playbookButton = (navHeader.props as ComponentProps<typeof NavigationHeader>).rightButtons?.find((button) => button.iconName === 'product-playbooks');
expect(playbookButton).toBeTruthy();
playbookButton?.onPress();
expect(goToPlaybookRuns).toHaveBeenCalledWith(expect.anything(), 'channel-id', 'Test Channel');
expect(goToPlaybookRun).not.toHaveBeenCalled();
});
it('navigates to create quick checklist screen when clicking + button with no active runs', () => {
const props = getBaseProps();
props.playbooksActiveRuns = 0;
props.hasPlaybookRuns = false;
props.displayName = 'Test Channel';
const {getByTestId} = renderWithIntl(<ChannelHeader {...props}/>);
const navHeader = getByTestId('navigation-header');
const playbookButton = (navHeader.props as ComponentProps<typeof NavigationHeader>).rightButtons?.find((button) => button.iconName === 'product-playbooks');
expect(playbookButton).toBeTruthy();
expect(playbookButton?.count).toBe('+');
playbookButton?.onPress();
expect(goToCreateQuickChecklist).toHaveBeenCalledWith(
expect.anything(), // intl
'channel-id',
'Test Channel',
'current-user-id',
'team-id',
serverUrl,
);
expect(goToPlaybookRun).not.toHaveBeenCalled();
expect(goToPlaybookRuns).not.toHaveBeenCalled();
});
it('should not fetch runs when playbooks are disabled', async () => {
const ephemeralGetSpy = jest.spyOn(EphemeralStore, 'getChannelPlaybooksSynced');
const props = getBaseProps();
props.isPlaybooksEnabled = false;
ephemeralGetSpy.mockReturnValue(false);
renderWithIntl(<ChannelHeader {...props}/>);
await waitFor(() => {
expect(ephemeralGetSpy).not.toHaveBeenCalled();
expect(fetchPlaybookRunsForChannel).not.toHaveBeenCalled();
});
});
it('should not fetch runs when we already have the runs synced', async () => {
const ephemeralGetSpy = jest.spyOn(EphemeralStore, 'getChannelPlaybooksSynced');
const props = getBaseProps();
props.isPlaybooksEnabled = true;
ephemeralGetSpy.mockReturnValue(true);
renderWithIntl(<ChannelHeader {...props}/>);
await waitFor(() => {
expect(ephemeralGetSpy).toHaveBeenCalledWith(serverUrl, 'channel-id');
expect(fetchPlaybookRunsForChannel).not.toHaveBeenCalled();
});
});
});