Test PlainDate.from with various strings.

This commit is contained in:
Ms2ger 2022-01-19 16:40:07 +01:00 committed by Rick Waldron
parent 6f689c6c19
commit 4ec469c68c
1 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,40 @@
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plaindate.from
description: various interesting string arguments.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const tests = [
["1976-11-18", 1976, 11, "M11", 18],
["2019-06-30", 2019, 6, "M06", 30],
["+000050-06-30", 50, 6, "M06", 30],
["+010583-06-30", 10583, 6, "M06", 30],
["-010583-06-30", -10583, 6, "M06", 30],
["-000333-06-30", -333, 6, "M06", 30],
["19761118", 1976, 11, "M11", 18],
["+0019761118", 1976, 11, "M11", 18],
["1976-11-18T152330.1+00:00", 1976, 11, "M11", 18],
["19761118T15:23:30.1+00:00", 1976, 11, "M11", 18],
["1976-11-18T15:23:30.1+0000", 1976, 11, "M11", 18],
["1976-11-18T152330.1+0000", 1976, 11, "M11", 18],
["19761118T15:23:30.1+0000", 1976, 11, "M11", 18],
["19761118T152330.1+00:00", 1976, 11, "M11", 18],
["19761118T152330.1+0000", 1976, 11, "M11", 18],
["+001976-11-18T152330.1+00:00", 1976, 11, "M11", 18],
["+0019761118T15:23:30.1+00:00", 1976, 11, "M11", 18],
["+001976-11-18T15:23:30.1+0000", 1976, 11, "M11", 18],
["+001976-11-18T152330.1+0000", 1976, 11, "M11", 18],
["+0019761118T15:23:30.1+0000", 1976, 11, "M11", 18],
["+0019761118T152330.1+00:00", 1976, 11, "M11", 18],
["+0019761118T152330.1+0000", 1976, 11, "M11", 18],
["2020-01-01[Asia/Kolkata]", 2020, 1, "M01", 1],
];
for (const [input, ...expected] of tests) {
const result = Temporal.PlainDate.from(input);
TemporalHelpers.assertPlainDate(result, ...expected, `from(${input})`);
}