-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jest-snapshot: Ignore indentation for most serialized objects #9203
Merged
pedrottimark
merged 4 commits into
jestjs:master
from
pedrottimark:snapshot-indentation
Nov 19, 2019
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
268 changes: 268 additions & 0 deletions
268
packages/jest-snapshot/src/__tests__/dedentLines.test.ts
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,268 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import format = require('pretty-format'); | ||
import {dedentLines} from '../dedentLines'; | ||
|
||
const $$typeof = Symbol.for('react.test.json'); | ||
const plugins = [format.plugins.ReactTestComponent]; | ||
|
||
const formatLines2 = val => format(val, {indent: 2, plugins}).split('\n'); | ||
const formatLines0 = val => format(val, {indent: 0, plugins}).split('\n'); | ||
|
||
describe('dedentLines non-null', () => { | ||
test('no lines', () => { | ||
const indented = []; | ||
const dedented = indented; | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('one line empty string', () => { | ||
const indented = ['']; | ||
const dedented = indented; | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('one line empty object', () => { | ||
const val = {}; | ||
const indented = formatLines2(val); | ||
const dedented = formatLines0(val); | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('one line self-closing element', () => { | ||
const val = { | ||
$$typeof, | ||
children: null, | ||
type: 'br', | ||
}; | ||
const indented = formatLines2(val); | ||
const dedented = formatLines0(val); | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('object value empty string', () => { | ||
const val = { | ||
key: '', | ||
}; | ||
const indented = formatLines2(val); | ||
const dedented = formatLines0(val); | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('object value string includes double-quote marks', () => { | ||
const val = { | ||
key: '"Always bet on JavaScript",', | ||
}; | ||
const indented = formatLines2(val); | ||
const dedented = formatLines0(val); | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('markup with props and text', () => { | ||
const val = { | ||
$$typeof, | ||
children: [ | ||
{ | ||
$$typeof, | ||
props: { | ||
alt: 'Jest logo', | ||
src: 'jest.svg', | ||
}, | ||
type: 'img', | ||
}, | ||
{ | ||
$$typeof, | ||
children: ['Delightful JavaScript testing'], | ||
type: 'h2', | ||
}, | ||
], | ||
type: 'header', | ||
}; | ||
const indented = formatLines2(val); | ||
const dedented = formatLines0(val); | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
|
||
test('markup with components as props', () => { | ||
// https://daveceddia.com/pluggable-slots-in-react-components/ | ||
const val = { | ||
$$typeof, | ||
children: null, | ||
props: { | ||
content: { | ||
$$typeof, | ||
children: ['main content here'], | ||
type: 'Content', | ||
}, | ||
sidebar: { | ||
$$typeof, | ||
children: null, | ||
props: { | ||
user: '0123456789abcdef', | ||
}, | ||
type: 'UserStats', | ||
}, | ||
}, | ||
type: 'Body', | ||
}; | ||
const indented = formatLines2(val); | ||
const dedented = formatLines0(val); | ||
|
||
expect(dedentLines(indented)).toEqual(dedented); | ||
}); | ||
}); | ||
|
||
describe('dedentLines null', () => { | ||
test('object key multi-line', () => { | ||
const val = { | ||
'multi\nline\nstring': false, | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('object value multi-line', () => { | ||
const val = { | ||
key: 'multi\nline\nstring', | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('object key and value multi-line', () => { | ||
const val = { | ||
'multi\nline\nstring': '\nleading newline', | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('markup prop multi-line', () => { | ||
const val = { | ||
$$typeof, | ||
children: null, | ||
props: { | ||
alt: 'trailing newline\n', | ||
src: 'jest.svg', | ||
}, | ||
type: 'img', | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('markup prop component with multi-line text', () => { | ||
// https://daveceddia.com/pluggable-slots-in-react-components/ | ||
const val = { | ||
$$typeof, | ||
children: [ | ||
{ | ||
$$typeof, | ||
children: null, | ||
props: { | ||
content: { | ||
$$typeof, | ||
children: ['\n'], | ||
type: 'Content', | ||
}, | ||
sidebar: { | ||
$$typeof, | ||
children: null, | ||
props: { | ||
user: '0123456789abcdef', | ||
}, | ||
type: 'UserStats', | ||
}, | ||
}, | ||
type: 'Body', | ||
}, | ||
], | ||
type: 'main', | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('markup text multi-line', () => { | ||
const text = [ | ||
'for (key in foo) {', | ||
' if (Object.prototype.hasOwnProperty.call(foo, key)) {', | ||
' doSomething(key);', | ||
' }', | ||
'}', | ||
].join('\n'); | ||
const val = { | ||
$$typeof, | ||
children: [ | ||
{ | ||
$$typeof, | ||
children: [text], | ||
props: { | ||
className: 'language-js', | ||
}, | ||
type: 'pre', | ||
}, | ||
], | ||
type: 'div', | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('markup text multiple lines', () => { | ||
const lines = [ | ||
'for (key in foo) {', | ||
' if (Object.prototype.hasOwnProperty.call(foo, key)) {', | ||
' doSomething(key);', | ||
' }', | ||
'}', | ||
]; | ||
const val = { | ||
$$typeof, | ||
children: [ | ||
{ | ||
$$typeof, | ||
children: lines, | ||
props: { | ||
className: 'language-js', | ||
}, | ||
type: 'pre', | ||
}, | ||
], | ||
type: 'div', | ||
}; | ||
const indented = formatLines2(val); | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('markup unclosed self-closing start tag', () => { | ||
const indented = ['<img', ' alt="Jest logo"', ' src="jest.svg"']; | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
|
||
test('markup unclosed because no end tag', () => { | ||
const indented = ['<p>', ' Delightful JavaScript testing']; | ||
|
||
expect(dedentLines(indented)).toEqual(null); | ||
}); | ||
}); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's quite a bunch of repetition in these tests. It's quite readable and I don't say it's bad. However, have you considered using
test.each
where it makes sense (e.g. for smaller inputs)?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yeah, super suggestion!