jwiegley / hledger

A port of the Ledger data architecture to Haskell

This URL has Read+Write access

hledger / Tests.hs
100644 1057 lines (939 sloc) 36.256 kb
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
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
{- |
hledger's test suite. Most tests are HUnit-based, and defined in the
@tests@ list below. These tests are built in to hledger and can be run at
any time with @hledger test@.
 
In addition, we have tests in doctest format, which can be run with @make
doctest@ in the hledger source tree. These have some advantages:
 
- easier to read and write than hunit, for functional/shell tests
 
- easier to read multi-line output from failing tests
 
- can also appear in, and test, docs
 
and disadvantages:
 
- not included in hledger's built-in tests
 
- not platform independent
 
All doctests are included below. Some of these may also appear in other
modules as examples within the api docs.
 
Run a few with c++ ledger first:
 
@
$ ledger -f sample.ledger balance
$-1 assets
$1 bank:saving
$-2 cash
$2 expenses
$1 food
$1 supplies
$-2 income
$-1 gifts
$-1 salary
$1 liabilities:debts
@
 
@
$ ledger -f sample.ledger balance o
$1 expenses:food
$-2 income
$-1 gifts
$-1 salary
--------------------
$-1
@
 
Then hledger:
 
@
$ hledger -f sample.ledger balance
$-1 assets
$1 bank:saving
$-2 cash
$2 expenses
$1 food
$1 supplies
$-2 income
$-1 gifts
$-1 salary
$1 liabilities:debts
@
 
@
$ hledger -f sample.ledger balance o
$1 expenses:food
$-2 income
$-1 gifts
$-1 salary
--------------------
$-1
@
 
@
$ hledger -f sample.ledger balance --depth 1
$-1 assets
$2 expenses
$-2 income
$1 liabilities
@
 
-}
-- other test tools:
-- http://hackage.haskell.org/cgi-bin/hackage-scripts/package/test-framework
-- http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HTF
 
module Tests
where
import qualified Data.Map as Map
import Data.Time.Format
import System.Locale (defaultTimeLocale)
import Text.ParserCombinators.Parsec
import Test.HUnit
import Test.HUnit.Tools (assertRaises, runVerboseTests)
import Ledger
import Utils
import Options
import BalanceCommand
import PrintCommand
import RegisterCommand
 
 
runtests opts args = runner flattests
    where
      runner | (Verbose `elem` opts) = runVerboseTests
             | otherwise = \t -> runTestTT t >>= return . (flip (,) 0)
      flattests = TestList $ filter matchname $ concatMap tflatten tests
      deeptests = tfilter matchname $ TestList tests
      matchname = matchpats args . tname
 
-- | Get a Test's label, or the empty string.
tname :: Test -> String
tname (TestLabel n _) = n
tname _ = ""
 
-- | Flatten a Test containing TestLists into a list of single tests.
tflatten :: Test -> [Test]
tflatten (TestLabel _ t@(TestList _)) = tflatten t
tflatten (TestList ts) = concatMap tflatten ts
tflatten t = [t]
 
-- | Filter TestLists in a Test, recursively, preserving the structure.
tfilter :: (Test -> Bool) -> Test -> Test
tfilter p (TestLabel l ts) = TestLabel l (tfilter p ts)
tfilter p (TestList ts) = TestList $ filter (any p . tflatten) $ map (tfilter p) ts
tfilter _ t = t
 
-- | Assert something `is` some expected value.
is :: (Eq a, Show a) => a -> a -> Assertion
is = flip assertequal
 
-- | Assert a parse result is some expected value, or print a parse error.
parseis :: (Show a, Eq a) => (Either ParseError a) -> a -> Assertion
parse `parseis` expected = either printParseError (`is` expected) parse
 
