Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
test262
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pmaksimo
test262
Commits
cab89848
Commit
cab89848
authored
7 years ago
by
Andrew Paprocki
Browse files
Options
Downloads
Patches
Plain Diff
Date.parse: Test maximum time value range per spec.
parent
9db5005a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/built-ins/Date/parse/time-value-maximum-range.js
+41
-0
41 additions, 0 deletions
test/built-ins/Date/parse/time-value-maximum-range.js
with
41 additions
and
0 deletions
test/built-ins/Date/parse/time-value-maximum-range.js
0 → 100644
+
41
−
0
View file @
cab89848
// Copyright (C) 2018 Andrew Paprocki. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.parse
es6id: 20.3.3.2
description: >
Date.parse return value is limited to specified time value maximum range
info: |
Date.parse ( string )
parse interprets the resulting String as a date and time; it returns a
Number, the UTC time value corresponding to the date and time.
A Date object contains a Number indicating a particular instant in time to
within a millisecond. Such a Number is called a time value.
The actual range of times supported by ECMAScript Date objects is slightly
smaller: exactly -100,000,000 days to 100,000,000 days measured relative to
midnight at the beginning of 01 January, 1970 UTC. This gives a range of
8,640,000,000,000,000 milliseconds to either side of 01 January, 1970 UTC.
includes: [propertyHelper.js]
---*/
const
minDateStr
=
"
-271821-04-20T00:00:00.000Z
"
;
const
minDate
=
new
Date
(
-
8640000000000000
);
assert
.
sameValue
(
minDate
.
toISOString
(),
minDateStr
,
"
minDateStr
"
);
assert
.
sameValue
(
Date
.
parse
(
minDateStr
),
minDate
.
valueOf
(),
"
parse minDateStr
"
);
const
maxDateStr
=
"
+275760-09-13T00:00:00.000Z
"
;
const
maxDate
=
new
Date
(
8640000000000000
);
assert
.
sameValue
(
maxDate
.
toISOString
(),
maxDateStr
,
"
maxDateStr
"
);
assert
.
sameValue
(
Date
.
parse
(
maxDateStr
),
maxDate
.
valueOf
(),
"
parse maxDateStr
"
);
const
belowRange
=
"
-271821-04-19T23:59:59.999Z
"
;
const
aboveRange
=
"
+275760-09-13T00:00:00.001Z
"
;
assert
.
sameValue
(
Date
.
parse
(
belowRange
),
NaN
,
"
parse below minimum time value
"
);
assert
.
sameValue
(
Date
.
parse
(
aboveRange
),
NaN
,
"
parse above maximum time value
"
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment