todoist-cache-rs 0.1.0

Local cache for Todoist data
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
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
//! Tests for the filter parser.

use super::*;

// ==================== Date Keyword Tests ====================

#[test]
fn test_parse_today() {
    let filter = FilterParser::parse("today").unwrap();
    assert_eq!(
        filter,
        Filter::Today,
        "parsing 'today' should produce Filter::Today"
    );
}

#[test]
fn test_parse_today_case_insensitive() {
    assert_eq!(
        FilterParser::parse("TODAY").unwrap(),
        Filter::Today,
        "'TODAY' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("Today").unwrap(),
        Filter::Today,
        "'Today' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("ToDAy").unwrap(),
        Filter::Today,
        "'ToDAy' should be case-insensitive"
    );
}

#[test]
fn test_parse_today_with_whitespace() {
    assert_eq!(
        FilterParser::parse("  today  ").unwrap(),
        Filter::Today,
        "leading/trailing spaces should be trimmed"
    );
    assert_eq!(
        FilterParser::parse("\ttoday\n").unwrap(),
        Filter::Today,
        "tabs and newlines should be trimmed"
    );
}

#[test]
fn test_parse_tomorrow() {
    let filter = FilterParser::parse("tomorrow").unwrap();
    assert_eq!(
        filter,
        Filter::Tomorrow,
        "parsing 'tomorrow' should produce Filter::Tomorrow"
    );
}

#[test]
fn test_parse_tomorrow_case_insensitive() {
    assert_eq!(
        FilterParser::parse("TOMORROW").unwrap(),
        Filter::Tomorrow,
        "'TOMORROW' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("Tomorrow").unwrap(),
        Filter::Tomorrow,
        "'Tomorrow' should be case-insensitive"
    );
}

#[test]
fn test_parse_overdue() {
    let filter = FilterParser::parse("overdue").unwrap();
    assert_eq!(
        filter,
        Filter::Overdue,
        "parsing 'overdue' should produce Filter::Overdue"
    );
}

#[test]
fn test_parse_overdue_case_insensitive() {
    assert_eq!(
        FilterParser::parse("OVERDUE").unwrap(),
        Filter::Overdue,
        "'OVERDUE' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("Overdue").unwrap(),
        Filter::Overdue,
        "'Overdue' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("OverDue").unwrap(),
        Filter::Overdue,
        "'OverDue' should be case-insensitive"
    );
}

#[test]
fn test_parse_no_date() {
    let filter = FilterParser::parse("no date").unwrap();
    assert_eq!(
        filter,
        Filter::NoDate,
        "parsing 'no date' should produce Filter::NoDate"
    );
}

#[test]
fn test_parse_no_date_case_insensitive() {
    assert_eq!(
        FilterParser::parse("NO DATE").unwrap(),
        Filter::NoDate,
        "'NO DATE' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("No Date").unwrap(),
        Filter::NoDate,
        "'No Date' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("no DATE").unwrap(),
        Filter::NoDate,
        "'no DATE' should be case-insensitive"
    );
}

#[test]
fn test_parse_no_date_with_extra_whitespace() {
    // Multiple spaces between "no" and "date"
    assert_eq!(
        FilterParser::parse("no   date").unwrap(),
        Filter::NoDate,
        "multiple spaces between 'no' and 'date' should be allowed"
    );
    assert_eq!(
        FilterParser::parse("no\tdate").unwrap(),
        Filter::NoDate,
        "tab between 'no' and 'date' should be allowed"
    );
}

// ==================== No Labels Tests ====================

#[test]
fn test_parse_no_labels() {
    let filter = FilterParser::parse("no labels").unwrap();
    assert_eq!(
        filter,
        Filter::NoLabels,
        "parsing 'no labels' should produce Filter::NoLabels"
    );
}

#[test]
fn test_parse_no_labels_case_insensitive() {
    assert_eq!(
        FilterParser::parse("NO LABELS").unwrap(),
        Filter::NoLabels,
        "'NO LABELS' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("No Labels").unwrap(),
        Filter::NoLabels,
        "'No Labels' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("no LABELS").unwrap(),
        Filter::NoLabels,
        "'no LABELS' should be case-insensitive"
    );
}