------------------------------------------------------------------------------
-- | Tests for any function or topic. Mostly ordered by test name.
tests :: [Test]
tests = [
 
   "account directive" ~:
   let sameParse str1 str2 = do l1 <- rawledgerfromstring str1
                                l2 <- rawledgerfromstring str2
                                l1 `is` l2
   in TestList
   [
    "account directive 1" ~: sameParse
                          "2008/12/07 One\n test:from $-1\n test:to $1\n"
                          "!account test\n2008/12/07 One\n from $-1\n to $1\n"
 
   ,"account directive 2" ~: sameParse
                           "2008/12/07 One\n test:foo:from $-1\n test:foo:to $1\n"
                           "!account test\n!account foo\n2008/12/07 One\n from $-1\n to $1\n"
 
   ,"account directive 3" ~: sameParse
                           "2008/12/07 One\n test:from $-1\n test:to $1\n"
                           "!account test\n!account foo\n!end\n2008/12/07 One\n from $-1\n to $1\n"
 
   ,"account directive 4" ~: sameParse
                           ("2008/12/07 One\n alpha $-1\n beta $1\n" ++
                            "!account outer\n2008/12/07 Two\n aigh $-2\n bee $2\n" ++
                            "!account inner\n2008/12/07 Three\n gamma $-3\n delta $3\n" ++
                            "!end\n2008/12/07 Four\n why $-4\n zed $4\n" ++
                            "!end\n2008/12/07 Five\n foo $-5\n bar $5\n"
                           )
                           ("2008/12/07 One\n alpha $-1\n beta $1\n" ++
                            "2008/12/07 Two\n outer:aigh $-2\n outer:bee $2\n" ++
                            "2008/12/07 Three\n outer:inner:gamma $-3\n outer:inner:delta $3\n" ++
                            "2008/12/07 Four\n outer:why $-4\n outer:zed $4\n" ++
                            "2008/12/07 Five\n foo $-5\n bar $5\n"
                           )
   ]
 
  ,"accountnames" ~: do
    accountnames ledger7 `is`
     ["assets","assets:cash","assets:checking","assets:saving","equity","equity:opening balances",
      "expenses","expenses:food","expenses:food:dining","expenses:phone","expenses:vacation",
      "liabilities","liabilities:credit cards","liabilities:credit cards:discover"]
 
  ,"accountNameTreeFrom" ~: do
    accountNameTreeFrom ["a"] `is` Node "top" [Node "a" []]
    accountNameTreeFrom ["a","b"] `is` Node "top" [Node "a" [], Node "b" []]
    accountNameTreeFrom ["a","a:b"] `is` Node "top" [Node "a" [Node "a:b" []]]
    accountNameTreeFrom ["a:b:c"] `is` Node "top" [Node "a" [Node "a:b" [Node "a:b:c" []]]]
 
  ,"amount arithmetic" ~: do
    let a1 = dollars 1.23
    let a2 = Amount (comm "$") (-1.23) Nothing
    let a3 = Amount (comm "$") (-1.23) Nothing
    (a1 + a2) `is` Amount (comm "$") 0 Nothing
    (a1 + a3) `is` Amount (comm "$") 0 Nothing
    (a2 + a3) `is` Amount (comm "$") (-2.46) Nothing
    (a3 + a3) `is` Amount (comm "$") (-2.46) Nothing
    (sum [a2,a3]) `is` Amount (comm "$") (-2.46) Nothing
    (sum [a3,a3]) `is` Amount (comm "$") (-2.46) Nothing
    (sum [a1,a2,a3,-a3]) `is` Amount (comm "$") 0 Nothing
 
  ,"balance report tests" ~:
   let (opts,args) `gives` es = do
        l <- sampleledgerwithopts opts args
        showBalanceReport opts args l `is` unlines es
   in TestList
   [
 
    "balance report with no args" ~:
    ([], []) `gives`
    [" $-1 assets"
    ," $1 bank:saving"
    ," $-2 cash"
    ," $2 expenses"
    ," $1 food"
    ," $1 supplies"
    ," $-2 income"
    ," $-1 gifts"
    ," $-1 salary"
    ," $1 liabilities:debts"
    ]
 
   ,"balance report can be limited with --depth" ~:
    ([Depth "1"], []) `gives`
    [" $-1 assets"
    ," $2 expenses"
    ," $-2 income"
    ," $1 liabilities"
    ]
    
   ,"balance report with account pattern o" ~:
    ([SubTotal], ["o"]) `gives`
    [" $1 expenses:food"
    ," $-2 income"
    ," $-1 gifts"
    ," $-1 salary"
    ,"--------------------"
    ," $-1"
    ]
 
   ,"balance report with account pattern o and --depth 1" ~:
    ([Depth "1"], ["o"]) `gives`
    [" $1 expenses"
    ," $-2 income"
    ,"--------------------"
    ," $-1"
    ]
 
   ,"balance report with account pattern a" ~:
    ([], ["a"]) `gives`
    [" $-1 assets"
    ," $1 bank:saving"
    ," $-2 cash"
    ," $-1 income:salary"
    ," $1 liabilities:debts"
    ,"--------------------"
    ," $-1"
    ]
 
   ,"balance report with account pattern e" ~:
    ([], ["e"]) `gives`
    [" $-1 assets"
    ," $1 bank:saving"
    ," $-2 cash"
    ," $2 expenses"
    ," $1 food"
    ," $1 supplies"
    ," $-2 income"
    ," $-1 gifts"
    ," $-1 salary"
    ," $1 liabilities:debts"
    ]
 
   ,"balance report with unmatched parent of two matched subaccounts" ~:
    ([], ["cash","saving"]) `gives`
    [" $-1 assets"
    ," $1 bank:saving"
    ," $-2 cash"
    ,"--------------------"
    ," $-1"
    ]
 
   ,"balance report with multi-part account name" ~:
    ([], ["expenses:food"]) `gives`
    [" $1 expenses:food"
    ,"--------------------"
    ," $1"
    ]
 
   ,"balance report with negative account pattern" ~:
    ([], ["^assets"]) `gives`
    [" $2 expenses"
    ," $1 food"
    ," $1 supplies"
    ," $-2 income"
    ," $-1 gifts"
    ," $-1 salary"
    ," $1 liabilities:debts"
    ,"--------------------"
    ," $1"
    ]
 
   ,"balance report negative account pattern always matches full name" ~:
    ([], ["^e"]) `gives` []
 
   ,"balance report negative patterns affect totals" ~:
    ([], ["expenses","^food"]) `gives`
    [" $1 expenses:supplies"
    ,"--------------------"
    ," $1"
    ]
 
   ,"balance report with -E shows zero-balance accounts" ~:
    ([SubTotal,Empty], ["assets"]) `gives`
    [" $-1 assets"
    ," $1 bank"
    ," $0 checking"
    ," $1 saving"
    ," $-2 cash"
    ,"--------------------"
    ," $-1"
    ]
 
   ,"balance report with cost basis" ~: do
      rl <- rawledgerfromstring $ unlines
             [""
             ,"2008/1/1 test "
             ," a:b 10h @ $50"
             ," c:d "
             ,""
             ]
      let l = cacheLedger [] $
              filterRawLedger (DateSpan Nothing Nothing) [] False False $
              canonicaliseAmounts True rl -- enable cost basis adjustment
      showBalanceReport [] [] l `is`
       unlines
        [" $500 a:b"
        ," $-500 c:d"
        ]
 
   ,"balance report elides zero-balance root account(s)" ~: do
      l <- ledgerfromstringwithopts [] [] sampletime
             (unlines
              ["2008/1/1 one"
              ," test:a 1"
              ," test:b"
              ])
      showBalanceReport [] [] l `is`
       unlines
        [" 1 test:a"
        ," -1 test:b"
        ]
 
   ]
 
  ,"balanceEntry" ~: do
    (tamount $ last $ etransactions $ balanceEntry entry1) `is` Mixed [dollars (-47.18)]
 
  ,"cacheLedger" ~: do
    (length $ Map.keys $ accountmap $ cacheLedger [] rawledger7) `is` 15
 
  ,"canonicaliseAmounts" ~:
   "use the greatest precision" ~: do
    (rawLedgerPrecisions $ canonicaliseAmounts False $ rawLedgerWithAmounts ["1","2.00"]) `is` [2,2]
 
  ,"dateSpanFromOpts" ~: do
    let todaysdate = parsedate "2008/11/26"
    let opts `gives` spans = show (dateSpanFromOpts todaysdate opts) `is` spans
    [] `gives` "DateSpan Nothing Nothing"
    [Begin "2008", End "2009"] `gives` "DateSpan (Just 2008-01-01) (Just 2009-01-01)"
    [Period "in 2008"] `gives` "DateSpan (Just 2008-01-01) (Just 2009-01-01)"
    [Begin "2005", End "2007",Period "in 2008"] `gives` "DateSpan (Just 2008-01-01) (Just 2009-01-01)"
 
  ,"entriesFromTimeLogEntries" ~: do
     today <- getCurrentDay
     let
         clockin t a = TimeLogEntry 'i' t a
         clockout t = TimeLogEntry 'o' t ""
         yesterday = prevday today
         mktime d s = LocalTime d $ fromMaybe midnight $ parseTime defaultTimeLocale "%H:%M:%S" s
         noon = LocalTime today midday
         ts `gives` ss = (map edescription $ entriesFromTimeLogEntries noon ts) `is` ss
     [] `gives` []
     [clockin (mktime today "00:00:00") ""] `gives` ["00:00-12:00"]
     [clockin (mktime yesterday "23:00:00") ""] `gives` ["23:00-23:59","00:00-12:00"]
     [clockin (mktime (addDays (-2) today) "23:00:00") ""] `gives` ["23:00-23:59","00:00-23:59","00:00-12:00"]
 
  ,"expandAccountNames" ~: do
    expandAccountNames ["assets:cash","assets:checking","expenses:vacation"] `is`
     ["assets","assets:cash","assets:checking","expenses","expenses:vacation"]
 
  ,"intervalFromOpts" ~: do
    let opts `gives` interval = intervalFromOpts opts `is` interval
    [] `gives` NoInterval
    [WeeklyOpt] `gives` Weekly
    [MonthlyOpt] `gives` Monthly
    [YearlyOpt] `gives` Yearly
    [Period "weekly"] `gives` Weekly
    [Period "monthly"] `gives` Monthly
    [WeeklyOpt, Period "yearly"] `gives` Yearly
 
  ,"isAccountNamePrefixOf" ~: do
    "assets" `isAccountNamePrefixOf` "assets" `is` False
    "assets" `isAccountNamePrefixOf` "assets:bank" `is` True
    "assets" `isAccountNamePrefixOf` "assets:bank:checking" `is` True
    "my assets" `isAccountNamePrefixOf` "assets:bank" `is` False
 
  ,"isSubAccountNameOf" ~: do
    "assets" `isSubAccountNameOf` "assets" `is` False
    "assets:bank" `isSubAccountNameOf` "assets" `is` True
    "assets:bank:checking" `isSubAccountNameOf` "assets" `is` False
    "assets:bank" `isSubAccountNameOf` "my assets" `is` False
 
  ,"default year" ~: do
    rl <- rawledgerfromstring defaultyear_ledger_str
    (edate $ head $ entries rl) `is` fromGregorian 2009 1 1
    return ()
 
  ,"ledgerEntry" ~: do
    parseWithCtx ledgerEntry entry1_str `parseis` entry1
 
  ,"ledgerHistoricalPrice" ~: do
    parseWithCtx ledgerHistoricalPrice price1_str `parseis` price1
 
  ,"ledgertransaction" ~: do
    parseWithCtx ledgertransaction rawtransaction1_str `parseis` rawtransaction1
 
  ,"parsedate" ~: do
    parsedate "2008/02/03" `is` parsetimewith "%Y/%m/%d" "2008/02/03" sampledate
    parsedate "2008-02-03" `is` parsetimewith "%Y/%m/%d" "2008/02/03" sampledate
 
  ,"period expressions" ~: do
    let todaysdate = parsedate "2008/11/26"
    let str `gives` result = (show $ parsewith (periodexpr todaysdate) str) `is` ("Right "++result)
    "from aug to oct" `gives` "(NoInterval,DateSpan (Just 2008-08-01) (Just 2008-10-01))"
    "aug to oct" `gives` "(NoInterval,DateSpan (Just 2008-08-01) (Just 2008-10-01))"
    "every day from aug to oct" `gives` "(Daily,DateSpan (Just 2008-08-01) (Just 2008-10-01))"
    "daily from aug" `gives` "(Daily,DateSpan (Just 2008-08-01) Nothing)"
    "every week to 2009" `gives` "(Weekly,DateSpan Nothing (Just 2009-01-01))"
 
  ,"print command tests" ~: TestList
  [
 
   "print expenses" ~:
   do
    let args = ["expenses"]
    l <- sampleledgerwithopts [] args
    showEntries [] args l `is` unlines
     ["2008/06/03 * eat & shop"
     ," expenses:food $1"
     ," expenses:supplies $1"
     ," assets:cash $-2"
     ,""
     ]
  ]
 
  ,"punctuatethousands 1" ~: punctuatethousands "" `is` ""
 
  ,"punctuatethousands 2" ~: punctuatethousands "1234567.8901" `is` "1,234,567.8901"
 
  ,"punctuatethousands 3" ~: punctuatethousands "-100" `is` "-100"
 
  ,"register report tests" ~:
  let registerdates = filter (not . null) . map (strip . take 10) . lines
  in
  TestList
  [
 
   "register report with no args" ~:
   do
    l <- sampleledger
    showRegisterReport [] [] l `is` unlines
     ["2008/01/01 income assets:bank:checking $1 $1"
     ," income:salary $-1 0"
     ,"2008/06/01 gift assets:bank:checking $1 $1"
     ," income:gifts $-1 0"
     ,"2008/06/02 save assets:bank:saving $1 $1"
     ," assets:bank:checking $-1 0"
     ,"2008/06/03 eat & shop expenses:food $1 $1"
     ," expenses:supplies $1 $2"
     ," assets:cash $-2 0"
     ,"2008/12/31 pay off liabilities:debts $1 $1"
     ," assets:bank:checking $-1 0"
     ]
 
   ,"register report with account pattern" ~:
   do
    l <- sampleledger
    showRegisterReport [] ["cash"] l `is` unlines
     ["2008/06/03 eat & shop assets:cash $-2 $-2"
     ]
 
  ,"register report with account pattern, case insensitive" ~:
  do
    l <- sampleledger
    showRegisterReport [] ["cAsH"] l `is` unlines
     ["2008/06/03 eat & shop assets:cash $-2 $-2"
     ]
 
  ,"register report with display expression" ~:
  do
    l <- sampleledger
    let displayexpr `gives` dates =
            registerdates (showRegisterReport [Display displayexpr] [] l) `is` dates
    "d<[2008/6/2]" `gives` ["2008/01/01","2008/06/01"]
    "d<=[2008/6/2]" `gives` ["2008/01/01","2008/06/01","2008/06/02"]
    "d=[2008/6/2]" `gives` ["2008/06/02"]
    "d>=[2008/6/2]" `gives` ["2008/06/02","2008/06/03","2008/12/31"]
    "d>[2008/6/2]" `gives` ["2008/06/03","2008/12/31"]
 
  ,"register report with period expression" ~:
  do
    l <- sampleledger
    let periodexpr `gives` dates = do
          lopts <- sampleledgerwithopts [Period periodexpr] []
          registerdates (showRegisterReport [Period periodexpr] [] lopts) `is` dates
    "" `gives` ["2008/01/01","2008/06/01","2008/06/02","2008/06/03","2008/12/31"]
    "2008" `gives` ["2008/01/01","2008/06/01","2008/06/02","2008/06/03","2008/12/31"]
    "2007" `gives` []
    "june" `gives` ["2008/06/01","2008/06/02","2008/06/03"]
    "monthly" `gives` ["2008/01/01","2008/06/01","2008/12/01"]
    showRegisterReport [Period "yearly"] [] l `is` unlines
     ["2008/01/01 - 2008/12/31 assets:bank:saving $1 $1"
     ," assets:cash $-2 $-1"
     ," expenses:food $1 0"
     ," expenses:supplies $1 $1"
     ," income:gifts $-1 0"
     ," income:salary $-1 $-1"
     ," liabilities:debts $1 0"
     ]
    registerdates (showRegisterReport [Period "quarterly"] [] l) `is` ["2008/01/01","2008/04/01","2008/10/01"]
    registerdates (showRegisterReport [Period "quarterly",Empty] [] l) `is` ["2008/01/01","2008/04/01","2008/07/01","2008/10/01"]
 
  ]
 
  ,"show dollars" ~: show (dollars 1) ~?= "$1.00"
 
  ,"show hours" ~: show (hours 1) ~?= "1.0h"
 
  ,"smart dates" ~: do
    let str `gives` datestr = fixSmartDateStr (parsedate "2008/11/26") str `is` datestr
    "1999-12-02" `gives` "1999/12/02"
    "1999.12.02" `gives` "1999/12/02"
    "1999/3/2" `gives` "1999/03/02"
    "19990302" `gives` "1999/03/02"
    "2008/2" `gives` "2008/02/01"
    "20/2" `gives` "0020/02/01"
    "1000" `gives` "1000/01/01"
    "4/2" `gives` "2008/04/02"
    "2" `gives` "2008/11/02"
    "January" `gives` "2008/01/01"
    "feb" `gives` "2008/02/01"
    "today" `gives` "2008/11/26"
    "yesterday" `gives` "2008/11/25"
    "tomorrow" `gives` "2008/11/27"
    "this day" `gives` "2008/11/26"
    "last day" `gives` "2008/11/25"
    "next day" `gives` "2008/11/27"
    "this week" `gives` "2008/11/24" -- last monday
    "last week" `gives` "2008/11/17" -- previous monday
    "next week" `gives` "2008/12/01" -- next monday
    "this month" `gives` "2008/11/01"
    "last month" `gives` "2008/10/01"
    "next month" `gives` "2008/12/01"
    "this quarter" `gives` "2008/10/01"
    "last quarter" `gives` "2008/07/01"
    "next quarter" `gives` "2009/01/01"
    "this year" `gives` "2008/01/01"
    "last year" `gives` "2007/01/01"
    "next year" `gives` "2009/01/01"
-- "last wed" `gives` "2008/11/19"
-- "next friday" `gives` "2008/11/28"
-- "next january" `gives` "2009/01/01"
 
  ,"splitSpan" ~: do
    let (interval,span) `gives` spans = splitSpan interval span `is` spans
    (NoInterval,mkdatespan "2008/01/01" "2009/01/01") `gives`
     [mkdatespan "2008/01/01" "2009/01/01"]
    (Quarterly,mkdatespan "2008/01/01" "2009/01/01") `gives`
     [mkdatespan "2008/01/01" "2008/04/01"
     ,mkdatespan "2008/04/01" "2008/07/01"
     ,mkdatespan "2008/07/01" "2008/10/01"
     ,mkdatespan "2008/10/01" "2009/01/01"
     ]
    (Quarterly,nulldatespan) `gives`
     [nulldatespan]
    (Daily,mkdatespan "2008/01/01" "2008/01/01") `gives`
     [mkdatespan "2008/01/01" "2008/01/01"]
    (Quarterly,mkdatespan "2008/01/01" "2008/01/01") `gives`
     [mkdatespan "2008/01/01" "2008/01/01"]
 
  ,"subAccounts" ~: do
    l <- sampleledger
    let a = ledgerAccount l "assets"
    (map aname $ subAccounts l a) `is` ["assets:bank","assets:cash"]
 
  ,"summariseTransactionsInDateSpan" ~: do
    let (b,e,entryno,depth,showempty,ts) `gives` summaryts =
            summariseTransactionsInDateSpan (mkdatespan b e) entryno depth showempty ts `is` summaryts
    let ts =
            [
             nulltxn{description="desc",account="expenses:food:groceries",amount=Mixed [dollars 1]}
            ,nulltxn{description="desc",account="expenses:food:dining", amount=Mixed [dollars 2]}
            ,nulltxn{description="desc",account="expenses:food", amount=Mixed [dollars 4]}
            ,nulltxn{description="desc",account="expenses:food:dining", amount=Mixed [dollars 8]}
            ]
    ("2008/01/01","2009/01/01",0,9999,False,[]) `gives`
     []
    ("2008/01/01","2009/01/01",0,9999,True,[]) `gives`
     [
      nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31"}
     ]
    ("2008/01/01","2009/01/01",0,9999,False,ts) `gives`
     [
      nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="expenses:food", amount=Mixed [dollars 4]}
     ,nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="expenses:food:dining", amount=Mixed [dollars 10]}
     ,nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="expenses:food:groceries",amount=Mixed [dollars 1]}
     ]
    ("2008/01/01","2009/01/01",0,2,False,ts) `gives`
     [
      nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="expenses:food",amount=Mixed [dollars 15]}
     ]
    ("2008/01/01","2009/01/01",0,1,False,ts) `gives`
     [
      nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="expenses",amount=Mixed [dollars 15]}
     ]
    ("2008/01/01","2009/01/01",0,0,False,ts) `gives`
     [
      nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="",amount=Mixed [dollars 15]}
     ]
 
  ,"timelog" ~: do
    parseWithCtx timelog timelog1_str `parseis` timelog1
 
  ,"transactionamount" ~: do
    parseWithCtx transactionamount " $47.18" `parseis` Mixed [dollars 47.18]
    parseWithCtx transactionamount " $1." `parseis`
     Mixed [Amount (Commodity {symbol="$",side=L,spaced=False,comma=False,precision=0}) 1 Nothing]
 
  ]
 
  
