whichtime-sys 0.1.0

Lower-level parsing engine for natural language date parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
//! Japanese locale tests for whichtime-sys
//!
//! Comprehensive tests ported from the original whichtime crate

use chrono::{Local, TimeZone};
use whichtime_sys::{Component, Locale, Meridiem, ParsedResult, Weekday, WhichTime};

// =============================================================================
// Test utilities
// =============================================================================

fn create_ref(
    year: i32,
    month: u32,
    day: u32,
    hour: u32,
    minute: u32,
    second: u32,
) -> chrono::DateTime<Local> {
    Local
        .with_ymd_and_hms(year, month, day, hour, minute, second)
        .single()
        .expect("Invalid date")
}

fn assert_component(result: &ParsedResult, component: Component, expected: Option<i32>) {
    let actual = result.start.get(component);
    assert_eq!(
        actual, expected,
        "Component {:?} mismatch in '{}': expected {:?}, got {:?}",
        component, result.text, expected, actual
    );
}

fn test_single_case<F>(
    parser: &WhichTime,
    text: &str,
    reference: Option<chrono::DateTime<Local>>,
    check: F,
) where
    F: FnOnce(&ParsedResult),
{
    let results = parser
        .parse(text, reference)
        .expect("Parsing should succeed");
    assert!(
        !results.is_empty(),
        "Expected at least one result from '{}', got none",
        text
    );
    check(&results[0]);
}

fn test_no_result(parser: &WhichTime, text: &str, reference: Option<chrono::DateTime<Local>>) {
    let results = parser
        .parse(text, reference)
        .expect("Parsing should succeed");
    assert!(
        results.is_empty(),
        "Expected no results from '{}', but got {} results",
        text,
        results.len()
    );
}

fn parser() -> WhichTime {
    WhichTime::with_locale(Locale::Ja)
}

// =============================================================================
// Tests from ja_casual.test.ts
// =============================================================================

#[test]
fn test_casual_kyou_today() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "今日感じたことを忘れずに",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "今日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(10));
        },
    );
}

#[test]
fn test_casual_kyou_hiragana() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "きょう感じたことを忘れずに",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "きょう");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(10));
        },
    );
}

#[test]
fn test_casual_honjitsu() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "本日はお日柄もよく", Some(ref_date), |r| {
        assert_eq!(r.text, "本日");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(10));
    });
}

#[test]
fn test_casual_kinou_yesterday() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "昨日の全国観測値ランキング",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "昨日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(9));
        },
    );
}

#[test]
fn test_casual_kinou_hiragana() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "きのうの全国観測値ランキング",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "きのう");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(9));
        },
    );
}

#[test]
fn test_casual_ashita_tomorrow() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "明日の天気は晴れです", Some(ref_date), |r| {
        assert_eq!(r.text, "明日");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(11));
    });
}

#[test]
fn test_casual_ashita_hiragana() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "あしたの天気は晴れです",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "あした");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(11));
        },
    );
}

#[test]
fn test_casual_konya_tonight() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "今夜には雨が降るでしょう",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "今夜");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(10));
            assert_component(r, Component::Hour, Some(22));
        },
    );
}

#[test]
fn test_casual_konban_tonight() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "今晩には雨が降るでしょう",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "今晩");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(10));
            assert_component(r, Component::Hour, Some(22));
        },
    );
}

#[test]
fn test_casual_kesa_morning() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "今朝食べたパンは美味しかった",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "今朝");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(8));
            assert_component(r, Component::Day, Some(10));
            assert_component(r, Component::Hour, Some(6));
        },
    );
}

// =============================================================================
// Tests from ja_slash_date_format.test.ts
// =============================================================================

#[test]
fn test_slash_date_full() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "2012/3/31", Some(ref_date), |r| {
        assert_eq!(r.text, "2012/3/31");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(3));
        assert_component(r, Component::Day, Some(31));
    });
}

