mirror of https://github.com/tc39/test262.git
34 lines
1.4 KiB
JavaScript
34 lines
1.4 KiB
JavaScript
// Copyright (C) 2024 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.plaintime.compare
|
|
description: Annotation keys are lowercase-only
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
const invalidStrings = [
|
|
["00:00[U-CA=iso8601]", "invalid capitalized key, time-only"],
|
|
["T00:00[U-CA=iso8601]", "invalid capitalized key, time designator"],
|
|
["1970-01-01T00:00[U-CA=iso8601]", "invalid capitalized key"],
|
|
["00:00[u-CA=iso8601]", "invalid partially-capitalized key, time-only"],
|
|
["T00:00[u-CA=iso8601]", "invalid partially-capitalized key, time designator"],
|
|
["1970-01-01T00:00[u-CA=iso8601]", "invalid partially-capitalized key"],
|
|
["00:00[FOO=bar]", "invalid capitalized unrecognized key, time-only"],
|
|
["T00:00[FOO=bar]", "invalid capitalized unrecognized key, time designator"],
|
|
["1970-01-01T00:00[FOO=bar]", "invalid capitalized unrecognized key"],
|
|
];
|
|
|
|
invalidStrings.forEach(([arg, descr]) => {
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainTime.compare(arg, new Temporal.PlainTime(12, 34, 56, 987, 654, 321)),
|
|
`annotation keys must be lowercase: ${arg} - ${descr} (first argument)`
|
|
);
|
|
assert.throws(
|
|
RangeError,
|
|
() => Temporal.PlainTime.compare(new Temporal.PlainTime(12, 34, 56, 987, 654, 321), arg),
|
|
`annotation keys must be lowercase: ${arg} - ${descr} (second argument)`
|
|
);
|
|
});
|