]>
Lady’s Gitweb - Pisces/blob - value.test.js
747b18e39087d18010414158a3b661a6443802da
1 // ♓🌟 Piscēs ∷ value.test.js
2 // ====================================================================
4 // Copyright © 2022–2023 Lady [@ Lady’s Computer].
6 // This Source Code Form is subject to the terms of the Mozilla Public
7 // License, v. 2.0. If a copy of the MPL was not distributed with this
8 // file, You can obtain one at <https://mozilla.org/MPL/2.0/>.
15 } from "./dev-deps.js";
38 describe("ASYNC_ITERATOR", () => {
39 it("[[Get]] is @@asyncIterator", () => {
40 assertStrictEquals(ASYNC_ITERATOR
, Symbol
.asyncIterator
);
44 describe("HAS_INSTANCE", () => {
45 it("[[Get]] is @@hasInstance", () => {
46 assertStrictEquals(HAS_INSTANCE
, Symbol
.hasInstance
);
50 describe("IS_CONCAT_SPREADABLE", () => {
51 it("[[Get]] is @@isConcatSpreadable", () => {
54 Symbol
.isConcatSpreadable
,
59 describe("ITERATOR", () => {
60 it("[[Get]] is @@iterator", () => {
61 assertStrictEquals(ITERATOR
, Symbol
.iterator
);
65 describe("MATCH", () => {
66 it("[[Get]] is @@match", () => {
67 assertStrictEquals(MATCH
, Symbol
.match
);
71 describe("MATCH_ALL", () => {
72 it("[[Get]] is @@matchAll", () => {
73 assertStrictEquals(MATCH_ALL
, Symbol
.matchAll
);
77 describe("NULL", () => {
78 it("[[Get]] is null", () => {
79 assertStrictEquals(NULL
, null);
83 describe("REPLACE", () => {
84 it("[[Get]] is @@replace", () => {
85 assertStrictEquals(REPLACE
, Symbol
.replace
);
89 describe("SPECIES", () => {
90 it("[[Get]] is @@species", () => {
91 assertStrictEquals(SPECIES
, Symbol
.species
);
95 describe("SPLIT", () => {
96 it("[[Get]] is @@split", () => {
97 assertStrictEquals(SPLIT
, Symbol
.split
);
101 describe("TO_PRIMITIVE", () => {
102 it("[[Get]] is @@toPrimitive", () => {
103 assertStrictEquals(TO_PRIMITIVE
, Symbol
.toPrimitive
);
107 describe("TO_STRING_TAG", () => {
108 it("[[Get]] is @@toStringTag", () => {
109 assertStrictEquals(TO_STRING_TAG
, Symbol
.toStringTag
);
113 describe("UNDEFINED", () => {
114 it("[[Get]] is undefined", () => {
115 assertStrictEquals(UNDEFINED
, void {});
119 describe("UNSCOPABLES", () => {
120 it("[[Get]] is @@unscopables", () => {
121 assertStrictEquals(UNSCOPABLES
, Symbol
.unscopables
);
125 describe("ordinaryToPrimitive", () => {
126 it("[[Call]] prefers `valueOf` by default", () => {
135 assertStrictEquals(ordinaryToPrimitive(obj
), "success");
136 assertStrictEquals(ordinaryToPrimitive(obj
, "default"), "success");
139 it('[[Call]] prefers `valueOf` for a "number" hint', () => {
148 assertStrictEquals(ordinaryToPrimitive(obj
, "number"), "success");
151 it('[[Call]] prefers `toString` for a "string" hint', () => {
160 assertStrictEquals(ordinaryToPrimitive(obj
, "string"), "success");
163 it("[[Call]] falls back to the other method if the first isn’t callable", () => {
170 assertStrictEquals(ordinaryToPrimitive(obj
), "success");
173 it("[[Call]] falls back to the other method if the first returns an object", () => {
179 return new String("failure");
182 assertStrictEquals(ordinaryToPrimitive(obj
), "success");
185 it("[[Call]] throws an error if neither method is callable", () => {
190 assertThrows(() => ordinaryToPrimitive(obj
));
193 it("[[Call]] throws an error if neither method returns an object", () => {
196 return new String("failure");
199 return new String("failure");
202 assertThrows(() => ordinaryToPrimitive(obj
));
206 describe("sameValue", () => {
207 it("[[Call]] returns false for null 🆚 undefined", () => {
208 assertStrictEquals(sameValue(null, undefined), false);
211 it("[[Call]] returns false for null 🆚 an object", () => {
212 assertStrictEquals(sameValue(null, {}), false);
215 it("[[Call]] returns true for null 🆚 null", () => {
216 assertStrictEquals(sameValue(null, null), true);
219 it("[[Call]] returns false for two different objects", () => {
220 assertStrictEquals(sameValue({}, {}), false);
223 it("[[Call]] returns true for the same object", () => {
225 assertStrictEquals(sameValue(obj
, obj
), true);
228 it("[[Call]] returns false for ±0", () => {
229 assertStrictEquals(sameValue(0, -0), false);
232 it("[[Call]] returns true for -0", () => {
233 assertStrictEquals(sameValue(-0, -0), true);
236 it("[[Call]] returns true for nan", () => {
237 assertStrictEquals(sameValue(0 / 0, 0 / 0), true);
240 it("[[Call]] returns false for a primitive and its wrapped object", () => {
241 assertStrictEquals(sameValue(false, new Boolean(false)), false);
245 describe("sameValueZero", () => {
246 it("[[Call]] returns false for null 🆚 undefined", () => {
247 assertStrictEquals(sameValueZero(null, undefined), false);
250 it("[[Call]] returns false for null 🆚 an object", () => {
251 assertStrictEquals(sameValueZero(null, {}), false);
254 it("[[Call]] returns true for null 🆚 null", () => {
255 assertStrictEquals(sameValueZero(null, null), true);
258 it("[[Call]] returns false for two different objects", () => {
259 assertStrictEquals(sameValueZero({}, {}), false);
262 it("[[Call]] returns true for the same object", () => {
264 assertStrictEquals(sameValueZero(obj
, obj
), true);
267 it("[[Call]] returns true for ±0", () => {
268 assertStrictEquals(sameValueZero(0, -0), true);
271 it("[[Call]] returns true for -0", () => {
272 assertStrictEquals(sameValueZero(-0, -0), true);
275 it("[[Call]] returns true for nan", () => {
276 assertStrictEquals(sameValueZero(0 / 0, 0 / 0), true);
279 it("[[Call]] returns false for a primitive and its wrapped object", () => {
281 sameValueZero(false, new Boolean(false)),
287 describe("toPrimitive", () => {
288 it("[[Call]] returns the argument when passed a primitive", () => {
289 const value
= Symbol();
290 assertStrictEquals(toPrimitive(value
), value
);
293 it("[[Call]] works with nullish values", () => {
294 assertStrictEquals(toPrimitive(null), null);
295 assertStrictEquals(toPrimitive(), void {});
298 it("[[Call]] calls ordinaryToPrimitive by default", () => {
299 const value
= Object
.assign(
307 assertStrictEquals(toPrimitive(value
), "success");
310 it("[[Call]] accepts a hint", () => {
311 const value
= Object
.assign(
322 assertStrictEquals(toPrimitive(value
, "string"), "success");
325 it("[[Call]] uses the exotic toPrimitive method if available", () => {
326 const value
= Object
.assign(
329 [Symbol
.toPrimitive
]() {
334 assertStrictEquals(toPrimitive(value
), "success");
337 it("[[Call]] passes the hint to the exotic toPrimitive", () => {
338 const value
= Object
.assign(
341 [Symbol
.toPrimitive
](hint
) {
342 return hint
=== "string" ? "success" : "failure";
346 assertStrictEquals(toPrimitive(value
, "string"), "success");
349 it('[[Call]] passes a "default" hint by default', () => {
350 const value
= Object
.assign(
353 [Symbol
.toPrimitive
](hint
) {
354 return hint
=== "default" ? "success" : "failure";
358 assertStrictEquals(toPrimitive(value
, "default"), "success");
361 it("[[Call]] throws for an invalid hint", () => {
362 const value1
= Object
.assign(
365 [Symbol
.toPrimitive
]() {
370 const value2
= Object
.assign(
378 assertThrows(() => toPrimitive(value1
, "badhint"));
379 assertThrows(() => toPrimitive(value2
, "badhint"));
380 assertThrows(() => toPrimitive(true, "badhint"));
384 describe("type", () => {
385 it('[[Call]] returns "null" for null', () => {
386 assertStrictEquals(type(null), "null");
389 it('[[Call]] returns "undefined" for undefined', () => {
390 assertStrictEquals(type(void {}), "undefined");
393 it('[[Call]] returns "object" for non‐callable objects', () => {
394 assertStrictEquals(type(Object
.create(null)), "object");
397 it('[[Call]] returns "object" for callable objects', () => {
398 assertStrictEquals(type(() => {}), "object");
401 it('[[Call]] returns "object" for constructable objects', () => {
402 assertStrictEquals(type(class {}), "object");
This page took 0.103882 seconds and 3 git commands to generate.