#[test]
fn test_parse_no_labels_with_extra_whitespace() {
    // Multiple spaces between "no" and "labels"
    assert_eq!(
        FilterParser::parse("no   labels").unwrap(),
        Filter::NoLabels,
        "multiple spaces between 'no' and 'labels' should be allowed"
    );
    assert_eq!(
        FilterParser::parse("no\tlabels").unwrap(),
        Filter::NoLabels,
        "tab between 'no' and 'labels' should be allowed"
    );
}

#[test]
fn test_parse_no_labels_with_operators() {
    // Combined with other filters
    let filter = FilterParser::parse("no labels & p1").unwrap();
    assert_eq!(filter, Filter::and(Filter::NoLabels, Filter::Priority1));

    let filter = FilterParser::parse("no labels | today").unwrap();
    assert_eq!(filter, Filter::or(Filter::NoLabels, Filter::Today));
}

#[test]
fn test_parse_no_labels_negation() {
    // "!no labels" should match tasks that HAVE labels
    let filter = FilterParser::parse("!no labels").unwrap();
    assert_eq!(filter, Filter::negate(Filter::NoLabels));
}

// ==================== Specific Date Tests ====================

#[test]
fn test_parse_specific_date_short_month() {
    let filter = FilterParser::parse("Jan 15").unwrap();
    assert_eq!(filter, Filter::SpecificDate { month: 1, day: 15 });

    let filter = FilterParser::parse("Dec 25").unwrap();
    assert_eq!(filter, Filter::SpecificDate { month: 12, day: 25 });
}

#[test]
fn test_parse_specific_date_full_month() {
    let filter = FilterParser::parse("January 15").unwrap();
    assert_eq!(filter, Filter::SpecificDate { month: 1, day: 15 });

    let filter = FilterParser::parse("December 25").unwrap();
    assert_eq!(filter, Filter::SpecificDate { month: 12, day: 25 });
}

#[test]
fn test_parse_specific_date_case_insensitive() {
    assert_eq!(
        FilterParser::parse("JAN 15").unwrap(),
        Filter::SpecificDate { month: 1, day: 15 }
    );
    assert_eq!(
        FilterParser::parse("JANUARY 15").unwrap(),
        Filter::SpecificDate { month: 1, day: 15 }
    );
    assert_eq!(
        FilterParser::parse("jan 15").unwrap(),
        Filter::SpecificDate { month: 1, day: 15 }
    );
}

