summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2023-03-28 15:48:18 -0400
committerJulian Berman <Julian@GrayVines.com>2023-03-28 15:48:18 -0400
commitc8c0bdd52999e4e1a6a38ceca814d0943f3e7962 (patch)
treec1be4a4caaed45f05e357050dc1ca484cae5b791
parent5e16d74500493ef164b595daec622c4ba199644e (diff)
downloadjsonschema-c8c0bdd52999e4e1a6a38ceca814d0943f3e7962.tar.gz
Squashed 'json/' changes from 19947eaa1..0788c226a
0788c226a Merge pull request #659 from jvtm/python311-date-iso8601-values 4248f3c73 test: cover ISO8601 date values accepted by Python 3.11 datetime module git-subtree-dir: json git-subtree-split: 0788c226aa30f5e8fa862f4aa80e59a0f5186597
-rw-r--r--tests/draft-next/optional/format/date.json20
-rw-r--r--tests/draft2019-09/optional/format/date.json20
-rw-r--r--tests/draft2020-12/optional/format/date.json20
-rw-r--r--tests/draft7/optional/format/date.json20
4 files changed, 80 insertions, 0 deletions
diff --git a/tests/draft-next/optional/format/date.json b/tests/draft-next/optional/format/date.json
index 75c6146..aa55555 100644
--- a/tests/draft-next/optional/format/date.json
+++ b/tests/draft-next/optional/format/date.json
@@ -220,6 +220,26 @@
"description": "invalid non-ASCII '৪' (a Bengali 4)",
"data": "1963-06-1৪",
"valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: YYYYMMDD without dashes (2023-03-28)",
+ "data": "20230328",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number implicit day of week (2023-01-02)",
+ "data": "2023-W01",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number with day of week (2023-03-28)",
+ "data": "2023-W13-2",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number rollover to next year (2023-01-01)",
+ "data": "2022W527",
+ "valid": false
}
]
}
diff --git a/tests/draft2019-09/optional/format/date.json b/tests/draft2019-09/optional/format/date.json
index 64dbefb..805888c 100644
--- a/tests/draft2019-09/optional/format/date.json
+++ b/tests/draft2019-09/optional/format/date.json
@@ -220,6 +220,26 @@
"description": "invalid non-ASCII '৪' (a Bengali 4)",
"data": "1963-06-1৪",
"valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: YYYYMMDD without dashes (2023-03-28)",
+ "data": "20230328",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number implicit day of week (2023-01-02)",
+ "data": "2023-W01",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number with day of week (2023-03-28)",
+ "data": "2023-W13-2",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number rollover to next year (2023-01-01)",
+ "data": "2022W527",
+ "valid": false
}
]
}
diff --git a/tests/draft2020-12/optional/format/date.json b/tests/draft2020-12/optional/format/date.json
index 7b89329..dfb1c80 100644
--- a/tests/draft2020-12/optional/format/date.json
+++ b/tests/draft2020-12/optional/format/date.json
@@ -220,6 +220,26 @@
"description": "invalid non-ASCII '৪' (a Bengali 4)",
"data": "1963-06-1৪",
"valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: YYYYMMDD without dashes (2023-03-28)",
+ "data": "20230328",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number implicit day of week (2023-01-02)",
+ "data": "2023-W01",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number with day of week (2023-03-28)",
+ "data": "2023-W13-2",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number rollover to next year (2023-01-01)",
+ "data": "2022W527",
+ "valid": false
}
]
}
diff --git a/tests/draft7/optional/format/date.json b/tests/draft7/optional/format/date.json
index 06c9ea0..d723124 100644
--- a/tests/draft7/optional/format/date.json
+++ b/tests/draft7/optional/format/date.json
@@ -217,6 +217,26 @@
"description": "invalid non-ASCII '৪' (a Bengali 4)",
"data": "1963-06-1৪",
"valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: YYYYMMDD without dashes (2023-03-28)",
+ "data": "20230328",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number implicit day of week (2023-01-02)",
+ "data": "2023-W01",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number with day of week (2023-03-28)",
+ "data": "2023-W13-2",
+ "valid": false
+ },
+ {
+ "description": "ISO8601 / non-RFC3339: week number rollover to next year (2023-01-01)",
+ "data": "2022W527",
+ "valid": false
}
]
}