Skip to content

Commit 7dc1172

Browse files
jeffreyameyerclaude
andcommitted
Expand L2 test vectors with seasons and decades
Adds 10 new rows to level2.tsv covering extended season codes and the three-digit decade notation: - Extended seasons: 2020-25, 2020-30, 2020-37, 2020-40, 2020-41 (one from each grouping in edtf.js's season min/max tables: hemispheric variant, quadrimester, and half-year). - Decades: 199, 202, -005 plus the three qualifier variants 199?, 199~, 199%. Consecutive ranges ({start..end}) are deliberately excluded from the generated vector set because edtf.js and this port disagree on the list max bound (edtf.js returns start.max while we return end.max, which we consider the correct interpretation of the range). The round-trip behaviour is still exercised by targeted unit tests in L2ParserTest. Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 958d209 commit 7dc1172

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

scripts/generate-vectors.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ const LEVEL2 = [
4848
'[2020, 2021]', '[2020, 2021, 2023]', '[..2020]', '[2020..]',
4949
// Lists (curly braces)
5050
'{2020, 2021}', '{2020}',
51+
// Extended seasons (L2S codes 25-41)
52+
'2020-25', '2020-30', '2020-37', '2020-40', '2020-41',
53+
// Decades (standalone 3-digit)
54+
'199', '202', '-005', '199?', '199~', '199%',
5155
];
5256

5357
const LEVEL1 = [

src/test/resources/vectors/level2.tsv

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,14 @@ input type level min max edtf
1010
[2020..] Set 2 1577836800000 Infinity [2020..]
1111
{2020, 2021} List 2 1577836800000 1640995199999 {2020,2021}
1212
{2020} List 2 1577836800000 1609459199999 {2020}
13+
2020-25 Season 2 1577836800000 1585699199999 2020-25
14+
2020-30 Season 2 1593561600000 1601510399999 2020-30
15+
2020-37 Season 2 1577836800000 1590969599999 2020-37
16+
2020-40 Season 2 1577836800000 1593561599999 2020-40
17+
2020-41 Season 2 1593561600000 1609459199999 2020-41
18+
199 Decade 2 631152000000 946684799999 199
19+
202 Decade 2 1577836800000 1893455999999 202
20+
-005 Decade 2 -63745056000000 -63429523200001 -005
21+
199? Decade 2 631152000000 946684799999 199?
22+
199~ Decade 2 631152000000 946684799999 199~
23+
199% Decade 2 631152000000 946684799999 199%

0 commit comments

Comments
 (0)