mattermost-mobile/app/components/post_draft/send_button/send_button.test.tsx
Rajat Dabade 6bdcf2be49
Remaining test for draft and Scheduled post (#8887)
* Added test for draft_scheduled_post and header component

* Added test for drafts_button/index.ts

* Added test for send_button/index.ts

* Added test for servers/scheduled_post.ts queries

* Added test for global_scheduled_post_list/index.ts

* Added test for rescheduled draft index file and minor update

* Added test for core option and index

* Added test for scheduled post options

* Added test for send_draft index file

* updated test for draft_scheduled_post and draft_scheduled_post_header

* Updated test for drafts_button index

* Updated test for send_button index

* Updated test for server/scheduled_post

* Updated test for global_scheduled_post/index

* removed the unnecessary config and team data to populate in db for test

* Update app/components/draft_scheduled_post/draft_scheduled_post.test.tsx

Co-authored-by: Daniel Espino García <larkox@gmail.com>

* linter fixes

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
2025-07-01 13:47:02 +05:30

160 lines
4.8 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {act} from '@testing-library/react-hooks';
import React from 'react';
import {InteractionManager} from 'react-native';
import SendButton from '@components/post_draft/send_button/send_button';
import {fireEvent, renderWithIntl} from '@test/intl-test-helper';
describe('components/post_draft/send_button', () => {
const baseProps: Parameters<typeof SendButton>[0] = {
disabled: false,
sendMessage: jest.fn(),
testID: 'test_id',
showScheduledPostOptions: jest.fn(),
scheduledPostEnabled: true,
scheduledPostFeatureTooltipWatched: true,
};
it('should render send button when enabled', () => {
const {getByTestId} = renderWithIntl(
<SendButton {...baseProps}/>,
);
const button = getByTestId('test_id.send.button');
expect(button).toBeTruthy();
});
it('should render disabled send button when disabled', () => {
const {getByTestId} = renderWithIntl(
<SendButton
{...baseProps}
disabled={true}
/>,
);
const button = getByTestId('test_id.send.button.disabled');
expect(button).toBeTruthy();
expect(button).toBeDisabled();
});
it('should handle single tap', () => {
const onPress = jest.fn();
const {getByTestId} = renderWithIntl(
<SendButton
{...baseProps}
sendMessage={onPress}
/>,
);
const button = getByTestId('test_id.send.button');
fireEvent.press(button);
expect(onPress).toHaveBeenCalledTimes(1);
});
it('should prevent double tap within debounce period', async () => {
const onPress = jest.fn();
const {getByTestId} = renderWithIntl(
<SendButton
{...baseProps}
sendMessage={onPress}
/>,
);
const button = getByTestId('test_id.send.button');
// First tap
fireEvent.press(button);
// Second tap immediately after
fireEvent.press(button);
// Should only call once despite two taps
expect(onPress).toHaveBeenCalledTimes(1);
});
it('should allow tap after debounce period', async () => {
jest.useFakeTimers();
const onPress = jest.fn();
const {getByTestId} = renderWithIntl(
<SendButton
{...baseProps}
sendMessage={onPress}
/>,
);
const button = getByTestId('test_id.send.button');
// First tap
act(() => {
fireEvent.press(button);
});
expect(onPress).toHaveBeenCalledTimes(1);
act(() => {
jest.advanceTimersByTime(750);
fireEvent.press(button);
});
expect(onPress).toHaveBeenCalledTimes(2);
jest.useRealTimers();
});
it('should not call onPress when disabled', () => {
const onPress = jest.fn();
const {getByTestId} = renderWithIntl(
<SendButton
{...baseProps}
disabled={true}
sendMessage={onPress}
/>,
);
const button = getByTestId('test_id.send.button.disabled');
fireEvent.press(button);
expect(onPress).not.toHaveBeenCalled();
});
it('should show the tooltip after when the tutorial has not been watched', async () => {
const handle = InteractionManager.createInteractionHandle();
const props = {...baseProps, scheduledPostFeatureTooltipWatched: false};
const {queryByText} = renderWithIntl(
<SendButton
{...props}
/>,
);
const text = 'Type a message and long press the send button to schedule it for a later time.';
expect(queryByText(text)).toBeNull();
InteractionManager.clearInteractionHandle(handle);
await new Promise((resolve) => setImmediate(resolve));
act(() => {
expect(queryByText(text)).toBeTruthy();
});
});
it('should not show the tooltip if the scheduled post feature is disabled', async () => {
const handle = InteractionManager.createInteractionHandle();
const props = {...baseProps, scheduledPostFeatureTooltipWatched: false, scheduledPostEnabled: false};
const {queryByText} = renderWithIntl(
<SendButton
{...props}
/>,
);
const text = 'Type a message and long press the send button to schedule it for a later time.';
InteractionManager.clearInteractionHandle(handle);
await new Promise((resolve) => setImmediate(resolve));
act(() => {
expect(queryByText(text)).toBeFalsy();
});
});
});