------------------------------------------------------------------------------
-- test data
 
sampledate = parsedate "2008/11/26"
sampletime = LocalTime sampledate midday
sampleledger = ledgerfromstringwithopts [] [] sampletime sample_ledger_str
sampleledgerwithopts opts args = ledgerfromstringwithopts opts args sampletime sample_ledger_str
 
sample_ledger_str = unlines
 ["; A sample ledger file."
 ,";"
 ,"; Sets up this account tree:"
 ,"; assets"
 ,"; bank"
 ,"; checking"
 ,"; saving"
 ,"; cash"
 ,"; expenses"
 ,"; food"
 ,"; supplies"
 ,"; income"
 ,"; gifts"
 ,"; salary"
 ,"; liabilities"
 ,"; debts"
 ,""
 ,"2008/01/01 income"
 ," assets:bank:checking $1"
 ," income:salary"
 ,""
 ,"2008/06/01 gift"
 ," assets:bank:checking $1"
 ," income:gifts"
 ,""
 ,"2008/06/02 save"
 ," assets:bank:saving $1"
 ," assets:bank:checking"
 ,""
 ,"2008/06/03 * eat & shop"
 ," expenses:food $1"
 ," expenses:supplies $1"
 ," assets:cash"
 ,""
 ,"2008/12/31 * pay off"
 ," liabilities:debts $1"
 ," assets:bank:checking"
 ,""
 ,""
 ,";final comment"
 ]
 
