Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorRay Wang <ray@isrc.iscas.ac.cn>2021-11-21 09:21:56 +0300
committerMichaël Zasso <targos@protonmail.com>2021-11-21 18:06:10 +0300
commitd482382d168db108f8510d7772986177fe32a695 (patch)
treee539e07d382c7170a8349e172494b765f48860b3 /deps
parent25bc27d1ce58d54d92dcb1179c369474389de8a0 (diff)
deps: V8: cherry-pick cced52a97ee9
Original commit message: [date] Skip leading zeros when parsing date string 1. Skip leading zeros when parsing date string 2. Add necessary unittests Bug: v8:12256 Change-Id: Ibc1f320382a2e33175f7f57542c8fe48afd05fa8 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3223239 Reviewed-by: Shu-yu Guo <syg@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Commit-Queue: Shu-yu Guo <syg@chromium.org> Cr-Commit-Position: refs/heads/main@{#77592} Refs: https://github.com/v8/v8/commit/cced52a97ee954fedd6187abfd042c95a1cce6c6 PR-URL: https://github.com/nodejs/node/pull/40656 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/src/date/dateparser.h3
-rw-r--r--deps/v8/test/mjsunit/regress/regress-12256.js54
2 files changed, 57 insertions, 0 deletions
diff --git a/deps/v8/src/date/dateparser.h b/deps/v8/src/date/dateparser.h
index 9975737c073..1a0a0b15ab7 100644
--- a/deps/v8/src/date/dateparser.h
+++ b/deps/v8/src/date/dateparser.h
@@ -75,6 +75,9 @@ class DateParser : public AllStatic {
int ReadUnsignedNumeral() {
int n = 0;
int i = 0;
+ // First, skip leading zeros
+ while (ch_ == '0') Next();
+ // And then, do the conversion
while (IsAsciiDigit()) {
if (i < kMaxSignificantDigits) n = n * 10 + ch_ - '0';
i++;
diff --git a/deps/v8/test/mjsunit/regress/regress-12256.js b/deps/v8/test/mjsunit/regress/regress-12256.js
new file mode 100644
index 00000000000..e6407c06ed1
--- /dev/null
+++ b/deps/v8/test/mjsunit/regress/regress-12256.js
@@ -0,0 +1,54 @@
+// Copyright 2021 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+const dates = [{ year: '2021', month: '10', day: '22', hour: '10', minute: '12', second: '32' },
+ { year: '2021', month: '8', day: '3', hour: '9', minute: '9', second: '6' }];
+
+for (let date of dates) {
+ const { year, month, day, hour, minute, second } = date;
+ const s0 = `${year}-${month}-${day} ${hour}:${minute}:${second}Z`;
+
+ // V8 reads at most kMaxSignificantDigits (9) to build the value of a numeral,
+ // so let's test up to 9 leading zeros.
+
+ // For years
+ for (let i = 1; i < 10; i++) {
+ const s1 = `${'0'.repeat(i) + year}-${month}-${day} ${hour}:${minute}:${second}Z`;
+ assertTrue(new Date(s0).getTime() == new Date(s1).getTime());
+ }
+
+ // For months
+ for (let i = 1; i < 10; i++) {
+ const s1 = `${year}-${'0'.repeat(i) + month}-${day} ${hour}:${minute}:${second}Z`;
+ assertTrue(new Date(s0).getTime() == new Date(s1).getTime());
+ }
+
+ // For days
+ for (let i = 1; i < 10; i++) {
+ const s1 = `${year}-${month}-${'0'.repeat(i) + day} ${hour}:${minute}:${second}Z`;
+ assertTrue(new Date(s0).getTime() == new Date(s1).getTime());
+ }
+
+ // For hours
+ for (let i = 1; i < 10; i++) {
+ const s1 = `${year}-${month}-${day} ${'0'.repeat(i) + hour}:${minute}:${second}Z`;
+ assertTrue(new Date(s0).getTime() == new Date(s1).getTime());
+ }
+
+ // For minutes
+ for (let i = 1; i < 10; i++) {
+ const s1 = `${year}-${month}-${day} ${hour}:${'0'.repeat(i) + minute}:${second}Z`;
+ assertTrue(new Date(s0).getTime() == new Date(s1).getTime());
+ }
+
+ // For seconds
+ for (let i = 1; i < 10; i++) {
+ const s1 = `${year}-${month}-${day} ${hour}:${minute}:${'0'.repeat(i) + second}Z`;
+ assertTrue(new Date(s0).getTime() == new Date(s1).getTime());
+ }
+
+ // With same input date string,
+ // Date() and Date.parse() should return the same date
+ assertTrue(new Date(s0).getTime() == Date.parse(s0));
+}