mattermost-mobile/app/screens/settings/report_problem/index.test.tsx
Daniel Espino García 5c2153f83b
Add Report a Problem functionality (#8605)
* Add Report a Problem functionality

* update cache pinned SHA version from 4.0.2 to 4.2.0

* Address feedback

* Fix tests

* Fix some issues and update kotlin coroutines version

* Fix delete file for iOS

* Bump 1 more version for coroutines

* Use rxjava instead of kotlin coroutines to avoid security issue

* Move path prefix to avoid test error

* Address feedback

* Address feedback

* Address feedback

* Use mailto on iOS

* Fix tests related to button changes

* Address feedback

* Update icon and fix onboarding buttons

* Fix test

---------

Co-authored-by: Angelos Kyratzakos <angelos.kyratzakos@mattermost.com>
Co-authored-by: Mattermost Build <build@mattermost.com>
2025-04-24 11:12:55 +02:00

157 lines
6.3 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {Database} from '@nozbe/watermelondb';
import React, {type ComponentProps} from 'react';
import {View, Text} from 'react-native';
import {SYSTEM_IDENTIFIERS} from '@constants/database';
import DatabaseManager from '@database/manager';
import {renderWithEverything} from '@test/intl-test-helper';
import ReportProblem from './report_problem';
import enhanced from './index';
import type {ReportAProblemMetadata} from '@typings/screens/report_a_problem';
jest.mock('./report_problem', () => ({
__esModule: true,
default: jest.fn(),
}));
jest.mocked(ReportProblem).mockImplementation((props) => {
return (
<View>
{Object.keys(props).map((key) => {
if (key === 'metadata') {
return Object.keys(props[key]).map((metadataKey) => (
<Text
key={metadataKey}
testID={metadataKey}
>{`${props.metadata[metadataKey as keyof ReportAProblemMetadata]}`}</Text>
));
}
return (
<Text
key={key}
testID={key}
>{`${props[key as keyof ComponentProps<typeof ReportProblem>]}`}</Text>
);
})}
</View>
);
});
describe('screens/settings/report_problem/index', () => {
const serverUrl = 'baseHandler.test.com';
let database: Database;
beforeEach(async () => {
await DatabaseManager.init([serverUrl]);
const serverDatabaseAndOperator = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
database = serverDatabaseAndOperator.database;
});
afterEach(async () => {
await DatabaseManager.destroyServerDatabase(serverUrl);
});
it('should handle default values', async () => {
const Component = enhanced;
const {getByTestId} = renderWithEverything(
<Component/>,
{database},
);
expect(getByTestId('currentUserId')).toHaveTextContent('');
expect(getByTestId('currentTeamId')).toHaveTextContent('');
expect(getByTestId('serverVersion')).toHaveTextContent('Unknown (Build Unknown)');
expect(getByTestId('appVersion')).toHaveTextContent('0.0.0 (Build 0)');
expect(getByTestId('appPlatform')).toHaveTextContent('ios');
expect(getByTestId('reportAProblemType')).toHaveTextContent('undefined');
expect(getByTestId('reportAProblemMail')).toHaveTextContent('undefined');
expect(getByTestId('siteName')).toHaveTextContent('undefined');
expect(getByTestId('allowDownloadLogs')).toHaveTextContent('true');
});
it('should enhance ReportProblem with correct observables', async () => {
const {operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
await operator.handleConfigs({
configs: [
{id: 'ReportAProblemType', value: 'email'},
{id: 'ReportAProblemMail', value: 'test@example.com'},
{id: 'SiteName', value: 'Test Site'},
{id: 'AllowDownloadLogs', value: 'true'},
{id: 'Version', value: '7.8.0'},
{id: 'BuildNumber', value: '123'},
],
prepareRecordsOnly: false,
configsToDelete: [],
});
await operator.handleSystem({
systems: [
{id: SYSTEM_IDENTIFIERS.CURRENT_USER_ID, value: 'user1'},
{id: SYSTEM_IDENTIFIERS.CURRENT_TEAM_ID, value: 'team1'},
],
prepareRecordsOnly: false,
});
const Component = enhanced;
const {getByTestId} = renderWithEverything(
<Component/>,
{database},
);
expect(getByTestId('currentUserId')).toHaveTextContent('user1');
expect(getByTestId('currentTeamId')).toHaveTextContent('team1');
expect(getByTestId('serverVersion')).toHaveTextContent('7.8.0 (Build 123)');
expect(getByTestId('appVersion')).toHaveTextContent('0.0.0 (Build 0)');
expect(getByTestId('appPlatform')).toHaveTextContent('ios');
expect(getByTestId('reportAProblemType')).toHaveTextContent('email');
expect(getByTestId('reportAProblemMail')).toHaveTextContent('test@example.com');
expect(getByTestId('siteName')).toHaveTextContent('Test Site');
expect(getByTestId('allowDownloadLogs')).toHaveTextContent('true');
});
it('different data should show different values', async () => {
const {operator} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
await operator.handleConfigs({
configs: [
{id: 'ReportAProblemType', value: 'link'},
{id: 'ReportAProblemMail', value: 'test2@example.com'},
{id: 'SiteName', value: 'Test Site2'},
{id: 'AllowDownloadLogs', value: 'false'},
{id: 'Version', value: '7.8.1'},
{id: 'BuildNumber', value: '124'},
],
prepareRecordsOnly: false,
configsToDelete: [],
});
await operator.handleSystem({
systems: [
{id: SYSTEM_IDENTIFIERS.CURRENT_USER_ID, value: 'user2'},
{id: SYSTEM_IDENTIFIERS.CURRENT_TEAM_ID, value: 'team2'},
],
prepareRecordsOnly: false,
});
const Component = enhanced;
const {getByTestId} = renderWithEverything(
<Component/>,
{database},
);
expect(getByTestId('currentUserId')).toHaveTextContent('user2');
expect(getByTestId('currentTeamId')).toHaveTextContent('team2');
expect(getByTestId('serverVersion')).toHaveTextContent('7.8.1 (Build 124)');
expect(getByTestId('appVersion')).toHaveTextContent('0.0.0 (Build 0)');
expect(getByTestId('appPlatform')).toHaveTextContent('ios');
expect(getByTestId('reportAProblemType')).toHaveTextContent('link');
expect(getByTestId('reportAProblemMail')).toHaveTextContent('test2@example.com');
expect(getByTestId('siteName')).toHaveTextContent('Test Site2');
expect(getByTestId('allowDownloadLogs')).toHaveTextContent('false');
});
});