v8/test/mjsunit/temporal/plain-date-with.js
Frank Tang d61809bb41 [Temporal] Add some tests for PlainDate
Land some of the tests for Temporal.PlainDate
All marked as FAIL at this stage.

Bug: v8:11544
Change-Id: I004b7cb34effe1de1735b61c7ac749ae3c8e9bf7
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3085624
Commit-Queue: Frank Tang <ftang@chromium.org>
Reviewed-by: Shu-yu Guo <syg@chromium.org>
Cr-Commit-Position: refs/heads/main@{#76551}
2021-08-28 05:40:50 +00:00

60 lines
2.6 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
d8.file.execute('test/mjsunit/temporal/temporal-helpers.js');
let d1 = new Temporal.PlainDate(1911, 10, 10);
assertPlainDate(d1.with({year:2021}), 2021, 10, 10);
assertPlainDate(d1.with({month:11}), 1911, 11, 10);
assertPlainDate(d1.with({monthCode:"M05"}), 1911, 5, 10);
assertPlainDate(d1.with({day:30}), 1911, 10, 30);
assertPlainDate(d1.with({year:2021, hour: 30}), 2021, 10, 10);
assertPlainDate(d1.with({month:11, minute: 71}), 1911, 11, 10);
assertPlainDate(d1.with({monthCode:"M05", second: 90}), 1911, 5, 10);
assertPlainDate(d1.with({day:30, era:"BC" }), 1911, 10, 30);
// A simplified version of Republic of China calendar
let rocCal = {
iso8601: new Temporal.Calendar("iso8601"),
get id() {return "roc";},
dateFromFields: function(fields, options) {
fields.year -= 1911;
return this.iso8601.dateFromFields(fields, options);
},
year: function(date) { return this.iso8601.year(date) - 1911; },
month: function(date) { return this.iso8601.month(date); },
monthCode: function(date) { return this.iso8601.monthCode(date); },
day: function(date) { return this.iso8601.day(date); },
};
let d2 = new Temporal.PlainDate(2021, 7, 20, rocCal);
assertPlainDate(d2, 110, 7, 20);
assertPlainDate(d2.with({year: 1912}), 1, 7, 20);
assertPlainDate(d2.with({year: 1987}), 76, 7, 20);
assertThrows(() => d1.with(new Temporal.PlainDate(2021, 7, 1)), TypeError);
assertThrows(() => d1.with(new Temporal.PlainDateTime(2021, 7, 1, 12, 13)), TypeError);
assertThrows(() => d1.with(new Temporal.PlainTime(1, 12, 13)), TypeError);
assertThrows(() => d1.with(new Temporal.PlainYearMonth(1991, 12)), TypeError);
assertThrows(() => d1.with(new Temporal.PlainMonthDay(5, 12)), TypeError);
assertThrows(() => d1.with("2012-05-13"), TypeError);
assertThrows(() => d1.with({calendar: "iso8601"}), TypeError);
assertThrows(() => d1.with({timeZone: "UTC"}), TypeError);
assertThrows(() => d1.with(true), TypeError);
assertThrows(() => d1.with(false), TypeError);
assertThrows(() => d1.with(NaN), TypeError);
assertThrows(() => d1.with(Infinity), TypeError);
assertThrows(() => d1.with(1234), TypeError);
assertThrows(() => d1.with(567n), TypeError);
assertThrows(() => d1.with(Symbol()), TypeError);
assertThrows(() => d1.with("string"), TypeError);
assertThrows(() => d1.with({}), TypeError);
assertThrows(() => d1.with([]), TypeError);
let badDate = { with: d1.with }
assertThrows(() => badDate.with({day: 3}), TypeError);