defaultyear_ledger_str = unlines
 ["Y2009"
 ,""
 ,"01/01 A"
 ," a $1"
 ," b"
 ]
 
write_sample_ledger = writeFile "sample.ledger" sample_ledger_str
 
rawtransaction1_str = " expenses:food:dining $10.00\n"
 
rawtransaction1 = RawTransaction False "expenses:food:dining" (Mixed [dollars 10]) "" RegularTransaction
 
entry1_str = unlines
 ["2007/01/28 coopportunity"
 ," expenses:food:groceries $47.18"
 ," assets:checking"
 ,""
 ]
 
entry1 =
    (Entry (parsedate "2007/01/28") False "" "coopportunity" ""
     [RawTransaction False "expenses:food:groceries" (Mixed [dollars 47.18]) "" RegularTransaction,
      RawTransaction False "assets:checking" (Mixed [dollars (-47.18)]) "" RegularTransaction] "")
 
 
entry2_str = unlines
 ["2007/01/27 * joes diner"
 ," expenses:food:dining $10.00"
 ," expenses:gifts $10.00"
 ," assets:checking $-20.00"
 ,""
 ]
 
entry3_str = unlines
 ["2007/01/01 * opening balance"
 ," assets:cash $4.82"
 ," equity:opening balances"
 ,""
 ,"2007/01/01 * opening balance"
 ," assets:cash $4.82"
 ," equity:opening balances"
 ,""
 ,"2007/01/28 coopportunity"
 ," expenses:food:groceries $47.18"
 ," assets:checking"
 ,""
 ]
 