#[test]
fn test_slash_date_month_day() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "12/31", Some(ref_date), |r| {
        assert_eq!(r.text, "12/31");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(12));
        assert_component(r, Component::Day, Some(31));
    });
}

#[test]
fn test_slash_date_short() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "8/5", Some(ref_date), |r| {
        assert_eq!(r.text, "8/5");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(5));
    });
}

#[test]
fn test_slash_date_range() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "2013/12/26~2014/1/7", Some(ref_date), |r| {
        assert_eq!(r.text, "2013/12/26~2014/1/7");
        assert_component(r, Component::Year, Some(2013));
        assert_component(r, Component::Month, Some(12));
        assert_component(r, Component::Day, Some(26));
        if let Some(end) = &r.end {
            assert_eq!(end.get(Component::Year), Some(2014));
            assert_eq!(end.get(Component::Month), Some(1));
            assert_eq!(end.get(Component::Day), Some(7));
        }
    });
}

// =============================================================================
// Tests from ja_standard.test.ts
// =============================================================================

#[test]
fn test_standard_full_date() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(2012年3月31日現在)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "2012年3月31日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(3));
            assert_component(r, Component::Day, Some(31));
        },
    );
}

#[test]
fn test_standard_full_width_month() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(2012年9月3日現在)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "2012年9月3日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(9));
            assert_component(r, Component::Day, Some(3));
        },
    );
}

#[test]
fn test_standard_leap_year() {
    let p = parser();
    let ref_date = create_ref(2019, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(2020年2月29日現在)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "2020年2月29日");
            assert_component(r, Component::Year, Some(2020));
            assert_component(r, Component::Month, Some(2));
            assert_component(r, Component::Day, Some(29));
        },
    );
}

#[test]
fn test_standard_month_day_only() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(9月3日現在)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "9月3日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(9));
            assert_component(r, Component::Day, Some(3));
        },
    );
}

#[test]
fn test_standard_heisei_era() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(平成26年12月29日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "平成26年12月29日");
            assert_component(r, Component::Year, Some(2014));
            assert_component(r, Component::Month, Some(12));
            assert_component(r, Component::Day, Some(29));
        },
    );
}

#[test]
fn test_standard_showa_era() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(昭和64年1月7日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "昭和64年1月7日");
            assert_component(r, Component::Year, Some(1989));
            assert_component(r, Component::Month, Some(1));
            assert_component(r, Component::Day, Some(7));
        },
    );
}

#[test]
fn test_standard_reiwa_gannen() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(令和元年5月1日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "令和元年5月1日");
            assert_component(r, Component::Year, Some(2019));
            assert_component(r, Component::Month, Some(5));
            assert_component(r, Component::Day, Some(1));
        },
    );
}

#[test]
fn test_standard_reiwa_2() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(令和2年5月1日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "令和2年5月1日");
            assert_component(r, Component::Year, Some(2020));
            assert_component(r, Component::Month, Some(5));
            assert_component(r, Component::Day, Some(1));
        },
    );
}

#[test]
fn test_standard_dounen_same_year() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(同年7月27日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "同年7月27日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(7));
            assert_component(r, Component::Day, Some(27));
        },
    );
}

#[test]
fn test_standard_honnen_this_year() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(本年7月27日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "本年7月27日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(7));
            assert_component(r, Component::Day, Some(27));
        },
    );
}

#[test]
fn test_standard_kotoshi_this_year() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "主な株主(今年7月27日)",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "今年7月27日");
            assert_component(r, Component::Year, Some(2012));
            assert_component(r, Component::Month, Some(7));
            assert_component(r, Component::Day, Some(27));
        },
    );
}

#[test]
fn test_standard_month_day_without_year() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "7月27日", Some(ref_date), |r| {
        assert_eq!(r.text, "7月27日");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(7));
        assert_component(r, Component::Day, Some(27));
    });
}

