Skip to content
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: Improve report when the matcher has properties #9104

Merged
merged 4 commits into from Nov 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -23,6 +23,7 @@
- `[jest-matcher-utils]` Add `BigInt` support to `ensureNumbers` `ensureActualIsNumber`, `ensureExpectedIsNumber` ([#8382](https://github.com/facebook/jest/pull/8382))
- `[jest-runner]` Warn if a worker had to be force exited ([#8206](https://github.com/facebook/jest/pull/8206))
- `[jest-snapshot]` Display change counts in annotation lines ([#8982](https://github.com/facebook/jest/pull/8982))
- `[jest-snapshot]` [**BREAKING**] Improve report when the matcher has properties ([#9104](https://github.com/facebook/jest/pull/9104))
- `[@jest/test-result]` Create method to create empty `TestResult` ([#8867](https://github.com/facebook/jest/pull/8867))
- `[jest-worker]` [**BREAKING**] Return a promise from `end()`, resolving with the information whether workers exited gracefully ([#8206](https://github.com/facebook/jest/pull/8206))
- `[jest-reporters]` Transform file paths into hyperlinks ([#8980](https://github.com/facebook/jest/pull/8980))
Expand Down
4 changes: 2 additions & 2 deletions e2e/__tests__/toMatchSnapshot.test.ts
Expand Up @@ -255,7 +255,7 @@ test('handles property matchers with hint', () => {
expect(stderr).toMatch(
'Snapshot name: `handles property matchers with hint: descriptive hint 1`',
);
expect(stderr).toMatch('Expected properties:');
expect(stderr).toMatch('Expected properties');
expect(stderr).toMatch('Snapshots: 1 failed, 1 total');
expect(exitCode).toBe(1);
}
Expand Down Expand Up @@ -287,7 +287,7 @@ test('handles property matchers with deep properties', () => {
expect(stderr).toMatch(
'Snapshot name: `handles property matchers with deep properties 1`',
);
expect(stderr).toMatch('Expected properties:');
expect(stderr).toMatch('Expected properties');
expect(stderr).toMatch('Snapshots: 1 failed, 1 total');
expect(exitCode).toBe(1);
}
Expand Down
3 changes: 2 additions & 1 deletion packages/jest-snapshot/src/State.ts
Expand Up @@ -10,6 +10,7 @@ import {Config} from '@jest/types';

import {getStackTraceLines, getTopFrame} from 'jest-message-util';
import {
addExtraLineBreaks,
getSnapshotData,
keyToTestName,
removeExtraLineBreaks,
Expand Down Expand Up @@ -198,7 +199,7 @@ export default class SnapshotState {
this._uncheckedKeys.delete(key);
}

const receivedSerialized = serialize(received);
const receivedSerialized = addExtraLineBreaks(serialize(received));
const expected = isInline ? inlineSnapshot : this._snapshotData[key];
const pass = expected === receivedSerialized;
const hasSnapshot = expected !== undefined;
Expand Down
Expand Up @@ -38,7 +38,7 @@ exports[`matcher error toMatchSnapshot Expected properties must be an object (no
<b>Matcher error</>: Expected <g>properties</> must be an object

Expected properties has type: function
Expected properties has value: <g>[Function properties]</>
Expected properties has value: <g>[Function]</>
`;

exports[`matcher error toMatchSnapshot Expected properties must be an object (null) with hint 1`] = `
Expand Down Expand Up @@ -67,6 +67,23 @@ Snapshot state must be initialized
Snapshot state has value: undefined
`;

exports[`matcher error toMatchSnapshot received value must be an object (non-null) 1`] = `
<d>expect(</><r>received</><d>).</>toMatchSnapshot<d>(</><g>properties</><d>)</>

<b>Matcher error</>: <r>received</> value must be an object when the matcher has <g>properties</>

Received has type: string
Received has value: <r>"string"</>
`;

exports[`matcher error toMatchSnapshot received value must be an object (null) 1`] = `
<d>expect(</><r>received</><d>).</>toMatchSnapshot<d>(</><g>properties</><d>)</>

<b>Matcher error</>: <r>received</> value must be an object when the matcher has <g>properties</>

Received has value: <r>null</>
`;

exports[`matcher error toThrowErrorMatchingInlineSnapshot Inline snapshot must be a string 1`] = `
<d>expect(</><r>received</><d>).</>toThrowErrorMatchingInlineSnapshot<d>(</>snapshot<d>)</>

Expand Down Expand Up @@ -110,17 +127,31 @@ exports[`pass false toMatchInlineSnapshot with properties equals false with snap

Snapshot name: \`with properties 1\`

Expected properties: <g>{"id": "abcdef"}</>
Received value: <r>{"id": "abcdefg", "text": "Increase code coverage", "type": "ADD_ITEM"}</>
<g>- Expected properties - 1</>
<r>+ Received value + 3</>

<d> Object {</>
<g>- "id": "abcdef",</>
<r>+ "id": "abcdefg",</>
<r>+ "text": "Increase code coverage",</>
<r>+ "type": "ADD_ITEM",</>
<d> }</>
`;

exports[`pass false toMatchInlineSnapshot with properties equals false without snapshot 1`] = `
<d>expect(</><r>received</><d>).</>toMatchInlineSnapshot<d>(</><g>properties</><d>)</>

Snapshot name: \`with properties 1\`

Expected properties: <g>{"id": "abcdef"}</>
Received value: <r>{"id": "abcdefg", "text": "Increase code coverage", "type": "ADD_ITEM"}</>
<g>- Expected properties - 1</>
<r>+ Received value + 3</>

<d> Object {</>
<g>- "id": "abcdef",</>
<r>+ "id": "abcdefg",</>
<r>+ "text": "Increase code coverage",</>
<r>+ "type": "ADD_ITEM",</>
<d> }</>
`;

exports[`pass false toMatchInlineSnapshot with properties equals true 1`] = `
Expand Down Expand Up @@ -165,13 +196,29 @@ This is likely because this test is run in a continuous integration (CI) environ
Received: <r>"Write me if you can!"</>
`;

exports[`pass false toMatchSnapshot with properties equals false 1`] = `
exports[`pass false toMatchSnapshot with properties equals false isLineDiffable false 1`] = `
<d>expect(</><r>received</><d>).</>toMatchSnapshot<d>(</><g>properties</><d>)</>

Snapshot name: \`with properties 1\`

Expected properties: <g>{"name": "Error"}</>
Received value: <r>[RangeError: Invalid array length]</>
`;

exports[`pass false toMatchSnapshot with properties equals false isLineDiffable true 1`] = `
<d>expect(</><r>received</><d>).</>toMatchSnapshot<d>(</><g>properties</><d>)</>

Snapshot name: \`with properties 1\`

Expected properties: <g>{"id": "abcdef"}</>
Received value: <r>{"id": "abcdefg", "text": "Increase code coverage", "type": "ADD_ITEM"}</>
<g>- Expected properties - 1</>
<r>+ Received value + 3</>

<d> Object {</>
<g>- "id": "abcdef",</>
<r>+ "id": "abcdefg",</>
<r>+ "text": "Increase code coverage",</>
<r>+ "type": "ADD_ITEM",</>
<d> }</>
`;

exports[`pass false toMatchSnapshot with properties equals true 1`] = `
Expand Down Expand Up @@ -199,17 +246,17 @@ Snapshot: <g>"inline snapshot"</>
Received: <r>"received"</>
`;

exports[`printDiffOrStringified backtick single line expected and received 1`] = `
exports[`printSnapshotAndReceived backtick single line expected and received 1`] = `
Snapshot: <g>"var foo = \`backtick\`;"</>
Received: <r>"var foo = <i>tag</i>\`backtick\`;"</>
`;

exports[`printDiffOrStringified empty string expected and received single line 1`] = `
exports[`printSnapshotAndReceived empty string expected and received single line 1`] = `
Snapshot: <g>""</>
Received: <r>"single line string"</>
`;

exports[`printDiffOrStringified empty string received and expected multi line 1`] = `
exports[`printSnapshotAndReceived empty string received and expected multi line 1`] = `
<g>- Snapshot - 3</>
<r>+ Received + 0</>

Expand All @@ -218,7 +265,7 @@ exports[`printDiffOrStringified empty string received and expected multi line 1`
<g>- string</>
`;

exports[`printDiffOrStringified escape backslash in multi line string 1`] = `
exports[`printSnapshotAndReceived escape backslash in multi line string 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 2</>

Expand All @@ -227,22 +274,22 @@ exports[`printDiffOrStringified escape backslash in multi line string 1`] = `
<r>+ <i>B</i>ack \\ slash</>
`;

exports[`printDiffOrStringified escape backslash in single line string 1`] = `
exports[`printSnapshotAndReceived escape backslash in single line string 1`] = `
Snapshot: <g>"<i>f</i>orward / slash and back \\\\ slash"</>
Received: <r>"<i>F</i>orward / slash and back \\\\ slash"</>
`;

exports[`printDiffOrStringified escape double quote marks in string 1`] = `
exports[`printSnapshotAndReceived escape double quote marks in string 1`] = `
Snapshot: <g>"What does \\"<i>oo</i>bleck\\" mean?"</>
Received: <r>"What does \\"<i>ew</i>bleck\\" mean?"</>
`;

exports[`printDiffOrStringified escape regexp 1`] = `
exports[`printSnapshotAndReceived escape regexp 1`] = `
Snapshot: <g>/\\\\\\\\\\("\\)/g</>
Received: <r>/\\\\\\\\\\("\\)/</>
`;

exports[`printDiffOrStringified expand false 1`] = `
exports[`printSnapshotAndReceived expand false 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 3</>

Expand All @@ -259,7 +306,7 @@ exports[`printDiffOrStringified expand false 1`] = `
<d> ↵</>
`;

exports[`printDiffOrStringified expand true 1`] = `
exports[`printSnapshotAndReceived expand true 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 3</>

Expand All @@ -286,7 +333,7 @@ exports[`printDiffOrStringified expand true 1`] = `
<d> ↵</>
`;

exports[`printDiffOrStringified fallback to line diff 1`] = `
exports[`printSnapshotAndReceived fallback to line diff 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 8</>

Expand All @@ -306,7 +353,7 @@ exports[`printDiffOrStringified fallback to line diff 1`] = `
<r>+ ================================================================================</>
`;

exports[`printDiffOrStringified has no common after clean up chaff array 1`] = `
exports[`printSnapshotAndReceived has no common after clean up chaff array 1`] = `
<g>- Snapshot - 2</>
<r>+ Received + 2</>

Expand All @@ -318,44 +365,44 @@ exports[`printDiffOrStringified has no common after clean up chaff array 1`] = `
<d> ]</>
`;

exports[`printDiffOrStringified has no common after clean up chaff string single line 1`] = `
exports[`printSnapshotAndReceived has no common after clean up chaff string single line 1`] = `
Snapshot: <g>"delete"</>
Received: <r>"insert"</>
`;

exports[`printDiffOrStringified isLineDiffable false asymmetric matcher 1`] = `
exports[`printSnapshotAndReceived isLineDiffable false asymmetric matcher 1`] = `
Snapshot: <g>null</>
Received: <r>Object {</>
<r> "asymmetricMatch": [Function],</>
<r>}</>
`;

exports[`printDiffOrStringified isLineDiffable false boolean 1`] = `
exports[`printSnapshotAndReceived isLineDiffable false boolean 1`] = `
Snapshot: <g>true</>
Received: <r>false</>
`;

exports[`printDiffOrStringified isLineDiffable false date 1`] = `
exports[`printSnapshotAndReceived isLineDiffable false date 1`] = `
Snapshot: <g>2019-09-19T00:00:00.000Z</>
Received: <r>2019-09-20T00:00:00.000Z</>
`;

exports[`printDiffOrStringified isLineDiffable false error 1`] = `
exports[`printSnapshotAndReceived isLineDiffable false error 1`] = `
Snapshot: <g>[Error: Cannot spread fragment "NameAndAppearances" within itself.]</>
Received: <r>[Error: Cannot spread fragment "NameAndAppearancesAndFriends" within itself.]</>
`;

exports[`printDiffOrStringified isLineDiffable false function 1`] = `
exports[`printSnapshotAndReceived isLineDiffable false function 1`] = `
Snapshot: <g>undefined</>
Received: <r>[Function]</>
`;

exports[`printDiffOrStringified isLineDiffable false number 1`] = `
exports[`printSnapshotAndReceived isLineDiffable false number 1`] = `
Snapshot: <g>-0</>
Received: <r>NaN</>
`;

exports[`printDiffOrStringified isLineDiffable true array 1`] = `
exports[`printSnapshotAndReceived isLineDiffable true array 1`] = `
<g>- Snapshot - 0</>
<r>+ Received + 2</>

Expand All @@ -373,7 +420,7 @@ exports[`printDiffOrStringified isLineDiffable true array 1`] = `
<d> ]</>
`;

exports[`printDiffOrStringified isLineDiffable true object 1`] = `
exports[`printSnapshotAndReceived isLineDiffable true object 1`] = `
<g>- Snapshot - 2</>
<r>+ Received + 3</>

Expand All @@ -389,7 +436,7 @@ exports[`printDiffOrStringified isLineDiffable true object 1`] = `
<d> }</>
`;

exports[`printDiffOrStringified isLineDiffable true single line expected and multi line received 1`] = `
exports[`printSnapshotAndReceived isLineDiffable true single line expected and multi line received 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 3</>

Expand All @@ -399,15 +446,15 @@ exports[`printDiffOrStringified isLineDiffable true single line expected and mul
<r>+ ]</>
`;

exports[`printDiffOrStringified isLineDiffable true single line expected and received 1`] = `
exports[`printSnapshotAndReceived isLineDiffable true single line expected and received 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 1</>

<g>- Array []</>
<r>+ Object {}</>
`;

exports[`printDiffOrStringified multi line small change in one line and other is unchanged 1`] = `
exports[`printSnapshotAndReceived multi line small change in one line and other is unchanged 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 1</>

Expand All @@ -416,7 +463,7 @@ exports[`printDiffOrStringified multi line small change in one line and other is
<d> Must be one of: 'Home'</>
`;

exports[`printDiffOrStringified multi line small changes 1`] = `
exports[`printSnapshotAndReceived multi line small changes 1`] = `
<g>- Snapshot - 7</>
<r>+ Received + 7</>

Expand All @@ -437,12 +484,12 @@ exports[`printDiffOrStringified multi line small changes 1`] = `
<r>+ at Object.doesNotThrow (__tests__/assertionError.test.js:7<i>0</i>:10)</>
`;

exports[`printDiffOrStringified single line large changes 1`] = `
exports[`printSnapshotAndReceived single line large changes 1`] = `
Snapshot: <g>"<i>A</i>rray length<i> must be a finite positive integer</i>"</>
Received: <r>"<i>Invalid a</i>rray length"</>
`;

exports[`printDiffOrStringified without serialize backtick single line expected and multi line received 1`] = `
exports[`printSnapshotAndReceived without serialize backtick single line expected and multi line received 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 2</>

Expand All @@ -451,15 +498,15 @@ exports[`printDiffOrStringified without serialize backtick single line expected
<r>+ tick\`;</>
`;

exports[`printDiffOrStringified without serialize backtick single line expected and received 1`] = `
exports[`printSnapshotAndReceived without serialize backtick single line expected and received 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 1</>

<g>- var foo = \`backtick\`;</>
<r>+ var foo = \`back<i>\${x}</i>tick\`;</>
`;

exports[`printDiffOrStringified without serialize has no common after clean up chaff multi line 1`] = `
exports[`printSnapshotAndReceived without serialize has no common after clean up chaff multi line 1`] = `
<g>- Snapshot - 2</>
<r>+ Received + 2</>

Expand All @@ -469,15 +516,15 @@ exports[`printDiffOrStringified without serialize has no common after clean up c
<r>+ 2</>
`;

exports[`printDiffOrStringified without serialize has no common after clean up chaff single line 1`] = `
exports[`printSnapshotAndReceived without serialize has no common after clean up chaff single line 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 1</>

<g>- delete</>
<r>+ insert</>
`;

exports[`printDiffOrStringified without serialize prettier/pull/5590 1`] = `
exports[`printSnapshotAndReceived without serialize prettier/pull/5590 1`] = `
<g>- Snapshot - 1</>
<r>+ Received + 1</>

Expand Down