periodic_entry1_str = unlines
 ["~ monthly from 2007/2/2"
 ," assets:saving $200.00"
 ," assets:checking"
 ,""
 ]
 
periodic_entry2_str = unlines
 ["~ monthly from 2007/2/2"
 ," assets:saving $200.00 ;auto savings"
 ," assets:checking"
 ,""
 ]
 
periodic_entry3_str = unlines
 ["~ monthly from 2007/01/01"
 ," assets:cash $4.82"
 ," equity:opening balances"
 ,""
 ,"~ monthly from 2007/01/01"
 ," assets:cash $4.82"
 ," equity:opening balances"
 ,""
 ]
 
ledger1_str = unlines
 [""
 ,"2007/01/27 * joes diner"
 ," expenses:food:dining $10.00"
 ," expenses:gifts $10.00"
 ," assets:checking $-20.00"
 ,""
 ,""
 ,"2007/01/28 coopportunity"
 ," expenses:food:groceries $47.18"
 ," assets:checking $-47.18"
 ,""
 ,""
 ]
 
ledger2_str = unlines
 [";comment"
 ,"2007/01/27 * joes diner"
 ," expenses:food:dining $10.00"
 ," assets:checking $-47.18"
 ,""
 ]
 
ledger3_str = unlines
 ["2007/01/27 * joes diner"
 ," expenses:food:dining $10.00"
 ,";intra-entry comment"
 ," assets:checking $-47.18"
 ,""
 ]
 
