-
-
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
Fix test suite for Node 10 #6055
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
77f7dcc
fix failures test for node 10
SimenB 849ecd9
remove message from node assert stack traces
SimenB f8fc65e
support new operator messages in node 10
SimenB 7ceb62f
extract assertion with new message in node 10 from snapshot
SimenB f0c34c2
update changelog
SimenB 95df214
please flow gods
SimenB 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
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 |
---|---|---|
|
@@ -33,8 +33,12 @@ const assertOperatorsMap = { | |
const humanReadableOperators = { | ||
deepEqual: 'to deeply equal', | ||
deepStrictEqual: 'to deeply and strictly equal', | ||
equal: 'to be equal', | ||
notDeepEqual: 'not to deeply equal', | ||
notDeepStrictEqual: 'not to deeply and strictly equal', | ||
notEqual: 'to not be equal', | ||
notStrictEqual: 'not be strictly equal', | ||
strictEqual: 'to strictly be equal', | ||
}; | ||
|
||
const getOperatorName = (operator: ?string, stack: string) => { | ||
|
@@ -50,12 +54,15 @@ const getOperatorName = (operator: ?string, stack: string) => { | |
return ''; | ||
}; | ||
|
||
const operatorMessage = (operator: ?string, negator: boolean) => | ||
typeof operator === 'string' | ||
? operator.startsWith('!') || operator.startsWith('=') | ||
? `${negator ? 'not ' : ''}to be (operator: ${operator}):\n` | ||
: `${humanReadableOperators[operator] || operator} to:\n` | ||
const operatorMessage = (operator: ?string) => { | ||
const niceOperatorName = getOperatorName(operator, ''); | ||
// $FlowFixMe: we default to the operator itseld, so holes in the map doesn't matter | ||
const humanReadableOperator = humanReadableOperators[niceOperatorName]; | ||
|
||
return typeof operator === 'string' | ||
? `${humanReadableOperator || niceOperatorName} to:\n` | ||
: ''; | ||
}; | ||
|
||
const assertThrowingMatcherHint = (operatorName: string) => { | ||
return ( | ||
|
@@ -88,13 +95,13 @@ const assertMatcherHint = (operator: ?string, operatorName: string) => { | |
}; | ||
|
||
function assertionErrorMessage(error: AssertionError, options: DiffOptions) { | ||
const {expected, actual, message, operator, stack} = error; | ||
const {expected, actual, generatedMessage, message, operator, stack} = error; | ||
const diffString = diff(expected, actual, options); | ||
const negator = | ||
typeof operator === 'string' && | ||
(operator.startsWith('!') || operator.startsWith('not')); | ||
const hasCustomMessage = !error.generatedMessage; | ||
const hasCustomMessage = !generatedMessage; | ||
const operatorName = getOperatorName(operator, stack); | ||
const trimmedStack = stack | ||
.replace(message, '') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this |
||
.replace(/AssertionError(.*)/g, ''); | ||
|
||
if (operatorName === 'doesNotThrow') { | ||
return ( | ||
|
@@ -104,7 +111,7 @@ function assertionErrorMessage(error: AssertionError, options: DiffOptions) { | |
chalk.reset(`Instead, it threw:\n`) + | ||
` ${printReceived(actual)}` + | ||
chalk.reset(hasCustomMessage ? '\n\nMessage:\n ' + message : '') + | ||
stack.replace(/AssertionError(.*)/g, '') | ||
trimmedStack | ||
); | ||
} | ||
|
||
|
@@ -115,20 +122,20 @@ function assertionErrorMessage(error: AssertionError, options: DiffOptions) { | |
chalk.reset(`Expected the function to throw an error.\n`) + | ||
chalk.reset(`But it didn't throw anything.`) + | ||
chalk.reset(hasCustomMessage ? '\n\nMessage:\n ' + message : '') + | ||
stack.replace(/AssertionError(.*)/g, '') | ||
trimmedStack | ||
); | ||
} | ||
|
||
return ( | ||
assertMatcherHint(operator, operatorName) + | ||
'\n\n' + | ||
chalk.reset(`Expected value ${operatorMessage(operator, negator)}`) + | ||
chalk.reset(`Expected value ${operatorMessage(operator)}`) + | ||
` ${printExpected(expected)}\n` + | ||
chalk.reset(`Received:\n`) + | ||
` ${printReceived(actual)}` + | ||
chalk.reset(hasCustomMessage ? '\n\nMessage:\n ' + message : '') + | ||
(diffString ? `\n\nDifference:\n\n${diffString}` : '') + | ||
stack.replace(/AssertionError(.*)/g, '') | ||
trimmedStack | ||
); | ||
} | ||
|
||
|
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 |
---|---|---|
|
@@ -31,10 +31,14 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | |
/* @flow */ | ||
/* eslint-disable sort-keys */ | ||
|
||
import {AssertionError} from 'assert'; | ||
|
||
import ExpectationFailed from '../expectation_failed'; | ||
|
||
import expectationResultFactory from '../expectation_result_factory'; | ||
|
||
import assertionErrorMessage from '../assert_support'; | ||
|
||
export default function Spec(attrs: Object) { | ||
this.resultCallback = attrs.resultCallback || function() {}; | ||
this.id = attrs.id; | ||
|
@@ -137,8 +141,7 @@ Spec.prototype.onException = function onException(error) { | |
return; | ||
} | ||
|
||
if (error instanceof require('assert').AssertionError) { | ||
const assertionErrorMessage = require('../assert_support').default; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We have lazy loading of deps anyways |
||
if (error instanceof AssertionError) { | ||
error = assertionErrorMessage(error, {expand: this.expand}); | ||
} | ||
|
||
|
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.
Typo
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.
yeah, I fixed it in #6061 :P