Reorganize tests for PlainYearMonth#{since,until} largestUnit option.

This commit is contained in:
Ms2ger 2022-02-02 15:19:59 +01:00 committed by Rick Waldron
parent 4f20476e0a
commit d71cf3a339
13 changed files with 138 additions and 69 deletions

View File

@ -1,20 +0,0 @@
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.since
description: Basic calls to PYM.since.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const feb20 = new Temporal.PlainYearMonth(2020, 2);
const feb21 = new Temporal.PlainYearMonth(2021, 2);
const oneYear = Temporal.Duration.from('P1Y');
const twelveMonths = Temporal.Duration.from('P12M');
TemporalHelpers.assertDurationsEqual(feb21.since(feb20), oneYear, 'Returns year by default');
TemporalHelpers.assertDurationsEqual(feb21.since(feb20, { largestUnit: 'auto' }), oneYear, 'Returns year by default');
TemporalHelpers.assertDurationsEqual(feb21.since(feb20, { largestUnit: 'years' }), oneYear, 'Returns year explicitly');
TemporalHelpers.assertDurationsEqual(feb21.since(feb20, { largestUnit: 'months' }), twelveMonths, 'Returns months when requested.');

View File

@ -0,0 +1,17 @@
// 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.plainyearmonth.prototype.since
description: auto value for largestUnit option
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
TemporalHelpers.assertDuration(later.since(earlier, { largestUnit: "auto" }),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "auto largestUnit is year (pos)");
TemporalHelpers.assertDuration(earlier.since(later, { largestUnit: "auto" }),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "auto largestUnit is year (neg)");

View File