#[test]
fn test_standard_date_range() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "2013年12月26日-2014年1月7日",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "2013年12月26日-2014年1月7日");
            assert_component(r, Component::Year, Some(2013));
            assert_component(r, Component::Month, Some(12));
            assert_component(r, Component::Day, Some(26));
            if let Some(end) = &r.end {
                assert_eq!(end.get(Component::Year), Some(2014));
                assert_eq!(end.get(Component::Month), Some(1));
                assert_eq!(end.get(Component::Day), Some(7));
            }
        },
    );
}

// =============================================================================
// Tests from ja_time_exp.test.ts
// =============================================================================

#[test]
fn test_time_gozen_am() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "私は午前6時13分に起きた",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "午前6時13分");
            assert_component(r, Component::Hour, Some(6));
            assert_component(r, Component::Minute, Some(13));
        },
    );
}

#[test]
fn test_time_gozen_8_ji() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "私は午前8時に起きる", Some(ref_date), |r| {
        assert_eq!(r.text, "午前8時");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(10));
        assert_component(r, Component::Hour, Some(8));
    });
}

#[test]
fn test_time_gogo_pm() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "午後8時", Some(ref_date), |r| {
        assert_eq!(r.text, "午後8時");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(10));
        assert_component(r, Component::Hour, Some(20));
    });
}

#[test]
fn test_time_range() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "私は本日午前八時十分から午後11時32分までゲームをした",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "本日午前八時十分から午後11時32分");
            assert_component(r, Component::Hour, Some(8));
            assert_component(r, Component::Minute, Some(10));
            if let Some(end) = &r.end {
                assert_eq!(end.get(Component::Hour), Some(23));
                assert_eq!(end.get(Component::Minute), Some(32));
            }
        },
    );
}

#[test]
fn test_time_range_pm() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "6時30分PM-11時PM", Some(ref_date), |r| {
        assert_eq!(r.text, "6時30分PM-11時PM");
        assert_component(r, Component::Hour, Some(18));
        assert_component(r, Component::Minute, Some(30));
        assert_eq!(r.start.get(Component::Meridiem), Some(Meridiem::PM as i32));
        if let Some(end) = &r.end {
            assert_eq!(end.get(Component::Hour), Some(23));
            assert_eq!(end.get(Component::Minute), Some(0));
            assert_eq!(end.get(Component::Meridiem), Some(Meridiem::PM as i32));
        }
    });
}

#[test]
fn test_time_date_time_combined() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(
        &p,
        "僕は2018年11月26日午後三時半五十九秒にゲームを始めた",
        Some(ref_date),
        |r| {
            assert_eq!(r.text, "2018年11月26日午後三時半五十九秒");
            assert_component(r, Component::Year, Some(2018));
            assert_component(r, Component::Month, Some(11));
            assert_component(r, Component::Day, Some(26));
            assert_component(r, Component::Hour, Some(15));
            assert_component(r, Component::Minute, Some(30));
            assert_component(r, Component::Second, Some(59));
        },
    );
}

#[test]
fn test_time_meridiem_imply() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "午後1時30分から3時10分", Some(ref_date), |r| {
        assert_component(r, Component::Hour, Some(13));
        assert_component(r, Component::Minute, Some(30));
        assert_eq!(r.start.get(Component::Meridiem), Some(Meridiem::PM as i32));
        if let Some(end) = &r.end {
            assert_eq!(end.get(Component::Hour), Some(15));
            assert_eq!(end.get(Component::Minute), Some(10));
            assert_eq!(end.get(Component::Meridiem), Some(Meridiem::PM as i32));
        }
    });
}

#[test]
fn test_time_incorrect() {
    let p = parser();
    test_no_result(&p, "午後13時", None);
    test_no_result(&p, "25時", None);
    test_no_result(&p, "5時70分", None);
    test_no_result(&p, "5時30分65秒", None);
    test_no_result(&p, "23時-25時", None);
}

