-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MM-61148 Rewrite table parsing and improve error handling around Mark…
…down code (#8300) (#8352) * MM-61148 Rewrite table parsing based off cmark-gfm * MM-61148 Add better error handling to Markdown code * Use logError instead of console.error * Switch back to published release * Update import paths (cherry picked from commit 0efa409) Co-authored-by: Harrison Healey <[email protected]>
- Loading branch information
1 parent
6aa27d1
commit 4cdf36c
Showing
6 changed files
with
217 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
// 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 {Preferences} from '@constants'; | ||
import {renderWithIntl} from '@test/intl-test-helper'; | ||
|
||
import Markdown from './markdown'; | ||
import * as Transforms from './transform'; | ||
|
||
const Parser = jest.requireActual('commonmark').Parser; | ||
|
||
describe('Markdown', () => { | ||
const baseProps: React.ComponentProps<typeof Markdown> = { | ||
baseTextStyle: {}, | ||
enableInlineLatex: true, | ||
enableLatex: true, | ||
location: 'somewhere?', | ||
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(); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ | |
"@stream-io/flat-list-mvcp": "0.10.3", | ||
"@voximplant/react-native-foreground-service": "3.0.2", | ||
"base-64": "1.0.0", | ||
"commonmark": "npm:@mattermost/[email protected]3", | ||
"commonmark": "npm:@mattermost/[email protected]4", | ||
"commonmark-react-renderer": "github:mattermost/commonmark-react-renderer#81b5d27509652bae50b4b510ede777dd3bd923cf", | ||
"deep-equal": "2.2.3", | ||
"deepmerge": "4.3.1", | ||
|