ledger4_str = unlines
 ["!include \"somefile\""
 ,"2007/01/27 * joes diner"
 ," expenses:food:dining $10.00"
 ," assets:checking $-47.18"
 ,""
 ]
 
ledger5_str = ""
 
ledger6_str = unlines
 ["~ monthly from 2007/1/21"
 ," expenses:entertainment $16.23 ;netflix"
 ," assets:checking"
 ,""
 ,"; 2007/01/01 * opening balance"
 ,"; assets:saving $200.04"
 ,"; equity:opening balances "
 ,""
 ]
 
ledger7_str = unlines
 ["2007/01/01 * opening balance"
 ," assets:cash $4.82"
 ," equity:opening balances "
 ,""
 ,"2007/01/01 * opening balance"
 ," income:interest $-4.82"
 ," equity:opening balances "
 ,""
 ,"2007/01/02 * ayres suites"
 ," expenses:vacation $179.92"
 ," assets:checking "
 ,""
 ,"2007/01/02 * auto transfer to savings"
 ," assets:saving $200.00"
 ," assets:checking "
 ,""
 ,"2007/01/03 * poquito mas"
 ," expenses:food:dining $4.82"
 ," assets:cash "
 ,""
 ,"2007/01/03 * verizon"
 ," expenses:phone $95.11"
 ," assets:checking "
 ,""
 ,"2007/01/03 * discover"
 ," liabilities:credit cards:discover $80.00"
 ," assets:checking "
 ,""
 ,"2007/01/04 * blue cross"
 ," expenses:health:insurance $90.00"
 ," assets:checking "
 ,""
 ,"2007/01/05 * village market liquor"
 ," expenses:food:dining $6.48"
 ," assets:checking "
 ,""
 ]
 
