7d729e85b6
Land some of the tests for Temporal.Instant All marked as FAIL at this stage. Bug: v8:11544 Change-Id: I79d14df47248c708e5d73a0e00e3f7973c521d16 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3086903 Commit-Queue: Frank Tang <ftang@chromium.org> Reviewed-by: Shu-yu Guo <syg@chromium.org> Cr-Commit-Position: refs/heads/main@{#76550}
44 lines
2.0 KiB
JavaScript
44 lines
2.0 KiB
JavaScript
// Copyright 2021 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
// Flags: --harmony-temporal
|
|
|
|
let inst1 = new Temporal.Instant(1234567890123456789n);
|
|
assertEquals(1234567890123456789n , inst1.epochNanoseconds);
|
|
assertEquals(1234567890123456n , inst1.epochMicroseconds);
|
|
assertEquals(1234567890123n , inst1.epochMilliseconds);
|
|
assertEquals(1234567890n , inst1.epochSeconds);
|
|
|
|
let inst2 = new Temporal.Instant(-1234567890123456789n);
|
|
assertEquals(-1234567890123456789n , inst2.epochNanoseconds);
|
|
assertEquals(-1234567890123456n , inst2.epochMicroseconds);
|
|
assertEquals(-1234567890123n , inst2.epochMilliseconds);
|
|
assertEquals(-1234567890n , inst2.epochSeconds);
|
|
|
|
// 1. If NewTarget is undefined, then
|
|
// a. Throw a TypeError exception.
|
|
assertThrows(() => Temporal.Instant(1234567890123456789n), TypeError);
|
|
|
|
// 2. Let epochNanoseconds be ? ToBigInt(epochNanoseconds).
|
|
assertThrows(() => {let inst = new Temporal.Instant(undefined)},
|
|
TypeError);
|
|
assertThrows(() => {let inst = new Temporal.Instant(null)}, TypeError);
|
|
assertEquals(1n, (new Temporal.Instant(true)).epochNanoseconds);
|
|
assertEquals(0n, (new Temporal.Instant(false)).epochNanoseconds);
|
|
assertThrows(() => {let inst = Temporal.Instant(12345)}, TypeError);
|
|
assertEquals(1234567890123456789n,
|
|
(new Temporal.Instant("1234567890123456789")).epochNanoseconds);
|
|
assertThrows(() => {let inst = new Temporal.Instant(Symbol(12345n))},
|
|
TypeError);
|
|
|
|
// 3. If ! IsValidEpochNanoseconds(epochNanoseconds) is false,
|
|
// throw a RangeError exception.
|
|
assertThrows(() => {let inst = new Temporal.Instant(8640000000000000000001n)},
|
|
RangeError);
|
|
assertThrows(() => {let inst = new Temporal.Instant(-8640000000000000000001n)},
|
|
RangeError);
|
|
assertEquals(8640000000000000000000n,
|
|
(new Temporal.Instant(8640000000000000000000n)).epochNanoseconds);
|
|
assertEquals(-8640000000000000000000n,
|
|
(new Temporal.Instant(-8640000000000000000000n)).epochNanoseconds);
|