-
Notifications
You must be signed in to change notification settings - Fork 464
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
Add generic type coercion utility functions #1200
Closed
Closed
Changes from all 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,285 @@ | ||
// Copyright (C) 2017 Josh Wolfe. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
description: | | ||
Functions to help generate test cases for testing type coercion abstract | ||
operations like ToNumber. | ||
---*/ | ||
|
||
function testCoercibleToIntegerZero(test) { | ||
testCoercibleToNumberZero(test); | ||
|
||
testCoercibleToIntegerFromInteger(0, test); | ||
|
||
// NaN -> +0 | ||
testCoercibleToNumberNan(test); | ||
|
||
// When toString() returns a string that parses to NaN: | ||
test({}); | ||
test([]); | ||
} | ||
|
||
function testCoercibleToIntegerOne(test) { | ||
testCoercibleToNumberOne(test); | ||
|
||
testCoercibleToIntegerFromInteger(1, test); | ||
|
||
// When toString() returns "1" | ||
test([1]); | ||
test(["1"]); | ||
} | ||
|
||
function testCoercibleToNumberZero(test) { | ||
function testPrimitiveValue(value) { | ||
test(value); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "number", test); | ||
} | ||
|
||
testPrimitiveValue(null); | ||
testPrimitiveValue(false); | ||
testPrimitiveValue(0); | ||
testPrimitiveValue("0"); | ||
} | ||
|
||
function testCoercibleToNumberNan(test) { | ||
function testPrimitiveValue(value) { | ||
test(value); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "number", test); | ||
} | ||
|
||
testPrimitiveValue(undefined); | ||
testPrimitiveValue(NaN); | ||
testPrimitiveValue(""); | ||
testPrimitiveValue("foo"); | ||
testPrimitiveValue("true"); | ||
} | ||
|
||
function testCoercibleToNumberOne(test) { | ||
function testPrimitiveValue(value) { | ||
test(value); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "number", test); | ||
} | ||
|
||
testPrimitiveValue(true); | ||
testPrimitiveValue(1); | ||
testPrimitiveValue("1"); | ||
} | ||
|
||
function testCoercibleToIntegerFromInteger(nominalInteger, test) { | ||
assert(Number.isInteger(nominalInteger)); | ||
|
||
function testPrimitiveValue(value) { | ||
test(value); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "number", test); | ||
|
||
// Non-primitive values that coerce to the nominal integer: | ||
// toString() returns a string that parsers to a primitive value. | ||
test([value]); | ||
} | ||
|
||
function testPrimitiveNumber(number) { | ||
testPrimitiveValue(number); | ||
// ToNumber: String -> Number | ||
testPrimitiveValue(number.toString()); | ||
} | ||
|
||
testPrimitiveNumber(nominalInteger); | ||
|
||
// ToInteger: floor(abs(number)) | ||
if (nominalInteger >= 0) { | ||
testPrimitiveNumber(nominalInteger + 0.9); | ||
} | ||
if (nominalInteger <= 0) { | ||
testPrimitiveNumber(nominalInteger - 0.9); | ||
} | ||
} | ||
|
||
function testPrimitiveWrappers(primitiveValue, hint, test) { | ||
if (primitiveValue != null) { | ||
// null and undefined result in {} rather than a proper wrapper, | ||
// so skip this case for those values. | ||
test(Object(primitiveValue)); | ||
} | ||
|
||
testCoercibleToPrimitiveWithMethod(hint, function() { | ||
return primitiveValue; | ||
}, test); | ||
} | ||
|
||
function testCoercibleToPrimitiveWithMethod(hint, method, test) { | ||
var methodNames; | ||
if (hint === "number") { | ||
methodNames = ["valueOf", "toString"]; | ||
} else if (hint === "string") { | ||
methodNames = ["toString", "valueOf"]; | ||
} else { | ||
throw new Test262Error(); | ||
} | ||
// precedence order | ||
test({ | ||
[Symbol.toPrimitive]: method, | ||
[methodNames[0]]: function() { throw new Test262Error(); }, | ||
[methodNames[1]]: function() { throw new Test262Error(); }, | ||
}); | ||
test({ | ||
[methodNames[0]]: method, | ||
[methodNames[1]]: function() { throw new Test262Error(); }, | ||
}); | ||
if (hint === "number") { | ||
// The default valueOf returns an object, which is unsuitable. | ||
// The default toString returns a String, which is suitable. | ||
// Therefore this test only works for valueOf falling back to toString. | ||
test({ | ||
// this is toString: | ||
[methodNames[1]]: method, | ||
}); | ||
} | ||
|
||
// GetMethod: if func is undefined or null, return undefined. | ||
test({ | ||
[Symbol.toPrimitive]: undefined, | ||
[methodNames[0]]: method, | ||
[methodNames[1]]: method, | ||
}); | ||
test({ | ||
[Symbol.toPrimitive]: null, | ||
[methodNames[0]]: method, | ||
[methodNames[1]]: method, | ||
}); | ||
|
||
// if methodNames[0] is not callable, fallback to methodNames[1] | ||
test({ | ||
[methodNames[0]]: null, | ||
[methodNames[1]]: method, | ||
}); | ||
test({ | ||
[methodNames[0]]: 1, | ||
[methodNames[1]]: method, | ||
}); | ||
test({ | ||
[methodNames[0]]: {}, | ||
[methodNames[1]]: method, | ||
}); | ||
|
||
// if methodNames[0] returns an object, fallback to methodNames[1] | ||
test({ | ||
[methodNames[0]]: function() { return {}; }, | ||
[methodNames[1]]: method, | ||
}); | ||
test({ | ||
[methodNames[0]]: function() { return Object(1); }, | ||
[methodNames[1]]: method, | ||
}); | ||
} | ||
|
||
function testNotCoercibleToInteger(test) { | ||
// ToInteger only throws from ToNumber. | ||
return testNotCoercibleToNumber(test); | ||
} | ||
function testNotCoercibleToNumber(test) { | ||
function testPrimitiveValue(value) { | ||
test(TypeError, value); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "number", function(value) { | ||
test(TypeError, value); | ||
}); | ||
} | ||
|
||
// ToNumber: Symbol -> TypeError | ||
testPrimitiveValue(Symbol("1")); | ||
|
||
if (typeof BigInt !== "undefined") { | ||
// ToNumber: BigInt -> TypeError | ||
testPrimitiveValue(BigInt(0)); | ||
} | ||
|
||
// ToPrimitive | ||
testNotCoercibleToPrimitive("number", test); | ||
} | ||
|
||
function testNotCoercibleToPrimitive(hint, test) { | ||
function MyError() {} | ||
|
||
// ToPrimitive: input[@@toPrimitive] is not callable (and non-null) | ||
test(TypeError, {[Symbol.toPrimitive]: 1}); | ||
test(TypeError, {[Symbol.toPrimitive]: {}}); | ||
|
||
// ToPrimitive: input[@@toPrimitive] returns object | ||
test(TypeError, {[Symbol.toPrimitive]: function() { return Object(1); }}); | ||
test(TypeError, {[Symbol.toPrimitive]: function() { return {}; }}); | ||
|
||
// ToPrimitive: input[@@toPrimitive] throws | ||
test(MyError, {[Symbol.toPrimitive]: function() { throw new MyError(); }}); | ||
|
||
// OrdinaryToPrimitive: method throws | ||
testCoercibleToPrimitiveWithMethod(hint, function() { | ||
throw new MyError(); | ||
}, function(value) { | ||
test(MyError, value); | ||
}); | ||
|
||
// OrdinaryToPrimitive: both methods are unsuitable | ||
function testUnsuitableMethod(method) { | ||
test(TypeError, {valueOf:method, toString:method}); | ||
} | ||
// not callable: | ||
testUnsuitableMethod(null); | ||
testUnsuitableMethod(1); | ||
testUnsuitableMethod({}); | ||
// returns object: | ||
testUnsuitableMethod(function() { return Object(1); }); | ||
testUnsuitableMethod(function() { return {}; }); | ||
} | ||
|
||
function testCoercibleToString(test) { | ||
function testPrimitiveValue(value, expectedString) { | ||
test(value, expectedString); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "string", function(value) { | ||
test(value, expectedString); | ||
}); | ||
} | ||
|
||
testPrimitiveValue(undefined, "undefined"); | ||
testPrimitiveValue(null, "null"); | ||
testPrimitiveValue(true, "true"); | ||
testPrimitiveValue(false, "false"); | ||
testPrimitiveValue(0, "0"); | ||
testPrimitiveValue(-0, "0"); | ||
testPrimitiveValue(Infinity, "Infinity"); | ||
testPrimitiveValue(-Infinity, "-Infinity"); | ||
testPrimitiveValue(123.456, "123.456"); | ||
testPrimitiveValue(-123.456, "-123.456"); | ||
testPrimitiveValue("", ""); | ||
testPrimitiveValue("foo", "foo"); | ||
|
||
if (typeof BigInt !== "undefined") { | ||
// BigInt -> TypeError | ||
testPrimitiveValue(BigInt(0), "0"); | ||
} | ||
|
||
// toString of a few objects | ||
test([], ""); | ||
test(["foo", "bar"], "foo,bar"); | ||
test({}, "[object Object]"); | ||
} | ||
|
||
function testNotCoercibleToString(test) { | ||
function testPrimitiveValue(value) { | ||
test(TypeError, value); | ||
// ToPrimitive | ||
testPrimitiveWrappers(value, "string", function(value) { | ||
test(TypeError, value); | ||
}); | ||
} | ||
|
||
// Symbol -> TypeError | ||
testPrimitiveValue(Symbol("1")); | ||
|
||
// ToPrimitive | ||
testNotCoercibleToPrimitive("string", test); | ||
} |
28 changes: 28 additions & 0 deletions
28
test/built-ins/String/prototype/indexOf/position-tointeger.js
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,28 @@ | ||
// Copyright (C) 2017 Josh Wolfe. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-string.prototype.indexof | ||
description: String.prototype.indexOf type coercion for position parameter | ||
info: > | ||
String.prototype.indexOf ( searchString [ , position ] ) | ||
|
||
4. Let pos be ? ToInteger(position). | ||
|
||
includes: [typeCoercion.js] | ||
---*/ | ||
|
||
testCoercibleToIntegerZero(function(zero) { | ||
assert.sameValue("aaaa".indexOf("aa", zero), 0); | ||
}); | ||
|
||
testCoercibleToIntegerOne(function(one) { | ||
assert.sameValue("aaaa".indexOf("aa", one), 1); | ||
}); | ||
|
||
testCoercibleToIntegerFromInteger(2, function(two) { | ||
assert.sameValue("aaaa".indexOf("aa", two), 2); | ||
}); | ||
|
||
testNotCoercibleToInteger(function(error, value) { | ||
assert.throws(error, function() { "".indexOf("", value); }); | ||
}); |
25 changes: 25 additions & 0 deletions
25
test/built-ins/String/prototype/indexOf/searchstring-tostring.js
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,25 @@ | ||
// Copyright (C) 2017 Josh Wolfe. All rights reserved. | ||
// This code is governed by the BSD license found in the LICENSE file. | ||
/*--- | ||
esid: sec-string.prototype.indexof | ||
description: String.prototype.indexOf type coercion for searchString parameter | ||
info: > | ||
String.prototype.indexOf ( searchString [ , position ] ) | ||
|
||
3. Let searchStr be ? ToString(searchString). | ||
|
||
includes: [typeCoercion.js] | ||
---*/ | ||
|
||
testCoercibleToString(function(value, expectedString) { | ||
if (expectedString.length === 0) { | ||
assert.sameValue(("x_x_x").indexOf(value), 0); | ||
} else { | ||
assert.sameValue(expectedString.indexOf("\x00"), -1, "sanity check"); | ||
assert.sameValue(("\x00\x00" + expectedString + "\x00\x00").indexOf(value), 2); | ||
} | ||
}); | ||
|
||
testNotCoercibleToString(function(error, value) { | ||
assert.throws(error, function() { "".indexOf(value); }); | ||
}); |
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.
@rwaldron this is what I mean by checking if the feature is enabled at runtime. Something similar could be done for
typeof Symbol !== "undefined"
and eventypeof Symbol.toPrimitive !== "undefined"
perhaps. And in the event they are undefined, then skip the parts of the test that use the features.