rawledger7 = RawLedger
          []
          []
          [
           Entry {
             edate= parsedate "2007/01/01",
             estatus=False,
             ecode="*",
             edescription="opening balance",
             ecomment="",
             etransactions=[
              RawTransaction {
                tstatus=False,
                taccount="assets:cash",
                tamount=(Mixed [dollars 4.82]),
                tcomment="",
                rttype=RegularTransaction
              },
              RawTransaction {
                tstatus=False,
                taccount="equity:opening balances",
                tamount=(Mixed [dollars (-4.82)]),
                tcomment="",
                rttype=RegularTransaction
              }
             ],
             epreceding_comment_lines=""
           }
          ,
           Entry {
             edate= parsedate "2007/02/01",
             estatus=False,
             ecode="*",
             edescription="ayres suites",
             ecomment="",
             etransactions=[
              RawTransaction {
                tstatus=False,
                taccount="expenses:vacation",
                tamount=(Mixed [dollars 179.92]),
                tcomment="",
                rttype=RegularTransaction
              },
              RawTransaction {
                tstatus=False,
                taccount="assets:checking",
                tamount=(Mixed [dollars (-179.92)]),
                tcomment="",
                rttype=RegularTransaction
              }
             ],
             epreceding_comment_lines=""
           }
          ,
           Entry {
             edate=parsedate "2007/01/02",
             estatus=False,
             ecode="*",
             edescription="auto transfer to savings",
             ecomment="",
             etransactions=[
              RawTransaction {
                tstatus=False,
                taccount="assets:saving",
                tamount=(Mixed [dollars 200]),
                tcomment="",
                rttype=RegularTransaction
              },
              RawTransaction {
                tstatus=False,
                taccount="assets:checking",
                tamount=(Mixed [dollars (-200)]),
                tcomment="",
                rttype=RegularTransaction
              }
             ],
             epreceding_comment_lines=""
           }
          ,
           Entry {
             edate=parsedate "2007/01/03",
             estatus=False,
             ecode="*",
             edescription="poquito mas",
             ecomment="",
             etransactions=[
              RawTransaction {
                tstatus=False,
                taccount="expenses:food:dining",
                tamount=(Mixed [dollars 4.82]),
                tcomment="",
                rttype=RegularTransaction
              },
              RawTransaction {
                tstatus=False,
                taccount="assets:cash",
                tamount=(Mixed [dollars (-4.82)]),
                tcomment="",
                rttype=RegularTransaction
              }
             ],
             epreceding_comment_lines=""
           }
          ,
           Entry {
             edate=parsedate "2007/01/03",
             estatus=False,
             ecode="*",
             edescription="verizon",
             ecomment="",
             etransactions=[
              RawTransaction {
                tstatus=False,
                taccount="expenses:phone",
                tamount=(Mixed [dollars 95.11]),
                tcomment="",
                rttype=RegularTransaction
              },
              RawTransaction {
                tstatus=False,
                taccount="assets:checking",
                tamount=(Mixed [dollars (-95.11)]),
                tcomment="",
                rttype=RegularTransaction
              }
             ],
             epreceding_comment_lines=""
           }
          ,
           Entry {
             edate=parsedate "2007/01/03",
             estatus=False,
             ecode="*",
             edescription="discover",
             ecomment="",
             etransactions=[
              RawTransaction {
                tstatus=False,
                taccount="liabilities:credit cards:discover",
                tamount=(Mixed [dollars 80]),
                tcomment="",
                rttype=RegularTransaction
              },
              RawTransaction {
                tstatus=False,
                taccount="assets:checking",
                tamount=(Mixed [dollars (-80)]),
                tcomment="",
                rttype=RegularTransaction
              }
             ],
             epreceding_comment_lines=""
           }
          ]
          []
          []
          ""
 
