mattermost-mobile/app/components/markdown/markdown.test.tsx

254 lines
8.6 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import {screen} from '@testing-library/react-native';
import * as CommonMark from 'commonmark';
const {Node} = CommonMark;
import React from 'react';
import {StyleSheet} from 'react-native';
import {Preferences} from '@constants';
import {renderWithIntl} from '@test/intl-test-helper';
import {getMarkdownTextStyles} from '@utils/markdown';
import {typography} from '@utils/typography';
import Markdown, {testExports} from './markdown';
import * as Transforms from './transform';
const Parser = jest.requireActual('commonmark').Parser;
jest.mock('@screens/navigation', () => ({
dismissAllModalsAndPopToRoot: jest.fn(),
}));
describe('Markdown', () => {
const baseProps: React.ComponentProps<typeof Markdown> = {
baseTextStyle: {},
enableInlineLatex: true,
enableLatex: true,
location: 'Channel',
maxNodes: 2000,
theme: Preferences.THEMES.denim,
};
describe('error handling', () => {
test('should render Markdown normally', () => {
renderWithIntl(
<Markdown
{...baseProps}
value='This is a test'
/>,
);
expect(screen.getByText('This is a test')).toBeVisible();
});
test('should catch errors when parsing Markdown', () => {
jest.spyOn(CommonMark, 'Parser').mockImplementation(() => {
const parser = new Parser();
parser.incorporateLine = () => {
throw new Error('test error');
};
return parser;
});
renderWithIntl(
<Markdown
{...baseProps}
value='This is a test'
/>,
);
expect(screen.queryByText('This is a text')).not.toBeVisible();
expect(screen.getByText('An error occurred while parsing this text')).toBeVisible();
});
test('should catch errors when parsing Markdown', () => {
jest.spyOn(CommonMark, 'Parser').mockImplementation(() => {
const parser = new Parser();
parser.incorporateLine = () => {
throw new Error('test error');
};
return parser;
});
renderWithIntl(
<Markdown
{...baseProps}
value='This is a test'
/>,
);
expect(screen.queryByText('This is a text')).not.toBeVisible();
expect(screen.getByText('An error occurred while parsing this text')).toBeVisible();
});
test('should catch errors when transforming Markdown', () => {
jest.spyOn(Transforms, 'highlightMentions').mockImplementation(() => {
throw new Error('test error');
});
renderWithIntl(
<Markdown
{...baseProps}
value='This is a test'
/>,
);
expect(screen.queryByText('This is a text')).not.toBeVisible();
expect(screen.getByText('An error occurred while parsing this text')).toBeVisible();
});
test('should catch errors when rendering Markdown', () => {
jest.spyOn(CommonMark, 'Parser').mockImplementation(() => {
const parser = new Parser();
parser.parse = () => {
// This replicates what was returned by the parser to cause MM-61148
const document = new Node('document');
const paragraph = new Node('paragraph');
(paragraph as any)._string_content = 'some text';
document.appendChild(new Node('table'));
return document;
};
return parser;
});
renderWithIntl(
<Markdown
{...baseProps}
value='This is a test'
/>,
);
expect(screen.queryByText('This is a text')).not.toBeVisible();
expect(screen.getByText('An error occurred while rendering this text')).toBeVisible();
});
test('should catch errors when with Latex', () => {
const value =
'```latex\n' +
'\\\\\\\\asdfasdfasdf\n' +
'```\n';
renderWithIntl(
<Markdown
{...baseProps}
value={value}
/>,
);
expect(screen.queryByText('This is a text')).not.toBeVisible();
expect(screen.getByText('An error occurred while rendering this text')).toBeVisible();
});
});
describe('renderHashtagWithStyles', () => {
const {renderHashtagWithStyles} = testExports;
test('should render hashtag with correct text and link styling', () => {
const baseTextStyle = {
color: '#000000',
...typography('Body', 200),
};
const textStyles = getMarkdownTextStyles(baseProps.theme);
const context: string[] = [];
renderWithIntl(
renderHashtagWithStyles(context, 'test', textStyles, baseTextStyle),
);
const hashtagElement = screen.getByText('#test');
expect(hashtagElement).toBeVisible();
const flattenedStyle = StyleSheet.flatten(hashtagElement.props.style);
expect(flattenedStyle).toMatchObject({
fontSize: 16,
color: baseProps.theme.linkColor,
});
});
test('should render hashtag in heading with correct heading font size', () => {
const baseTextStyle = {
color: '#000000',
...typography('Body', 200),
};
const textStyles = getMarkdownTextStyles(baseProps.theme);
const context: string[] = ['heading1'];
renderWithIntl(
renderHashtagWithStyles(context, 'hashtag', textStyles, baseTextStyle),
);
const hashtagElement = screen.getByText('#hashtag');
expect(hashtagElement).toBeVisible();
const flattenedStyle = StyleSheet.flatten(hashtagElement.props.style);
expect(flattenedStyle).toMatchObject({
fontSize: 28,
});
});
test('should apply heading2 styles when in heading2 context', () => {
const baseTextStyle = {
color: '#000000',
...typography('Body', 200),
};
const textStyles = getMarkdownTextStyles(baseProps.theme);
const context: string[] = ['heading2'];
renderWithIntl(
renderHashtagWithStyles(context, 'heading2tag', textStyles, baseTextStyle),
);
const hashtagElement = screen.getByText('#heading2tag');
expect(hashtagElement).toBeVisible();
const flattenedStyle = StyleSheet.flatten(hashtagElement.props.style);
expect(flattenedStyle).toMatchObject({
fontSize: 25,
});
});
test('should have clickable onPress handler', () => {
const baseTextStyle = {
color: '#000000',
...typography('Body', 200),
};
const textStyles = getMarkdownTextStyles(baseProps.theme);
const context: string[] = [];
renderWithIntl(
renderHashtagWithStyles(context, 'clickable', textStyles, baseTextStyle),
);
const hashtagElement = screen.getByText('#clickable');
expect(hashtagElement.props.onPress).toBeDefined();
});
test('should include both base text style and link color', () => {
const baseTextStyle = {
color: '#000000',
...typography('Body', 200),
fontFamily: 'OpenSans',
};
const textStyles = getMarkdownTextStyles(baseProps.theme);
const context: string[] = [];
renderWithIntl(
renderHashtagWithStyles(context, 'styled', textStyles, baseTextStyle),
);
const hashtagElement = screen.getByText('#styled');
const flattenedStyle = StyleSheet.flatten(hashtagElement.props.style);
expect(flattenedStyle).toMatchObject({
fontSize: 16,
fontFamily: 'OpenSans',
color: baseProps.theme.linkColor,
});
});
});
});