#[test]
fn test_parse_specific_date_all_months() {
    assert_eq!(
        FilterParser::parse("Jan 1").unwrap(),
        Filter::SpecificDate { month: 1, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Feb 1").unwrap(),
        Filter::SpecificDate { month: 2, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Mar 1").unwrap(),
        Filter::SpecificDate { month: 3, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Apr 1").unwrap(),
        Filter::SpecificDate { month: 4, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("May 1").unwrap(),
        Filter::SpecificDate { month: 5, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Jun 1").unwrap(),
        Filter::SpecificDate { month: 6, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Jul 1").unwrap(),
        Filter::SpecificDate { month: 7, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Aug 1").unwrap(),
        Filter::SpecificDate { month: 8, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Sep 1").unwrap(),
        Filter::SpecificDate { month: 9, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Sept 1").unwrap(),
        Filter::SpecificDate { month: 9, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Oct 1").unwrap(),
        Filter::SpecificDate { month: 10, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Nov 1").unwrap(),
        Filter::SpecificDate { month: 11, day: 1 }
    );
    assert_eq!(
        FilterParser::parse("Dec 1").unwrap(),
        Filter::SpecificDate { month: 12, day: 1 }
    );
}

#[test]
fn test_parse_specific_date_with_operators() {
    let filter = FilterParser::parse("Jan 15 & p1").unwrap();
    assert_eq!(
        filter,
        Filter::and(
            Filter::SpecificDate { month: 1, day: 15 },
            Filter::Priority1
        )
    );
}

#[test]
fn test_parse_specific_date_in_complex_expression() {
    let filter = FilterParser::parse("(Jan 15 | Dec 25) & @holiday").unwrap();
    assert_eq!(
        filter,
        Filter::and(
            Filter::or(
                Filter::SpecificDate { month: 1, day: 15 },
                Filter::SpecificDate { month: 12, day: 25 }
            ),
            Filter::Label("holiday".to_string())
        )
    );
}

// ==================== Priority Tests ====================

#[test]
fn test_parse_priority_1() {
    let filter = FilterParser::parse("p1").unwrap();
    assert_eq!(
        filter,
        Filter::Priority1,
        "parsing 'p1' should produce Filter::Priority1"
    );
}

#[test]
fn test_parse_priority_2() {
    let filter = FilterParser::parse("p2").unwrap();
    assert_eq!(
        filter,
        Filter::Priority2,
        "parsing 'p2' should produce Filter::Priority2"
    );
}

#[test]
fn test_parse_priority_3() {
    let filter = FilterParser::parse("p3").unwrap();
    assert_eq!(
        filter,
        Filter::Priority3,
        "parsing 'p3' should produce Filter::Priority3"
    );
}

#[test]
fn test_parse_priority_4() {
    let filter = FilterParser::parse("p4").unwrap();
    assert_eq!(
        filter,
        Filter::Priority4,
        "parsing 'p4' should produce Filter::Priority4"
    );
}

#[test]
fn test_parse_priority_case_insensitive() {
    assert_eq!(
        FilterParser::parse("P1").unwrap(),
        Filter::Priority1,
        "'P1' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("P2").unwrap(),
        Filter::Priority2,
        "'P2' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("P3").unwrap(),
        Filter::Priority3,
        "'P3' should be case-insensitive"
    );
    assert_eq!(
        FilterParser::parse("P4").unwrap(),
        Filter::Priority4,
        "'P4' should be case-insensitive"
    );
}

// ==================== Label Tests ====================

#[test]
fn test_parse_label() {
    let filter = FilterParser::parse("@urgent").unwrap();
    assert_eq!(filter, Filter::Label("urgent".to_string()));
}

#[test]
fn test_parse_label_with_special_chars() {
    let filter = FilterParser::parse("@work-tasks").unwrap();
    assert_eq!(filter, Filter::Label("work-tasks".to_string()));

    let filter = FilterParser::parse("@my_label").unwrap();
    assert_eq!(filter, Filter::Label("my_label".to_string()));
}

#[test]
fn test_parse_quoted_label() {
    let filter = FilterParser::parse("@\"My Label\"").unwrap();
    assert_eq!(filter, Filter::Label("My Label".to_string()));
}

// ==================== Project Tests ====================

#[test]
fn test_parse_project() {
    let filter = FilterParser::parse("#Work").unwrap();
    assert_eq!(filter, Filter::Project("Work".to_string()));
}

#[test]
fn test_parse_project_with_subprojects() {
    let filter = FilterParser::parse("##Work").unwrap();
    assert_eq!(filter, Filter::ProjectWithSubprojects("Work".to_string()));
}

#[test]
fn test_parse_quoted_project() {
    let filter = FilterParser::parse("#\"My Project\"").unwrap();
    assert_eq!(filter, Filter::Project("My Project".to_string()));
}

// ==================== Section Tests ====================

#[test]
fn test_parse_section() {
    let filter = FilterParser::parse("/Inbox").unwrap();
    assert_eq!(filter, Filter::Section("Inbox".to_string()));
}

// ==================== Boolean Operator Tests ====================

#[test]
fn test_parse_and() {
    let filter = FilterParser::parse("today & p1").unwrap();
    assert_eq!(
        filter,
        Filter::and(Filter::Today, Filter::Priority1),
        "'&' operator should combine filters with AND"
    );
}

#[test]
fn test_parse_or() {
    let filter = FilterParser::parse("today | overdue").unwrap();
    assert_eq!(
        filter,
        Filter::or(Filter::Today, Filter::Overdue),
        "'|' operator should combine filters with OR"
    );
}

#[test]
fn test_parse_not() {
    let filter = FilterParser::parse("!no date").unwrap();
    assert_eq!(
        filter,
        Filter::negate(Filter::NoDate),
        "'!' operator should negate the filter"
    );
}

#[test]
fn test_parse_double_not() {
    let filter = FilterParser::parse("!!today").unwrap();
    assert_eq!(
        filter,
        Filter::negate(Filter::negate(Filter::Today)),
        "double negation should create nested Not filters"
    );
}

// ==================== Operator Precedence Tests ====================

#[test]
fn test_and_has_higher_precedence_than_or() {
    // "today | tomorrow & p1" should be parsed as "today | (tomorrow & p1)"
    let filter = FilterParser::parse("today | tomorrow & p1").unwrap();
    let expected = Filter::or(
        Filter::Today,
        Filter::and(Filter::Tomorrow, Filter::Priority1),
    );
    assert_eq!(
        filter, expected,
        "AND should bind tighter than OR: 'today | tomorrow & p1' = 'today | (tomorrow & p1)'"
    );
}

#[test]
fn test_not_has_highest_precedence() {
    // "!today & p1" should be parsed as "(!today) & p1"
    let filter = FilterParser::parse("!today & p1").unwrap();
    let expected = Filter::and(Filter::negate(Filter::Today), Filter::Priority1);
    assert_eq!(
        filter, expected,
        "NOT should bind tightest: '!today & p1' = '(!today) & p1'"
    );
}

#[test]
fn test_parentheses_override_precedence() {
    // "(today | tomorrow) & p1"
    let filter = FilterParser::parse("(today | tomorrow) & p1").unwrap();
    let expected = Filter::and(
        Filter::or(Filter::Today, Filter::Tomorrow),
        Filter::Priority1,
    );
    assert_eq!(
        filter, expected,
        "parentheses should override default precedence"
    );
}

// ==================== Complex Expression Tests ====================

#[test]
fn test_parse_complex_expression() {
    // "(today | overdue) & p1 & @urgent"
    let filter = FilterParser::parse("(today | overdue) & p1 & @urgent").unwrap();
    let expected = Filter::and(
        Filter::and(
            Filter::or(Filter::Today, Filter::Overdue),
            Filter::Priority1,
        ),
        Filter::Label("urgent".to_string()),
    );
    assert_eq!(
        filter, expected,
        "complex expression with multiple operators should parse correctly"
    );
}

#[test]
fn test_parse_nested_parentheses() {
    // "((today | tomorrow) & p1) | overdue"
    let filter = FilterParser::parse("((today | tomorrow) & p1) | overdue").unwrap();
    let expected = Filter::or(
        Filter::and(
            Filter::or(Filter::Today, Filter::Tomorrow),
            Filter::Priority1,
        ),
        Filter::Overdue,
    );
    assert_eq!(
        filter, expected,
        "nested parentheses should parse correctly"
    );
}

#[test]
fn test_parse_multiple_and() {
    // "today & p1 & @urgent & #Work"
    let filter = FilterParser::parse("today & p1 & @urgent & #Work").unwrap();
    let expected = Filter::and(
        Filter::and(
            Filter::and(Filter::Today, Filter::Priority1),
            Filter::Label("urgent".to_string()),
        ),
        Filter::Project("Work".to_string()),
    );
    assert_eq!(
        filter, expected,
        "chained AND operators should be left-associative"
    );
}

#[test]
fn test_parse_multiple_or() {
    // "today | tomorrow | overdue"
    let filter = FilterParser::parse("today | tomorrow | overdue").unwrap();
    let expected = Filter::or(Filter::or(Filter::Today, Filter::Tomorrow), Filter::Overdue);
    assert_eq!(
        filter, expected,
        "chained OR operators should be left-associative"
    );
}

// ==================== Error Tests ====================

#[test]
fn test_error_empty_expression() {
    let result = FilterParser::parse("");
    assert!(matches!(result, Err(FilterError::EmptyExpression)));

    let result = FilterParser::parse("   ");
    assert!(matches!(result, Err(FilterError::EmptyExpression)));
}

#[test]
fn test_error_unclosed_parenthesis() {
    let result = FilterParser::parse("(today");
    assert!(matches!(
        result,
        Err(FilterError::UnclosedParenthesis { position: 0 })
    ));

    let result = FilterParser::parse("((today | tomorrow)");
    // The outer ( at position 0 is unclosed
    assert!(matches!(
        result,
        Err(FilterError::UnclosedParenthesis { position: 0 })
    ));
}

#[test]
fn test_error_unexpected_operator() {
    // & at position 0
    let result = FilterParser::parse("& today");
    match result {
        Err(FilterError::UnexpectedToken { token, position }) => {
            assert_eq!(token, "&", "unexpected token should be '&'");
            assert_eq!(position, 0, "error position should be 0 for leading '&'");
        }
        other => panic!("Expected UnexpectedToken error, got {:?}", other),
    }

    // | at position 0
    let result = FilterParser::parse("| today");
    match result {
        Err(FilterError::UnexpectedToken { token, position }) => {
            assert_eq!(token, "|", "unexpected token should be '|'");
            assert_eq!(position, 0, "error position should be 0 for leading '|'");
        }
        other => panic!("Expected UnexpectedToken error, got {:?}", other),
    }
}

#[test]
fn test_error_unexpected_close_paren() {
    // ) at position 0
    let result = FilterParser::parse(")today");
    match result {
        Err(FilterError::UnexpectedToken { token, position }) => {
            assert_eq!(token, ")", "unexpected token should be ')'");
            assert_eq!(position, 0, "error position should be 0 for leading ')'");
        }
        other => panic!("Expected UnexpectedToken error, got {:?}", other),
    }
}

#[test]
fn test_error_positions_with_unicode() {
    // "日本語 & " = 9 bytes (3 chars × 3 bytes each) + 1 space + 1 & + 1 space = 12 bytes
    // But lexer won't recognize 日本語, so let's use a simpler example
    // "今日 |" where 今日 is 6 bytes
    let result = FilterParser::parse("p1 & |");
    // p1 (2 bytes) + space + & + space + | = position 5
    match result {
        Err(FilterError::UnexpectedToken { token, position }) => {
            assert_eq!(token, "|", "unexpected token should be '|'");
            assert_eq!(position, 5, "error position should be 5 (after 'p1 & ')");
        }
        other => panic!("Expected UnexpectedToken error, got {:?}", other),
    }
}

#[test]
fn test_error_nested_unclosed_parenthesis() {
    // "(((today" - the innermost ( at position 2 is the one that's unclosed
    // Actually, parsing starts from outermost, so position 0 is unclosed first
    let result = FilterParser::parse("today & (p1");
    // The ( at position 8 is unclosed
    match result {
        Err(FilterError::UnclosedParenthesis { position }) => {
            assert_eq!(
                position, 8,
                "unclosed parenthesis at position 8 (after 'today & ')"
            );
        }
        other => panic!("Expected UnclosedParenthesis error, got {:?}", other),
    }
}

#[test]
fn test_error_trailing_operator() {
    let result = FilterParser::parse("today &");
    // Input is 7 bytes: "today &"
    assert!(matches!(
        result,
        Err(FilterError::UnexpectedEndOfInput { position: 7 })
    ));

    let result = FilterParser::parse("today |");
    assert!(matches!(
        result,
        Err(FilterError::UnexpectedEndOfInput { position: 7 })
    ));
}

// ==================== AST Helper Tests ====================

#[test]
fn test_filter_and_helper() {
    let filter = Filter::and(Filter::Today, Filter::Priority1);
    match filter {
        Filter::And(left, right) => {
            assert_eq!(*left, Filter::Today, "left operand of AND should be Today");
            assert_eq!(
                *right,
                Filter::Priority1,
                "right operand of AND should be Priority1"
            );
        }
        _ => panic!("Expected And filter"),
    }
}

#[test]
fn test_filter_or_helper() {
    let filter = Filter::or(Filter::Today, Filter::Overdue);
    match filter {
        Filter::Or(left, right) => {
            assert_eq!(*left, Filter::Today, "left operand of OR should be Today");
            assert_eq!(
                *right,
                Filter::Overdue,
                "right operand of OR should be Overdue"
            );
        }
        _ => panic!("Expected Or filter"),
    }
}

#[test]
fn test_filter_not_helper() {
    let filter = Filter::negate(Filter::NoDate);
    match filter {
        Filter::Not(inner) => {
            assert_eq!(
                *inner,
                Filter::NoDate,
                "inner filter of NOT should be NoDate"
            );
        }
        _ => panic!("Expected Not filter"),
    }
}

// ==================== Clone and Debug Tests ====================

#[test]
fn test_filter_clone() {
    let filter = Filter::and(Filter::Today, Filter::Priority1);
    let cloned = filter.clone();
    assert_eq!(filter, cloned, "cloned filter should equal original");
}

#[test]
fn test_filter_debug() {
    let filter = Filter::Today;
    let debug_str = format!("{:?}", filter);
    assert!(
        debug_str.contains("Today"),
        "Debug output should contain 'Today'"
    );
}

#[test]
fn test_filter_error_display() {
    let err = FilterError::EmptyExpression;
    assert_eq!(format!("{}", err), "filter expression is empty");

    let err = FilterError::unexpected_token("&", 5);
    assert_eq!(format!("{}", err), "unexpected token '&' at position 5");

    let err = FilterError::unclosed_parenthesis(10);
    assert_eq!(format!("{}", err), "unclosed parenthesis at position 10");

    let err = FilterError::unexpected_end_of_input(15);
    assert_eq!(
        format!("{}", err),
        "unexpected end of expression after position 15"
    );
}

// ==================== Unknown Character Error Tests ====================

#[test]
fn test_error_unknown_character() {
    let result = FilterParser::parse("today $ p1");
    match result {
        Err(FilterError::UnknownCharacters { errors }) => {
            assert_eq!(
                errors.len(),
                1,
                "should report exactly one unknown character"
            );
            assert_eq!(errors[0].character, '$', "unknown character should be '$'");
            assert_eq!(
                errors[0].position, 6,
                "position should be 6 (after 'today ')"
            );
        }
        other => panic!("Expected UnknownCharacters error, got {:?}", other),
    }
}

#[test]
fn test_error_multiple_unknown_characters() {
    let result = FilterParser::parse("$today % p1");
    match result {
        Err(FilterError::UnknownCharacters { errors }) => {
            assert_eq!(errors.len(), 2, "should report two unknown characters");
            assert_eq!(
                errors[0].character, '$',
                "first unknown character should be '$'"
            );
            assert_eq!(errors[0].position, 0, "first error position should be 0");
            assert_eq!(
                errors[1].character, '%',
                "second unknown character should be '%'"
            );
            assert_eq!(
                errors[1].position, 7,
                "second error position should be 7 (after '$today ')"
            );
        }
        other => panic!("Expected UnknownCharacters error, got {:?}", other),
    }
}

#[test]
fn test_error_unknown_character_display() {
    use super::lexer::LexerError;
    let err = FilterError::UnknownCharacters {
        errors: vec![LexerError {
            character: '$',
            position: 6,
        }],
    };
    let msg = format!("{}", err);
    assert!(
        msg.contains("'$'"),
        "error message should contain the character"
    );
    assert!(
        msg.contains("position 6"),
        "error message should contain the position"
    );
}

#[test]
fn test_error_unknown_character_unicode() {
    // Test with a Unicode character
    let result = FilterParser::parse("today 🎉 p1");
    match result {
        Err(FilterError::UnknownCharacters { errors }) => {
            assert_eq!(
                errors.len(),
                1,
                "should report exactly one unknown character"
            );
            assert_eq!(
                errors[0].character, '🎉',
                "unknown character should be emoji"
            );
            assert_eq!(
                errors[0].position, 6,
                "position should be 6 (byte offset after 'today ')"
            );
        }
        other => panic!("Expected UnknownCharacters error, got {:?}", other),
    }
}