@ -0,0 +1,17 @@
// 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.plainyearmonth.prototype.since
description: months value for largestUnit option
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
TemporalHelpers.assertDuration(later.since(earlier, { largestUnit: "months" }),
0, 13, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is months (pos)");
TemporalHelpers.assertDuration(earlier.since(later, { largestUnit: "months" }),
0, -13, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is months (neg)");

View File

@ -11,7 +11,12 @@ features: [Temporal]
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
const explicit = later.since(earlier, { largestUnit: undefined });
TemporalHelpers.assertDuration(explicit, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year");
const implicit = later.since(earlier, {});
TemporalHelpers.assertDuration(implicit, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year");
TemporalHelpers.assertDuration(later.since(earlier, { largestUnit: undefined }),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, pos)");
TemporalHelpers.assertDuration(earlier.since(later, { largestUnit: undefined }),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, neg)");
TemporalHelpers.assertDuration(later.since(earlier, {}),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, pos)");
TemporalHelpers.assertDuration(earlier.since(later, {}),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, neg)");

View File

@ -0,0 +1,17 @@
// 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.plainyearmonth.prototype.since
description: years value for largestUnit option
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
TemporalHelpers.assertDuration(later.since(earlier, { largestUnit: "years" }),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is years (pos)");
TemporalHelpers.assertDuration(earlier.since(later, { largestUnit: "years" }),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is years (neg)");

View File

@ -1,14 +0,0 @@
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.since
description: Specify behavior of PlainYearMonth.since when largest specified unit is years or months.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const nov2020 = new Temporal.PlainYearMonth(2020, 11);
const dec2021 = new Temporal.PlainYearMonth(2021, 12);
TemporalHelpers.assertDuration(dec2021.since(nov2020), 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'does not include higher units than necessary (largest unit unspecified)');
TemporalHelpers.assertDuration(dec2021.since(nov2020, { largestUnit: 'years' }), 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'does not include higher units than necessary (largest unit is years)');
TemporalHelpers.assertDuration(dec2021.since(nov2020, { largestUnit: 'months' }), 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 'does not include higher units than necessary (largest unit is months)');

View File

@ -1,15 +0,0 @@
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-temporal.plainyearmonth.prototype.since
description: Since returns negative and positive values
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const nov94 = new Temporal.PlainYearMonth(1994, 11);
const jun13 = new Temporal.PlainYearMonth(2013, 6);
const diff = jun13.since(nov94);
TemporalHelpers.assertDurationsEqual(nov94.since(jun13), diff.negated(), 'Since is inverse of until');

View File

@ -4,16 +4,19 @@
/*---
esid: sec-temporal.plainyearmonth.prototype.since
description: Verify that undefined options are handled correctly.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2002, 12);
const explicit = later.since(earlier, undefined);
assert.sameValue(explicit.years, 2, "default largest unit is years");
assert.sameValue(explicit.months, 7, "default smallest unit is months and rounding is none");
TemporalHelpers.assertDuration(later.since(earlier, undefined),
2, 7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, pos)");
TemporalHelpers.assertDuration(earlier.since(later, undefined),
-2, -7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, neg)");
const implicit = later.since(earlier);
assert.sameValue(implicit.years, 2, "default largest unit is years");
assert.sameValue(implicit.months, 7, "default smallest unit is months and rounding is none");
TemporalHelpers.assertDuration(later.since(earlier),
2, 7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, pos)");
TemporalHelpers.assertDuration(earlier.since(later),
-2, -7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, neg)");

View File

@ -0,0 +1,17 @@
// 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.plainyearmonth.prototype.until
description: auto value for largestUnit option
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
TemporalHelpers.assertDuration(earlier.until(later, { largestUnit: "auto" }),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "auto largestUnit is year (pos)");
TemporalHelpers.assertDuration(later.until(earlier, { largestUnit: "auto" }),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "auto largestUnit is year (neg)");

View File

@ -0,0 +1,17 @@
// 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.plainyearmonth.prototype.until
description: months value for largestUnit option
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
TemporalHelpers.assertDuration(earlier.until(later, { largestUnit: "months" }),
0, 13, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is months (pos)");
TemporalHelpers.assertDuration(later.until(earlier, { largestUnit: "months" }),
0, -13, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is months (neg)");

View File

@ -11,7 +11,12 @@ features: [Temporal]
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
const explicit = earlier.until(later, { largestUnit: undefined });
TemporalHelpers.assertDuration(explicit, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year");
const implicit = earlier.until(later, {});
TemporalHelpers.assertDuration(implicit, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year");
TemporalHelpers.assertDuration(earlier.until(later, { largestUnit: undefined }),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, pos)");
TemporalHelpers.assertDuration(later.until(earlier, { largestUnit: undefined }),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, neg)");
TemporalHelpers.assertDuration(earlier.until(later, {}),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, pos)");
TemporalHelpers.assertDuration(later.until(earlier, {}),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, neg)");

View File

@ -0,0 +1,17 @@
// 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.plainyearmonth.prototype.until
description: years value for largestUnit option
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2001, 6);
TemporalHelpers.assertDuration(earlier.until(later, { largestUnit: "years" }),
1, 1, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is years (pos)");
TemporalHelpers.assertDuration(later.until(earlier, { largestUnit: "years" }),
-1, -1, 0, 0, 0, 0, 0, 0, 0, 0, "largestUnit is years (neg)");

View File

@ -4,16 +4,19 @@
/*---
esid: sec-temporal.plainyearmonth.prototype.until
description: Verify that undefined options are handled correctly.
includes: [temporalHelpers.js]
features: [Temporal]
---*/
const earlier = new Temporal.PlainYearMonth(2000, 5);
const later = new Temporal.PlainYearMonth(2002, 12);
const explicit = earlier.until(later, undefined);
assert.sameValue(explicit.years, 2, "default largest unit is years");
assert.sameValue(explicit.months, 7, "default smallest unit is months and rounding is none");
TemporalHelpers.assertDuration(earlier.until(later, undefined),
2, 7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, pos)");
TemporalHelpers.assertDuration(later.until(earlier, undefined),
-2, -7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (explicit, neg)");
const implicit = earlier.until(later);
assert.sameValue(implicit.years, 2, "default largest unit is years");
assert.sameValue(implicit.months, 7, "default smallest unit is months and rounding is none");
TemporalHelpers.assertDuration(earlier.until(later),
2, 7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, pos)");
TemporalHelpers.assertDuration(later.until(earlier),
-2, -7, 0, 0, 0, 0, 0, 0, 0, 0, "default largestUnit is year (implicit, neg)");