mirror of
https://github.com/tc39/test262.git
synced 2025-05-16 21:00:36 +02:00
The millisecond representation of a given Date instance is dependent on the local system's time zone settings. In order to pass consistently across contexts, tests for this value must take the system configuration into account. Introduce a test harness utility function to encapsulate these concerns. Re-use this function across all test files that assert the exact millisecond representation of Date instances.
81 lines
2.2 KiB
JavaScript
81 lines
2.2 KiB
JavaScript
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
description: >
|
|
Only passes when the provided date is exactly the specified number of
|
|
milliseconds from the Unix epoch
|
|
includes: [assertRelativeDateMs.js]
|
|
---*/
|
|
|
|
var thrown;
|
|
|
|
assertRelativeDateMs(new Date(1970, 0), 0);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, 0, 0, 0), 0);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, 0, 0, 1), 1);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, 0, 0, -1), -1);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, 0, 1, 0), 1000);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, 0, -1, 0), -1000);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, 2, 0, 0), 120000);
|
|
assertRelativeDateMs(new Date(1970, 0, 1, 0, -2, 0, 0), -120000);
|
|
assertRelativeDateMs(new Date(2016, 3, 12, 13, 21, 23, 24), 1460467283024);
|
|
|
|
thrown = null;
|
|
try {
|
|
assertRelativeDateMs(new Date(1), 0);
|
|
} catch (err) {
|
|
thrown = err;
|
|
}
|
|
if (!thrown) {
|
|
$ERROR('Expected error, but no error was thrown.');
|
|
} else if (thrown.constructor !== Test262Error) {
|
|
$ERROR('Expected error of type Test262Error.');
|
|
}
|
|
|
|
thrown = null;
|
|
try {
|
|
assertRelativeDateMs(new Date(-1), 0);
|
|
} catch (err) {
|
|
thrown = err;
|
|
}
|
|
if (!thrown) {
|
|
$ERROR('Expected error, but no error was thrown.');
|
|
} else if (thrown.constructor !== Test262Error) {
|
|
$ERROR('Expected error of type Test262Error.');
|
|
}
|
|
|
|
thrown = null;
|
|
try {
|
|
assertRelativeDateMs(new Date(1970, 0), 1);
|
|
} catch (err) {
|
|
thrown = err;
|
|
}
|
|
if (!thrown) {
|
|
$ERROR('Expected error, but no error was thrown.');
|
|
} else if (thrown.constructor !== Test262Error) {
|
|
$ERROR('Expected error of type Test262Error.');
|
|
}
|
|
|
|
thrown = null;
|
|
try {
|
|
assertRelativeDateMs(new Date(1970, 0), -1);
|
|
} catch (err) {
|
|
thrown = err;
|
|
}
|
|
if (!thrown) {
|
|
$ERROR('Expected error, but no error was thrown.');
|
|
} else if (thrown.constructor !== Test262Error) {
|
|
$ERROR('Expected error of type Test262Error.');
|
|
}
|
|
|
|
thrown = null;
|
|
try {
|
|
assertRelativeDateMs(new Date('invalid'), NaN);
|
|
} catch (err) {
|
|
thrown = err;
|
|
}
|
|
if (!thrown) {
|
|
$ERROR('Expected error, but no error was thrown.');
|
|
} else if (thrown.constructor !== Test262Error) {
|
|
$ERROR('Expected error of type Test262Error.');
|
|
}
|