hledger/Tests.hs

970 lines
34 KiB
Haskell
Raw Normal View History

2009-02-27 07:03:14 +03:00
-- see also
-- http://hackage.haskell.org/cgi-bin/hackage-scripts/package/test-framework
-- http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HTF
2007-02-10 20:36:50 +03:00
module Tests
where
2007-03-10 02:32:00 +03:00
import qualified Data.Map as Map
import Data.Time.Format
import System.Locale (defaultTimeLocale)
2007-02-10 20:36:50 +03:00
import Text.ParserCombinators.Parsec
2008-10-10 11:39:20 +04:00
import Test.HUnit
import Test.HUnit.Tools (assertRaises, runVerboseTests)
import Ledger
import Utils
import Options
import BalanceCommand
import PrintCommand
import RegisterCommand
2007-02-09 04:23:12 +03:00
2007-07-03 22:20:45 +04:00
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
2009-03-11 10:23:07 +03:00
deeptests = tfilter matchname $ TestList tests
matchname = matchpats args . tname
2009-03-05 13:00:21 +03:00
-- | 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
2009-03-11 10:23:07 +03:00
-- | Assert something `is` some expected value.
is :: (Eq a, Show a) => a -> a -> Assertion
is = flip assertequal
2009-03-05 13:00:21 +03:00
2009-03-11 10:23:07 +03:00
-- | 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
2009-03-05 13:00:21 +03:00
2008-10-15 10:32:52 +04:00
------------------------------------------------------------------------------
2009-03-15 07:19:50 +03:00
-- | Tests for any function or topic. Mostly ordered by test name.
tests :: [Test]
2009-03-11 10:23:07 +03:00
tests = [
2009-03-15 09:11:18 +03:00
"account directive" ~:
2009-03-11 10:23:07 +03:00
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"
)
]
2009-03-15 09:11:18 +03:00
,"accountnames" ~: do
2009-03-11 10:23:07 +03:00
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"]
2009-03-15 09:11:18 +03:00
,"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" []]]]
2009-03-15 09:11:18 +03:00
,"amount arithmetic" ~: do
2008-10-15 10:32:52 +04:00
let a1 = dollars 1.23
let a2 = Amount (comm "$") (-1.23) Nothing
let a3 = Amount (comm "$") (-1.23) Nothing
2009-03-11 10:23:07 +03:00
(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
2009-03-15 09:11:18 +03:00
,"balance report tests" ~:
2009-03-11 10:23:07 +03:00
let (opts,args) `gives` es = do
2009-03-15 09:11:18 +03:00
l <- sampleledgerwithopts opts args
showBalanceReport opts args l `is` unlines es
2009-03-11 10:23:07 +03:00
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"
]
2009-03-15 09:11:18 +03:00
,"balance report level can also be limited with --depth" ~:
([Depth "1"], []) `gives`
2009-03-11 10:23:07 +03:00
[" $-1 assets"
," $2 expenses"
," $-2 income"
," $1 liabilities"
]
2009-03-15 09:11:18 +03:00
,"balance report with account pattern o" ~:
([SubTotal], ["o"]) `gives`
2009-03-11 10:23:07 +03:00
[" $1 expenses:food"
," $-2 income"
," $-1 gifts"
," $-1 salary"
2009-03-11 10:23:07 +03:00
,"--------------------"
," $-1"
]
2009-03-15 09:11:18 +03:00
,"balance report with account pattern o and --depth 1" ~:
([Depth "1"], ["o"]) `gives`
2009-03-11 10:23:07 +03:00
[" $1 expenses:food"
," $-2 income"
,"--------------------"
," $-1"
]
2009-03-15 09:11:18 +03:00
,"balance report with account pattern a" ~:
2009-03-11 10:23:07 +03:00
([], ["a"]) `gives`
[" $-1 assets"
," $1 bank:saving"
," $-2 cash"
," $-1 income:salary"
," $1 liabilities"
,"--------------------"
," $-1"
]
2009-03-15 09:11:18 +03:00
,"balance report with account pattern e" ~:
2009-03-11 10:23:07 +03:00
([], ["e"]) `gives`
[" $-1 assets"
," $2 expenses"
," $1 supplies"
," $-2 income"
," $1 liabilities:debts"
]
2009-03-15 09:11:18 +03:00
,"balance report with unmatched parent of two matched subaccounts" ~:
2009-03-11 10:23:07 +03:00
([], ["cash","saving"]) `gives`
[" $1 assets:bank:saving"
," $-2 assets:cash"
,"--------------------"
," $-1"
]
2009-03-15 09:11:18 +03:00
,"balance report with multi-part account name" ~:
2009-03-11 10:23:07 +03:00
([], ["expenses:food"]) `gives`
[" $1 expenses:food"
,"--------------------"
," $1"
]
2009-03-15 09:11:18 +03:00
,"balance report with negative account pattern" ~:
2009-03-11 10:23:07 +03:00
([], ["^assets"]) `gives`
[" $2 expenses"
," $-2 income"
," $1 liabilities"
,"--------------------"
," $1"
]
2009-03-15 09:11:18 +03:00
,"balance report negative account pattern always matches full name" ~:
2009-03-11 10:23:07 +03:00
([], ["^e"]) `gives` []
2009-03-15 09:11:18 +03:00
,"balance report negative patterns affect totals" ~:
2009-03-11 10:23:07 +03:00
([], ["expenses","^food"]) `gives`
[" $1 expenses"
,"--------------------"
," $1"
]
2009-03-15 09:11:18 +03:00
,"balance report with -E shows zero-balance accounts" ~:
2009-03-11 10:23:07 +03:00
([SubTotal,Empty], ["assets"]) `gives`
[" $-1 assets"
," $1 bank"
," $0 checking"
," $1 saving"
," $-2 cash"
,"--------------------"
," $-1"
]
2009-03-15 09:11:18 +03:00
,"balance report with cost basis" ~: do
2009-03-11 10:23:07 +03:00
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"
," $-500 c"
]
2009-03-15 09:11:18 +03:00
,"balance report elides zero-balance root account(s)" ~: do
2009-03-11 10:23:07 +03:00
l <- ledgerfromstringwithopts [] [] sampletime
(unlines
["2008/1/1 one"
," test:a 1"
," test:b"
])
showBalanceReport [] [] l `is` ""
showBalanceReport [SubTotal] [] l `is`
unlines
[" 1 test:a"
," -1 test:b"
]
]
2009-03-15 09:11:18 +03:00
,"balanceEntry" ~: do
2009-03-11 10:23:07 +03:00
(tamount $ last $ etransactions $ balanceEntry entry1) `is` Mixed [dollars (-47.18)]
2009-03-15 09:11:18 +03:00
,"balancereportacctnames" ~:
2009-03-11 10:23:07 +03:00
let gives (opt,pats) e = do
l <- sampleledger
let t = pruneZeroBalanceLeaves $ ledgerAccountTree 999 l
balancereportacctnames l (opt=="-s") pats t `is` e
in TestList
[
"balancereportacctnames 0" ~: ("-s",[]) `gives` ["assets","assets:bank","assets:bank:checking","assets:bank:saving",
"assets:cash","expenses","expenses:food","expenses:supplies","income",
"income:gifts","income:salary","liabilities","liabilities:debts"]
,"balancereportacctnames 1" ~: ("", []) `gives` ["assets","expenses","income","liabilities"]
,"balancereportacctnames 2" ~: ("", ["assets"]) `gives` ["assets"]
,"balancereportacctnames 3" ~: ("", ["as"]) `gives` ["assets","assets:cash"]
,"balancereportacctnames 4" ~: ("", ["assets:cash"]) `gives` ["assets:cash"]
,"balancereportacctnames 5" ~: ("", ["^assets"]) `gives` ["expenses","income","liabilities"]
,"balancereportacctnames 6" ~: ("", ["^e"]) `gives` []
,"balancereportacctnames 7" ~: ("-s",["assets"]) `gives` ["assets","assets:bank","assets:bank:checking","assets:bank:saving","assets:cash"]
,"balancereportacctnames 8" ~: ("-s",["^e"]) `gives` []
]
2009-03-15 09:11:18 +03:00
,"cacheLedger" ~: do
2009-03-11 10:23:07 +03:00
(length $ Map.keys $ accountmap $ cacheLedger [] rawledger7) `is` 15
2009-03-15 09:11:18 +03:00
,"canonicaliseAmounts" ~:
2009-03-11 10:23:07 +03:00
"use the greatest precision" ~: do
(rawLedgerPrecisions $ canonicaliseAmounts False $ rawLedgerWithAmounts ["1","2.00"]) `is` [2,2]
2009-03-15 09:11:18 +03:00
,"dateSpanFromOpts" ~: do
2009-03-11 10:23:07 +03:00
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"]
2009-03-15 09:11:18 +03:00
,"expandAccountNames" ~: do
2009-03-11 10:23:07 +03:00
expandAccountNames ["assets:cash","assets:checking","expenses:vacation"] `is`
["assets","assets:cash","assets:checking","expenses","expenses:vacation"]
2009-03-15 09:11:18 +03:00
,"intervalFromOpts" ~: do
2009-03-11 10:23:07 +03:00
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
2009-03-15 09:11:18 +03:00
,"isAccountNamePrefixOf" ~: do
2009-03-15 07:19:50 +03:00
"assets" `isAccountNamePrefixOf` "assets:bank" `is` True
"assets" `isAccountNamePrefixOf` "assets:bank:checking" `is` True
"my assets" `isAccountNamePrefixOf` "assets:bank" `is` False
2009-03-15 09:11:18 +03:00
,"isSubAccountNameOf" ~: do
2009-03-15 07:19:50 +03:00
"assets:bank" `isSubAccountNameOf` "assets" `is` True
"assets:bank:checking" `isSubAccountNameOf` "assets" `is` False
"assets:bank" `isSubAccountNameOf` "my assets" `is` False
2009-03-15 09:11:18 +03:00
,"default year" ~: do
2009-03-11 10:23:07 +03:00
rl <- rawledgerfromstring defaultyear_ledger_str
(edate $ head $ entries rl) `is` fromGregorian 2009 1 1
return ()
2009-03-15 09:11:18 +03:00
,"ledgerEntry" ~: do
2009-03-11 10:23:07 +03:00
parseWithCtx ledgerEntry entry1_str `parseis` entry1
2009-03-15 09:11:18 +03:00
,"ledgerHistoricalPrice" ~: do
2009-03-11 10:23:07 +03:00
parseWithCtx ledgerHistoricalPrice price1_str `parseis` price1
2009-03-15 09:11:18 +03:00
,"ledgertransaction" ~: do
2009-03-11 10:23:07 +03:00
parseWithCtx ledgertransaction rawtransaction1_str `parseis` rawtransaction1
2009-03-15 09:11:18 +03:00
,"parsedate" ~: do
2009-03-11 10:23:07 +03:00
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
2009-03-15 09:11:18 +03:00
,"period expressions" ~: do
2009-03-11 10:23:07 +03:00
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))"
2009-03-15 09:11:18 +03:00
,"print command tests" ~: TestList
2009-03-11 10:23:07 +03:00
[
"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"
,""
]
]
2009-03-15 09:11:18 +03:00
,"punctuatethousands 1" ~: punctuatethousands "" `is` ""
2009-03-11 10:23:07 +03:00
2009-03-15 09:11:18 +03:00
,"punctuatethousands 2" ~: punctuatethousands "1234567.8901" `is` "1,234,567.8901"
2009-03-11 10:23:07 +03:00
2009-03-15 09:11:18 +03:00
,"punctuatethousands 3" ~: punctuatethousands "-100" `is` "-100"
2009-03-11 10:23:07 +03:00
2009-03-15 09:11:18 +03:00
,"register report tests" ~:
2009-03-11 10:23:07 +03:00
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"
]
2009-03-15 09:11:18 +03:00
,"register report with account pattern" ~:
2009-03-11 10:23:07 +03:00
do
l <- sampleledger
showRegisterReport [] ["cash"] l `is` unlines
["2008/06/03 eat & shop assets:cash $-2 $-2"
]
2009-03-15 09:11:18 +03:00
,"register report with account pattern, case insensitive" ~:
2009-03-11 10:23:07 +03:00
do
l <- sampleledger
showRegisterReport [] ["cAsH"] l `is` unlines
["2008/06/03 eat & shop assets:cash $-2 $-2"
]
2009-03-15 09:11:18 +03:00
,"register report with display expression" ~:
2009-03-11 10:23:07 +03:00
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"]
2009-03-15 09:11:18 +03:00
,"register report with period expression" ~:
2009-03-11 10:23:07 +03:00
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"]
]
2009-03-15 09:11:18 +03:00
,"show dollars" ~: show (dollars 1) ~?= "$1.00"
2009-03-11 10:23:07 +03:00
2009-03-15 09:11:18 +03:00
,"show hours" ~: show (hours 1) ~?= "1.0h"
2009-03-11 10:23:07 +03:00
2009-03-15 09:11:18 +03:00
,"smart dates" ~: do
2009-03-11 10:23:07 +03:00
let str `gives` datestr = fixSmartDateStr (parsedate "2008/11/26") str `is` datestr
2008-11-27 05:49:22 +03:00
"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-11-27 05:49:22 +03:00
"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"
2009-03-11 10:23:07 +03:00
2009-03-15 09:11:18 +03:00
,"splitSpan" ~: do
2009-03-11 10:23:07 +03:00
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"]
2009-03-15 09:11:18 +03:00
,"subAccounts" ~: do
2009-03-15 07:06:10 +03:00
l <- sampleledger
let a = ledgerAccount l "assets"
(map aname $ subAccounts l a) `is` ["assets:bank","assets:cash"]
2009-03-15 09:11:18 +03:00
,"summariseTransactionsInDateSpan" ~: do
2009-03-11 10:23:07 +03:00
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,Nothing,False,[]) `gives`
[]
("2008/01/01","2009/01/01",0,Nothing,True,[]) `gives`
[
nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31"}
]
("2008/01/01","2009/01/01",0,Nothing,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,Just 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,Just 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,Just 0,False,ts) `gives`
[
nulltxn{date=parsedate "2008/01/01",description="- 2008/12/31",account="",amount=Mixed [dollars 15]}
]
2008-11-22 09:35:10 +03:00
2009-03-15 09:11:18 +03:00
,"timelog" ~: do
2009-03-11 10:23:07 +03:00
parseWithCtx timelog timelog1_str `parseis` timelog1
2009-03-15 09:11:18 +03:00
,"transactionamount" ~: do
2009-03-11 10:23:07 +03:00
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]
2008-12-08 04:49:31 +03:00
2009-03-11 10:23:07 +03:00
]
2008-10-16 01:10:36 +04:00
2008-10-15 10:32:52 +04:00
------------------------------------------------------------------------------
-- test data
2007-02-09 04:23:12 +03:00
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
2009-03-11 10:23:07 +03:00
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"
]
2009-03-05 13:00:21 +03:00
write_sample_ledger = writeFile "sample.ledger" sample_ledger_str
2008-10-10 11:39:20 +04:00
rawtransaction1_str = " expenses:food:dining $10.00\n"
2007-02-10 22:16:56 +03:00
2008-12-05 13:38:20 +03:00
rawtransaction1 = RawTransaction "expenses:food:dining" (Mixed [dollars 10]) "" RegularTransaction
2007-02-09 04:23:12 +03:00
2009-03-11 10:23:07 +03:00
entry1_str = unlines
["2007/01/28 coopportunity"
," expenses:food:groceries $47.18"
," assets:checking"
,""
]
2007-02-09 04:23:12 +03:00
2007-02-10 22:16:56 +03:00
entry1 =
(Entry (parsedate "2007/01/28") False "" "coopportunity" ""
[RawTransaction "expenses:food:groceries" (Mixed [dollars 47.18]) "" RegularTransaction,
RawTransaction "assets:checking" (Mixed [dollars (-47.18)]) "" RegularTransaction] "")
2007-02-10 22:16:56 +03:00
2009-03-11 10:23:07 +03:00
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"
,""
]
2007-02-09 04:23:12 +03:00
2007-02-10 22:16:56 +03:00
ledger5_str = ""
2007-02-09 04:23:12 +03:00
2009-03-11 10:23:07 +03:00
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 "
,""
]
2008-10-10 11:39:20 +04:00
rawledger7 = RawLedger
2007-02-11 02:32:45 +03:00
[]
[]
[
2008-10-03 06:37:19 +04:00
Entry {
edate= parsedate "2007/01/01",
2008-10-10 11:39:20 +04:00
estatus=False,
ecode="*",
edescription="opening balance",
ecomment="",
etransactions=[
RawTransaction {
taccount="assets:cash",
tamount=(Mixed [dollars 4.82]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
},
RawTransaction {
taccount="equity:opening balances",
tamount=(Mixed [dollars (-4.82)]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
}
],
epreceding_comment_lines=""
}
,
2008-10-03 06:37:19 +04:00
Entry {
edate= parsedate "2007/02/01",
2008-10-10 11:39:20 +04:00
estatus=False,
ecode="*",
edescription="ayres suites",
ecomment="",
etransactions=[
RawTransaction {
taccount="expenses:vacation",
tamount=(Mixed [dollars 179.92]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
},
RawTransaction {
taccount="assets:checking",
tamount=(Mixed [dollars (-179.92)]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
}
],
epreceding_comment_lines=""
}
,
2008-10-03 06:37:19 +04:00
Entry {
edate=parsedate "2007/01/02",
2008-10-10 11:39:20 +04:00
estatus=False,
ecode="*",
edescription="auto transfer to savings",
ecomment="",
etransactions=[
RawTransaction {
taccount="assets:saving",
tamount=(Mixed [dollars 200]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
},
RawTransaction {
taccount="assets:checking",
tamount=(Mixed [dollars (-200)]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
}
],
epreceding_comment_lines=""
}
,
2008-10-03 06:37:19 +04:00
Entry {
edate=parsedate "2007/01/03",
2008-10-10 11:39:20 +04:00
estatus=False,
ecode="*",
edescription="poquito mas",
ecomment="",
etransactions=[
RawTransaction {
taccount="expenses:food:dining",
tamount=(Mixed [dollars 4.82]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
},
RawTransaction {
taccount="assets:cash",
tamount=(Mixed [dollars (-4.82)]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
}
],
epreceding_comment_lines=""
}
,
2008-10-03 06:37:19 +04:00
Entry {
edate=parsedate "2007/01/03",
2008-10-10 11:39:20 +04:00
estatus=False,
ecode="*",
edescription="verizon",
ecomment="",
etransactions=[
RawTransaction {
taccount="expenses:phone",
tamount=(Mixed [dollars 95.11]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
},
RawTransaction {
taccount="assets:checking",
tamount=(Mixed [dollars (-95.11)]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
}
],
epreceding_comment_lines=""
}
,
2008-10-03 06:37:19 +04:00
Entry {
edate=parsedate "2007/01/03",
2008-10-10 11:39:20 +04:00
estatus=False,
ecode="*",
edescription="discover",
ecomment="",
etransactions=[
RawTransaction {
taccount="liabilities:credit cards:discover",
tamount=(Mixed [dollars 80]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
},
RawTransaction {
taccount="assets:checking",
tamount=(Mixed [dollars (-80)]),
tcomment="",
rttype=RegularTransaction
2008-10-10 11:39:20 +04:00
}
],
epreceding_comment_lines=""
}
]
[]
2008-12-08 04:49:31 +03:00
[]
""
ledger7 = cacheLedger [] rawledger7
2009-03-11 10:23:07 +03:00
ledger8_str = unlines
["2008/1/1 test "
," a:b 10h @ $40"
," c:d "
,""
]
2008-11-22 23:35:36 +03:00
2007-03-12 03:13:53 +03:00
timelogentry1_str = "i 2007/03/11 16:19:00 hledger\n"
timelogentry1 = TimeLogEntry 'i' (parsedatetime "2007/03/11 16:19:00") "hledger"
2007-03-12 03:13:53 +03:00
timelogentry2_str = "o 2007/03/11 16:30:00\n"
timelogentry2 = TimeLogEntry 'o' (parsedatetime "2007/03/11 16:30:00") ""
2007-03-12 03:13:53 +03:00
timelog1_str = concat [
timelogentry1_str,
timelogentry2_str
]
timelog1 = TimeLog [
timelogentry1,
timelogentry2
]
2007-03-12 03:13:53 +03:00
price1_str = "P 2004/05/01 XYZ $55\n"
price1 = HistoricalPrice (parsedate "2004/05/01") "XYZ" "$" 55
2008-11-22 23:35:36 +03:00
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)
2008-11-22 12:23:10 +03:00
rawLedgerWithAmounts as =
RawLedger
[]
[]
[nullentry{edescription=a,etransactions=[nullrawtxn{tamount=parse a}]} | a <- as]
2008-12-08 04:49:31 +03:00
[]
[]
2008-11-22 12:23:10 +03:00
""
2009-03-05 13:00:21 +03:00
where parse = fromparse . parseWithCtx transactionamount . (" "++)
2008-11-22 12:23:10 +03:00