ledger7 = cacheLedger [] rawledger7
 
ledger8_str = unlines
 ["2008/1/1 test "
 ," a:b 10h @ $40"
 ," c:d "
 ,""
 ]
 
timelogentry1_str = "i 2007/03/11 16:19:00 hledger\n"
timelogentry1 = TimeLogEntry 'i' (parsedatetime "2007/03/11 16:19:00") "hledger"
 
timelogentry2_str = "o 2007/03/11 16:30:00\n"
timelogentry2 = TimeLogEntry 'o' (parsedatetime "2007/03/11 16:30:00") ""
 
timelog1_str = concat [
                timelogentry1_str,
                timelogentry2_str
               ]
timelog1 = TimeLog [
            timelogentry1,
            timelogentry2
           ]
 
price1_str = "P 2004/05/01 XYZ $55\n"
price1 = HistoricalPrice (parsedate "2004/05/01") "XYZ" "$" 55
 
a1 = Mixed [(hours 1){price=Just $ Mixed [Amount (comm "$") 10 Nothing]}]
a2 = Mixed [(hours 2){price=Just $ Mixed [Amount (comm "EUR") 10 Nothing]}]
a3 = Mixed $ (amounts a1) ++ (amounts a2)
 
rawLedgerWithAmounts as =
        RawLedger
        []
        []
        [nullentry{edescription=a,etransactions=[nullrawtxn{tamount=parse a}]} | a <- as]
        []
        []
        ""
    where parse = fromparse . parseWithCtx transactionamount . (" "++)