#[test]
fn test_non_time() {
    let p = parser();
    test_no_result(&p, "1", None);
    test_no_result(&p, "12", None);
    test_no_result(&p, "12a", None);
    test_no_result(&p, "1時間", None);
    test_no_result(&p, "25時間", None);
}

// =============================================================================
// Tests from ja_weekday.test.ts
// =============================================================================

#[test]
fn test_weekday_mokuyoubi_thursday() {
    let p = parser();
    let ref_date = create_ref(2016, 9, 2, 12, 0, 0);
    test_single_case(&p, "木曜日", Some(ref_date), |r| {
        assert_eq!(r.text, "木曜日");
        assert_component(r, Component::Year, Some(2016));
        assert_component(r, Component::Month, Some(9));
        assert_component(r, Component::Day, Some(1));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Thursday as i32)
        );
    });
}

#[test]
fn test_weekday_mae_no_suiyoubi() {
    let p = parser();
    let ref_date = create_ref(2016, 9, 2, 12, 0, 0);
    test_single_case(&p, "前の水曜日", Some(ref_date), |r| {
        assert_eq!(r.text, "前の水曜日");
        assert_component(r, Component::Year, Some(2016));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(31));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Wednesday as i32)
        );
    });
}

#[test]
fn test_weekday_parentheses() {
    let p = parser();
    let ref_date = create_ref(2016, 9, 2, 12, 0, 0);
    test_single_case(&p, "(木)", Some(ref_date), |r| {
        assert_eq!(r.text, "(木)");
        assert_component(r, Component::Year, Some(2016));
        assert_component(r, Component::Month, Some(9));
        assert_component(r, Component::Day, Some(1));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Thursday as i32)
        );
    });
}

#[test]
fn test_weekday_fullwidth_parentheses() {
    let p = parser();
    let ref_date = create_ref(2016, 9, 2, 12, 0, 0);
    test_single_case(&p, "(木)", Some(ref_date), |r| {
        assert_eq!(r.text, "(木)");
        assert_component(r, Component::Year, Some(2016));
        assert_component(r, Component::Month, Some(9));
        assert_component(r, Component::Day, Some(1));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Thursday as i32)
        );
    });
}

#[test]
fn test_weekday_merge_date() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "8月27日水曜日", Some(ref_date), |r| {
        assert_eq!(r.text, "8月27日水曜日");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(27));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Wednesday as i32)
        );
    });
}

#[test]
fn test_weekday_merge_date_parentheses() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "8月27日(水)", Some(ref_date), |r| {
        assert_eq!(r.text, "8月27日(水)");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(27));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Wednesday as i32)
        );
    });
}

#[test]
fn test_weekday_slash_format() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "2012/8/27(水)", Some(ref_date), |r| {
        assert_eq!(r.text, "2012/8/27(水)");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(27));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Wednesday as i32)
        );
    });
}

#[test]
fn test_ashita_no_shogo() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "明日の正午", Some(ref_date), |r| {
        assert_eq!(r.text, "明日の正午");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(11));
        assert_component(r, Component::Hour, Some(12));
        assert_component(r, Component::Minute, Some(0));
    });
}

#[test]
fn test_raishuu_kinyoubi_gogo3ji() {
    let p = parser();
    let ref_date = create_ref(2012, 8, 10, 12, 0, 0);
    test_single_case(&p, "来週の金曜日の午後3時", Some(ref_date), |r| {
        assert_eq!(r.text, "来週の金曜日の午後3時");
        assert_component(r, Component::Year, Some(2012));
        assert_component(r, Component::Month, Some(8));
        assert_component(r, Component::Day, Some(17));
        assert_component(r, Component::Hour, Some(15));
        assert_component(r, Component::Minute, Some(0));
        assert_eq!(
            r.start.get(Component::Weekday),
            Some(Weekday::Friday as i32)
        );
    });
}