| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft Corporation and contributors. All rights reserved.
- // Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- WScript.LoadScriptFile("..\\UnitTestFramework\\UnitTestFramework.js");
- const StringPrototype = String.prototype;
- const at = StringPrototype.at;
- const call = Function.call.bind(Function.call); // (fn: Function, thisArg: any, ...args: any[]) => any
- const tests = [
- {
- name: "Existnce of String.prototype.at",
- body: function () {
- assert.isTrue(typeof at === "function", "String.prototype.at should be a function");
- }
- },
- {
- name: "String.prototype.at's descriptor",
- body: function () {
- const desc = Object.getOwnPropertyDescriptor(StringPrototype, "at");
- assert.areEqual(desc.configurable, true, "String.prototype.at should be configurable");
- assert.areEqual(desc.writable, true, "String.prototype.at should be writable");
- assert.areEqual(desc.enumerable, false, "String.prototype.at should not be enumerable");
- }
- },
- {
- name: "Properties of String.prototype.at",
- body: function () {
- const nameDesc = Object.getOwnPropertyDescriptor(at, "name");
- assert.areEqual(at.name, "at", 'String.prototype.at.name should be "at"');
- assert.areEqual(nameDesc.configurable, true, "String.prototype.at.name should be configurable");
- assert.areEqual(nameDesc.writable, false, "String.prototype.at.name should not be writable");
- assert.areEqual(nameDesc.enumerable, false, "String.prototype.at.name should not be enumerable");
- const lengthDesc = Object.getOwnPropertyDescriptor(at, "length");
- assert.areEqual(at.length, 1, 'String.prototype.at.length should be 1');
- assert.areEqual(lengthDesc.configurable, true, "String.prototype.at.length should be configurable");
- assert.areEqual(lengthDesc.writable, false, "String.prototype.at.length should not be writable");
- assert.areEqual(lengthDesc.enumerable, false, "String.prototype.at.length should not be enumerable");
- }
- },
- {
- name: "String.prototype.at called on invalid object",
- body: function () {
- // on object without toString() should throw
- assert.throws(() => { call(at, Object.create(null)) }, TypeError);
- assert.throws(() => { call(at, null) }, TypeError);
- assert.throws(() => { call(at, undefined) }, TypeError);
- }
- },
- {
- name: "Indexation of string with non-numerical argument",
- body: function () {
- const string = "01";
- assert.areEqual(string.at(false), "0", '"01".at(false) should be "0"');
- assert.areEqual(string.at(null), "0", '"01".at(null) should be "0"');
- assert.areEqual(string.at(undefined), "0", '"01".at(undefined) should be "0"');
- assert.areEqual(string.at(""), "0", '"01".at("") should be "0"');
- assert.areEqual(string.at(function () { }), "0", '"01".at(function() {}) should be "0"');
- assert.areEqual(string.at([]), "0", '"01".at([]) should be "0"');
- assert.areEqual(string.at(true), "1", '"01".at(true) should be "1"');
- assert.areEqual(string.at("1"), "1", '"01".at("1") should be "1"');
- }
- },
- {
- name: "Indexation of string with negative numerical argument",
- body: function () {
- const string = "0\u26052";
- assert.areEqual(string.at(0), "0", '"0\u26052".at(0) should be "0"');
- assert.areEqual(string.at(-1), "2", '"0\u26052".at(-1) should be "2"');
- assert.areEqual(string.at(-2), "\u2605", '"0\u26052".at(-2) should be "\u2605"');
- }
- },
- {
- name: "Indexation of string with positive numerical argument",
- body: function () {
- const string = "0\u26052";
- assert.areEqual(string.at(0), "0", '"0\u26052".at(0) should be "0"');
- assert.areEqual(string.at(1), "\u2605", '"0\u26052".at(-1) should be "\u2605"');
- assert.areEqual(string.at(2), "2", '"0\u26052".at(-2) should be "2"');
- }
- },
- {
- name: "Out of bounds",
- body: function () {
- const string = "";
- assert.areEqual(string.at(0), undefined, `"".at(0) should be undefined`);
- assert.areEqual(string.at(-1), undefined, `"".at(-1) should be undefined`);
- assert.areEqual(string.at(2), undefined, `"".at(2) should be undefined`);
- }
- },
- {
- name: "Argument ToInteger()",
- body: function () {
- let count = 0;
- const index = {
- valueOf() {
- count++;
- return 1;
- }
- };
- const string = "123";
- assert.areEqual(string.at(index), "2", 'result of string.at(index) should be "2"');
- assert.areEqual(count, 1, 'The value of count should be 1');
- }
- },
- {
- name: "String.prototype.at called on to-stringable object",
- body: function () {
- const object = {
- toString() {
- return "Test";
- }
- }
-
- assert.areEqual(call(at, object, 0), "T", 'call(at, object, 0) should be "T"');
- assert.areEqual(call(at, object, -1), "t", 'call(at, object, -1) should be "t"');
- assert.areEqual(call(at, object, 1), "e", 'call(at, object, 1) should be "e"');
- assert.areEqual(call(at, object, 2), "s", 'call(at, object, 2) should be "T"');
- }
- }
- ];
- testRunner.runTests(tests, { verbose: WScript.Arguments[0] != "summary" });
|