-
Notifications
You must be signed in to change notification settings - Fork 472
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: corrections to assert.compareArray and assert.compareArray.format (
- Loading branch information
Showing
11 changed files
with
114 additions
and
45 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,38 @@ | ||
// Copyright (C) 2021 Rick Waldron. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
description: > | ||
Accepts spreadable arguments | ||
includes: [compareArray.js] | ||
---*/ | ||
|
||
const fixture = [0, 'a', undefined]; | ||
|
||
function checkFormatOfAssertionMessage(func, errorMessage) { | ||
var caught = false; | ||
try { | ||
func(); | ||
} catch (error) { | ||
caught = true; | ||
assert.sameValue(error.constructor, Test262Error); | ||
assert.sameValue(error.message, errorMessage); | ||
} | ||
|
||
assert(caught, `Expected ${func} to throw, but it didn't.`); | ||
} | ||
|
||
function f() { | ||
assert.compareArray(arguments, fixture); | ||
assert.compareArray(fixture, arguments); | ||
|
||
checkFormatOfAssertionMessage(() => { | ||
assert.compareArray(arguments, [], 'arguments and []'); | ||
}, 'Expected [0, a, undefined] and [] to have the same contents. arguments and []'); | ||
|
||
checkFormatOfAssertionMessage(() => { | ||
assert.compareArray([], arguments, '[] and arguments'); | ||
}, 'Expected [] and [0, a, undefined] to have the same contents. [] and arguments'); | ||
} | ||
|
||
f(...fixture); |
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,34 @@ | ||
// Copyright (C) 2021 Rick Waldron. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
|
||
/*--- | ||
description: > | ||
Accepts spreadable arguments | ||
includes: [compareArray.js] | ||
---*/ | ||
|
||
function checkFormatOfAssertionMessage(func, errorMessage) { | ||
var caught = false; | ||
try { | ||
func(); | ||
} catch (error) { | ||
caught = true; | ||
assert.sameValue(error.constructor, Test262Error); | ||
assert.sameValue(error.message, errorMessage); | ||
} | ||
|
||
assert(caught, `Expected ${func} to throw, but it didn't.`); | ||
} | ||
|
||
const fixture = { length: 3, 0: 0, 1: 'a', 2: undefined}; | ||
|
||
assert.compareArray(fixture, [0, 'a', undefined]); | ||
assert.compareArray([0, 'a', undefined], fixture); | ||
|
||
checkFormatOfAssertionMessage(() => { | ||
assert.compareArray(fixture, [], 'fixture and []'); | ||
}, 'Expected [0, a, undefined] and [] to have the same contents. fixture and []'); | ||
|
||
checkFormatOfAssertionMessage(() => { | ||
assert.compareArray([], fixture, '[] and fixture'); | ||
}, 'Expected [] and [0, a, undefined] to have the same contents. [] and fixture'); |
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
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