2009-03-15 08:06:36 +03:00
|
|
|
{- |
|
2009-06-27 12:17:15 +04:00
|
|
|
|
2009-07-10 00:55:50 +04:00
|
|
|
This module contains hledger's unit tests. These are built in to hledger,
|
|
|
|
and can be run at any time by doing @hledger test@ (or, with a few more
|
|
|
|
options, by doing @make unittest@ in the hledger source tree.)
|
2009-06-27 12:17:15 +04:00
|
|
|
|
2009-07-10 00:55:50 +04:00
|
|
|
Other kinds of tests:
|
2009-03-15 08:06:36 +03:00
|
|
|
|
2009-07-10 00:55:50 +04:00
|
|
|
hledger's functional tests are a set of shell/command-line tests defined
|
|
|
|
by .test files in the tests\/ subdirectory. These can be run by doing
|
|
|
|
@make functest@ in the hledger source tree.
|
2009-03-15 08:06:36 +03:00
|
|
|
|
2009-07-10 00:55:50 +04:00
|
|
|
hledger's doctests are shell tests defined in literal blocks in haddock
|
|
|
|
documentation in the source, run by doing @make doctest@ in the hledger
|
|
|
|
source tree. They are no longer used, but here is an example:
|
2009-03-15 08:06:36 +03:00
|
|
|
|
|
|
|
@
|
|
|
|
$ hledger -f sample.ledger balance o
|
|
|
|
$1 expenses:food
|
|
|
|
$-2 income
|
|
|
|
$-1 gifts
|
|
|
|
$-1 salary
|
|
|
|
--------------------
|
|
|
|
$-1
|
|
|
|
@
|
|
|
|
|
|
|
|
-}
|
2009-02-27 07:03:14 +03:00
|
|
|
|
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
|
2009-03-15 15:42:03 +03:00
|
|
|
import Data.Time.Format
|
2010-03-09 04:51:21 +03:00
|
|
|
import System.Locale (defaultTimeLocale)
|
2009-06-05 13:44:20 +04:00
|
|
|
import Test.HUnit.Tools (runVerboseTests)
|
2009-06-22 19:47:05 +04:00
|
|
|
import System.Exit (exitFailure, exitWith, ExitCode(ExitSuccess)) -- base 3 compatible
|
2009-08-12 13:21:46 +04:00
|
|
|
import System.Time (ClockTime(TOD))
|
2009-06-02 22:29:01 +04:00
|
|
|
|
|
|
|
import Commands.All
|
2010-03-09 00:47:36 +03:00
|
|
|
import Ledger -- including testing utils in Ledger.Utils
|
2008-10-10 14:05:12 +04:00
|
|
|
import Options
|
2009-06-02 22:29:01 +04:00
|
|
|
import Utils
|
2007-02-09 04:23:12 +03:00
|
|
|
|
2007-07-03 22:20:45 +04:00
|
|
|
|
2010-03-09 00:47:36 +03:00
|
|
|
-- | Run unit tests.
|
|
|
|
runtests :: [Opt] -> [String] -> IO ()
|
2009-06-05 21:29:20 +04:00
|
|
|
runtests opts args = do
|
|
|
|
(counts,_) <- runner ts
|
|
|
|
if errors counts > 0 || (failures counts > 0)
|
|
|
|
then exitFailure
|
2009-06-22 19:47:05 +04:00
|
|
|
else exitWith ExitSuccess
|
2009-02-27 06:31:47 +03:00
|
|
|
where
|
2009-09-22 20:51:27 +04:00
|
|
|
runner | Verbose `elem` opts = runVerboseTests
|
2009-09-23 13:35:50 +04:00
|
|
|
| otherwise = liftM (flip (,) 0) . runTestTT
|
2010-03-09 00:47:36 +03:00
|
|
|
ts = TestList $ filter matchname $ tflatten tests -- show flat test names
|
|
|
|
-- ts = tfilter matchname $ TestList tests -- show hierarchical test names
|
2009-02-27 06:31:47 +03:00
|
|
|
matchname = matchpats args . tname
|
2009-03-05 13:00:21 +03:00
|
|
|
|
2010-03-11 20:16:03 +03:00
|
|
|
-- | unit tests, augmenting the ones defined in each module. Where that is
|
|
|
|
-- inconvenient due to import cycles or whatever, we define them here.
|
2010-03-09 00:47:36 +03:00
|
|
|
tests :: Test
|
|
|
|
tests = TestList [
|
2010-03-09 04:43:25 +03:00
|
|
|
tests_Ledger,
|
|
|
|
tests_Commands,
|
2009-03-05 13:00:21 +03:00
|
|
|
|
2010-03-09 00:47:36 +03:00
|
|
|
"account directive" ~:
|
2009-12-16 10:00:43 +03:00
|
|
|
let sameParse str1 str2 = do l1 <- journalFromString str1
|
|
|
|
l2 <- journalFromString str2
|
2009-03-11 10:23:07 +03:00
|
|
|
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-09-22 16:08:28 +04:00
|
|
|
,"accountnames" ~:
|
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
|
2009-03-15 07:02:04 +03:00
|
|
|
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
|
|
|
,"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
|
2009-12-21 08:23:07 +03:00
|
|
|
t <- getCurrentLocalTime
|
|
|
|
showBalanceReport opts (optsToFilterSpec opts args t) 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 14:10:36 +03:00
|
|
|
,"balance report can be limited with --depth" ~:
|
2009-03-15 08:03:30 +03:00
|
|
|
([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" ~:
|
2009-03-15 08:03:30 +03:00
|
|
|
([SubTotal], ["o"]) `gives`
|
2009-03-11 10:23:07 +03:00
|
|
|
[" $1 expenses:food"
|
|
|
|
," $-2 income"
|
2009-03-15 08:03:30 +03:00
|
|
|
," $-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" ~:
|
2009-03-15 08:03:30 +03:00
|
|
|
([Depth "1"], ["o"]) `gives`
|
2009-03-15 14:10:36 +03:00
|
|
|
[" $1 expenses"
|
2009-03-11 10:23:07 +03:00
|
|
|
," $-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"
|
2009-03-15 14:10:36 +03:00
|
|
|
," $1 liabilities:debts"
|
2009-03-11 10:23:07 +03:00
|
|
|
,"--------------------"
|
|
|
|
," $-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"
|
2009-03-15 14:10:36 +03:00
|
|
|
," $1 bank:saving"
|
|
|
|
," $-2 cash"
|
2009-03-11 10:23:07 +03:00
|
|
|
," $2 expenses"
|
2009-03-15 14:10:36 +03:00
|
|
|
," $1 food"
|
2009-03-11 10:23:07 +03:00
|
|
|
," $1 supplies"
|
|
|
|
," $-2 income"
|
2009-03-15 14:10:36 +03:00
|
|
|
," $-1 gifts"
|
|
|
|
," $-1 salary"
|
2009-03-11 10:23:07 +03:00
|
|
|
," $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`
|
2009-03-15 14:10:36 +03:00
|
|
|
[" $-1 assets"
|
|
|
|
," $1 bank:saving"
|
|
|
|
," $-2 cash"
|
2009-03-11 10:23:07 +03:00
|
|
|
,"--------------------"
|
|
|
|
," $-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-04-02 10:02:00 +04:00
|
|
|
([], ["not:assets"]) `gives`
|
2009-03-11 10:23:07 +03:00
|
|
|
[" $2 expenses"
|
2009-03-15 14:10:36 +03:00
|
|
|
," $1 food"
|
|
|
|
," $1 supplies"
|
2009-03-11 10:23:07 +03:00
|
|
|
," $-2 income"
|
2009-03-15 14:10:36 +03:00
|
|
|
," $-1 gifts"
|
|
|
|
," $-1 salary"
|
|
|
|
," $1 liabilities:debts"
|
2009-03-11 10:23:07 +03:00
|
|
|
,"--------------------"
|
|
|
|
," $1"
|
|
|
|
]
|
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"balance report negative account pattern always matches full name" ~:
|
2009-04-02 10:02:00 +04:00
|
|
|
([], ["not:e"]) `gives` []
|
2009-03-11 10:23:07 +03:00
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"balance report negative patterns affect totals" ~:
|
2009-04-02 10:02:00 +04:00
|
|
|
([], ["expenses","not:food"]) `gives`
|
2009-03-15 14:10:36 +03:00
|
|
|
[" $1 expenses:supplies"
|
2009-03-11 10:23:07 +03:00
|
|
|
,"--------------------"
|
|
|
|
," $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-12-21 08:23:07 +03:00
|
|
|
j <- journalFromString $ unlines
|
2009-03-11 10:23:07 +03:00
|
|
|
[""
|
|
|
|
,"2008/1/1 test "
|
|
|
|
," a:b 10h @ $50"
|
|
|
|
," c:d "
|
|
|
|
,""
|
|
|
|
]
|
2009-12-21 08:23:07 +03:00
|
|
|
let j' = canonicaliseAmounts True j -- enable cost basis adjustment
|
|
|
|
showBalanceReport [] nullfilterspec nullledger{journal=j'} `is`
|
2009-03-11 10:23:07 +03:00
|
|
|
unlines
|
2009-03-15 14:10:36 +03:00
|
|
|
[" $500 a:b"
|
|
|
|
," $-500 c:d"
|
2009-03-11 10:23:07 +03:00
|
|
|
]
|
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"balance report elides zero-balance root account(s)" ~: do
|
2009-12-21 08:23:07 +03:00
|
|
|
l <- ledgerFromStringWithOpts []
|
2009-03-11 10:23:07 +03:00
|
|
|
(unlines
|
|
|
|
["2008/1/1 one"
|
|
|
|
," test:a 1"
|
|
|
|
," test:b"
|
|
|
|
])
|
2009-12-21 08:23:07 +03:00
|
|
|
showBalanceReport [] nullfilterspec l `is`
|
2009-03-11 10:23:07 +03:00
|
|
|
unlines
|
2009-03-15 14:10:36 +03:00
|
|
|
[" 1 test:a"
|
|
|
|
," -1 test:b"
|
2009-03-11 10:23:07 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
]
|
|
|
|
|
2009-12-16 11:07:26 +03:00
|
|
|
,"balanceTransaction" ~: do
|
2009-04-01 12:55:46 +04:00
|
|
|
assertBool "detect unbalanced entry, sign error"
|
2009-12-16 11:07:26 +03:00
|
|
|
(isLeft $ balanceTransaction
|
|
|
|
(Transaction (parsedate "2007/01/28") Nothing False "" "test" ""
|
2009-12-19 06:44:52 +03:00
|
|
|
[Posting False "a" (Mixed [dollars 1]) "" RegularPosting Nothing,
|
|
|
|
Posting False "b" (Mixed [dollars 1]) "" RegularPosting Nothing
|
2009-04-01 12:55:46 +04:00
|
|
|
] ""))
|
|
|
|
assertBool "detect unbalanced entry, multiple missing amounts"
|
2009-12-16 11:07:26 +03:00
|
|
|
(isLeft $ balanceTransaction
|
|
|
|
(Transaction (parsedate "2007/01/28") Nothing False "" "test" ""
|
2009-12-19 06:44:52 +03:00
|
|
|
[Posting False "a" missingamt "" RegularPosting Nothing,
|
|
|
|
Posting False "b" missingamt "" RegularPosting Nothing
|
2009-04-01 12:55:46 +04:00
|
|
|
] ""))
|
2009-12-16 11:07:26 +03:00
|
|
|
let e = balanceTransaction (Transaction (parsedate "2007/01/28") Nothing False "" "test" ""
|
2009-12-19 06:44:52 +03:00
|
|
|
[Posting False "a" (Mixed [dollars 1]) "" RegularPosting Nothing,
|
|
|
|
Posting False "b" missingamt "" RegularPosting Nothing
|
2009-04-01 13:18:31 +04:00
|
|
|
] "")
|
|
|
|
assertBool "one missing amount should be ok" (isRight e)
|
|
|
|
assertEqual "balancing amount is added"
|
|
|
|
(Mixed [dollars (-1)])
|
|
|
|
(case e of
|
2009-12-16 20:58:51 +03:00
|
|
|
Right e' -> (pamount $ last $ tpostings e')
|
2009-04-01 13:18:31 +04:00
|
|
|
Left _ -> error "should not happen")
|
2009-03-11 10:23:07 +03:00
|
|
|
|
2009-09-22 16:08:28 +04:00
|
|
|
,"cacheLedger" ~:
|
2009-12-21 08:23:07 +03:00
|
|
|
length (Map.keys $ accountmap $ cacheLedger journal7) `is` 15
|
2009-03-11 10:23:07 +03:00
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"canonicaliseAmounts" ~:
|
2009-09-22 16:08:28 +04:00
|
|
|
"use the greatest precision" ~:
|
2009-12-16 10:00:43 +03:00
|
|
|
journalPrecisions (canonicaliseAmounts False $ journalWithAmounts ["1","2.00"]) `is` [2,2]
|
2009-03-11 10:23:07 +03:00
|
|
|
|
2009-09-22 16:08:28 +04:00
|
|
|
,"commodities" ~:
|
2009-05-29 14:02:14 +04:00
|
|
|
commodities ledger7 `is` [Commodity {symbol="$", side=L, spaced=False, comma=False, precision=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"
|
2009-09-22 19:56:59 +04:00
|
|
|
let gives = is . show . dateSpanFromOpts todaysdate
|
2009-03-11 10:23:07 +03:00
|
|
|
[] `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)"
|
|
|
|
|
2009-06-05 23:35:47 +04:00
|
|
|
-- don't know what this should do
|
|
|
|
-- ,"elideAccountName" ~: do
|
|
|
|
-- (elideAccountName 50 "aaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaa"
|
|
|
|
-- `is` "aa:aaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaa")
|
|
|
|
-- (elideAccountName 20 "aaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaa:aaaaaaaaaaaaaaaaaaaa"
|
|
|
|
-- `is` "aa:aa:aaaaaaaaaaaaaa")
|
|
|
|
|
2009-03-15 15:42:03 +03:00
|
|
|
,"entriesFromTimeLogEntries" ~: do
|
|
|
|
today <- getCurrentDay
|
2009-04-01 12:20:10 +04:00
|
|
|
now' <- getCurrentTime
|
2009-04-01 08:59:08 +04:00
|
|
|
tz <- getCurrentTimeZone
|
2009-04-01 12:20:10 +04:00
|
|
|
let now = utcToLocalTime tz now'
|
|
|
|
nowstr = showtime now
|
2009-03-15 15:42:03 +03:00
|
|
|
yesterday = prevday today
|
2009-09-22 19:56:59 +04:00
|
|
|
clockin = TimeLogEntry In
|
|
|
|
mktime d = LocalTime d . fromMaybe midnight . parseTime defaultTimeLocale "%H:%M:%S"
|
|
|
|
showtime = formatTime defaultTimeLocale "%H:%M"
|
2009-12-16 20:58:51 +03:00
|
|
|
assertEntriesGiveStrings name es ss = assertEqual name ss (map tdescription $ entriesFromTimeLogEntries now es)
|
2009-04-01 08:59:08 +04:00
|
|
|
|
|
|
|
assertEntriesGiveStrings "started yesterday, split session at midnight"
|
|
|
|
[clockin (mktime yesterday "23:00:00") ""]
|
2009-04-01 12:20:10 +04:00
|
|
|
["23:00-23:59","00:00-"++nowstr]
|
2009-04-01 08:59:08 +04:00
|
|
|
assertEntriesGiveStrings "split multi-day sessions at each midnight"
|
|
|
|
[clockin (mktime (addDays (-2) today) "23:00:00") ""]
|
2009-04-01 12:20:10 +04:00
|
|
|
["23:00-23:59","00:00-23:59","00:00-"++nowstr]
|
2009-04-01 08:59:08 +04:00
|
|
|
assertEntriesGiveStrings "auto-clock-out if needed"
|
|
|
|
[clockin (mktime today "00:00:00") ""]
|
2009-04-01 12:20:10 +04:00
|
|
|
["00:00-"++nowstr]
|
|
|
|
let future = utcToLocalTime tz $ addUTCTime 100 now'
|
|
|
|
futurestr = showtime future
|
2009-04-01 09:00:08 +04:00
|
|
|
assertEntriesGiveStrings "use the clockin time for auto-clockout if it's in the future"
|
2009-04-01 12:20:10 +04:00
|
|
|
[clockin future ""]
|
|
|
|
[printf "%s-%s" futurestr futurestr]
|
2009-03-15 15:42:03 +03:00
|
|
|
|
2009-09-22 16:08:28 +04:00
|
|
|
,"expandAccountNames" ~:
|
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-09-22 19:56:59 +04:00
|
|
|
let gives = is . intervalFromOpts
|
2009-03-11 10:23:07 +03:00
|
|
|
[] `gives` NoInterval
|
|
|
|
[WeeklyOpt] `gives` Weekly
|
|
|
|
[MonthlyOpt] `gives` Monthly
|
2009-04-03 15:55:48 +04:00
|
|
|
[QuarterlyOpt] `gives` Quarterly
|
2009-03-11 10:23:07 +03:00
|
|
|
[YearlyOpt] `gives` Yearly
|
|
|
|
[Period "weekly"] `gives` Weekly
|
|
|
|
[Period "monthly"] `gives` Monthly
|
2009-04-03 15:55:48 +04:00
|
|
|
[Period "quarterly"] `gives` Quarterly
|
2009-03-11 10:23:07 +03:00
|
|
|
[WeeklyOpt, Period "yearly"] `gives` Yearly
|
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"isAccountNamePrefixOf" ~: do
|
2009-03-15 15:41:30 +03:00
|
|
|
"assets" `isAccountNamePrefixOf` "assets" `is` False
|
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-12-16 11:07:26 +03:00
|
|
|
,"isTransactionBalanced" ~: do
|
2009-12-19 06:44:52 +03:00
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 1.00]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "c" (Mixed [dollars (-1.00)]) "" RegularPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "detect balanced" (isTransactionBalanced t)
|
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 1.00]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "c" (Mixed [dollars (-1.01)]) "" RegularPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "detect unbalanced" (not $ isTransactionBalanced t)
|
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 1.00]) "" RegularPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "detect unbalanced, one posting" (not $ isTransactionBalanced t)
|
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 0]) "" RegularPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "one zero posting is considered balanced for now" (isTransactionBalanced t)
|
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 1.00]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "c" (Mixed [dollars (-1.00)]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "d" (Mixed [dollars 100]) "" VirtualPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "virtual postings don't need to balance" (isTransactionBalanced t)
|
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 1.00]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "c" (Mixed [dollars (-1.00)]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "d" (Mixed [dollars 100]) "" BalancedVirtualPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "balanced virtual postings need to balance among themselves" (not $ isTransactionBalanced t)
|
|
|
|
let t = Transaction (parsedate "2009/01/01") Nothing False "" "a" ""
|
|
|
|
[Posting False "b" (Mixed [dollars 1.00]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "c" (Mixed [dollars (-1.00)]) "" RegularPosting (Just t)
|
|
|
|
,Posting False "d" (Mixed [dollars 100]) "" BalancedVirtualPosting (Just t)
|
|
|
|
,Posting False "e" (Mixed [dollars (-100)]) "" BalancedVirtualPosting (Just t)
|
|
|
|
] ""
|
|
|
|
assertBool "balanced virtual postings need to balance among themselves (2)" (isTransactionBalanced t)
|
2009-04-10 12:06:05 +04:00
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"isSubAccountNameOf" ~: do
|
2009-03-15 15:41:30 +03:00
|
|
|
"assets" `isSubAccountNameOf` "assets" `is` False
|
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-12-16 10:00:43 +03:00
|
|
|
rl <- journalFromString defaultyear_ledger_str
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate (head $ jtxns rl) `is` fromGregorian 2009 1 1
|
2009-03-11 10:23:07 +03:00
|
|
|
return ()
|
|
|
|
|
2009-04-10 09:42:26 +04:00
|
|
|
,"ledgerFile" ~: do
|
2009-09-22 15:55:11 +04:00
|
|
|
assertBool "ledgerFile should parse an empty file" (isRight $ parseWithCtx emptyCtx ledgerFile "")
|
2009-12-16 10:00:43 +03:00
|
|
|
r <- journalFromString "" -- don't know how to get it from ledgerFile
|
2009-12-16 20:58:51 +03:00
|
|
|
assertBool "ledgerFile parsing an empty file should give an empty ledger" $ null $ jtxns r
|
2009-04-10 09:42:26 +04:00
|
|
|
|
2010-03-07 00:47:10 +03:00
|
|
|
,"normaliseMixedAmount" ~: do
|
|
|
|
normaliseMixedAmount (Mixed []) ~?= Mixed [nullamt]
|
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"parsedate" ~: do
|
2009-12-21 08:23:07 +03:00
|
|
|
parsedate "2008/02/03" `is` parsetimewith "%Y/%m/%d" "2008/02/03" date1
|
|
|
|
parsedate "2008-02-03" `is` parsetimewith "%Y/%m/%d" "2008/02/03" date1
|
2009-03-11 10:23:07 +03:00
|
|
|
|
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"
|
2009-09-22 15:55:11 +04:00
|
|
|
let str `gives` result = show (parsewith (periodexpr todaysdate) str) `is` ("Right " ++ result)
|
2009-03-11 10:23:07 +03:00
|
|
|
"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-04-02 10:02:00 +04:00
|
|
|
,"print report tests" ~: TestList
|
2009-03-11 10:23:07 +03:00
|
|
|
[
|
|
|
|
|
|
|
|
"print expenses" ~:
|
|
|
|
do
|
|
|
|
let args = ["expenses"]
|
|
|
|
l <- sampleledgerwithopts [] args
|
2009-12-21 08:23:07 +03:00
|
|
|
t <- getCurrentLocalTime
|
|
|
|
showTransactions (optsToFilterSpec [] args t) l `is` unlines
|
2009-03-11 10:23:07 +03:00
|
|
|
["2008/06/03 * eat & shop"
|
2009-11-25 15:21:59 +03:00
|
|
|
," expenses:food $1"
|
|
|
|
," expenses:supplies $1"
|
|
|
|
," assets:cash $-2"
|
2009-03-11 10:23:07 +03:00
|
|
|
,""
|
|
|
|
]
|
2009-04-02 10:02:00 +04:00
|
|
|
|
|
|
|
, "print report with depth arg" ~:
|
|
|
|
do
|
|
|
|
l <- sampleledger
|
2009-12-21 08:23:07 +03:00
|
|
|
t <- getCurrentLocalTime
|
|
|
|
showTransactions (optsToFilterSpec [Depth "2"] [] t) l `is` unlines
|
2009-04-02 10:02:00 +04:00
|
|
|
["2008/01/01 income"
|
2009-11-25 15:21:59 +03:00
|
|
|
," income:salary $-1"
|
2009-04-02 10:02:00 +04:00
|
|
|
,""
|
|
|
|
,"2008/06/01 gift"
|
2009-11-25 15:21:59 +03:00
|
|
|
," income:gifts $-1"
|
2009-04-02 10:02:00 +04:00
|
|
|
,""
|
|
|
|
,"2008/06/03 * eat & shop"
|
2009-11-25 15:21:59 +03:00
|
|
|
," expenses:food $1"
|
|
|
|
," expenses:supplies $1"
|
|
|
|
," assets:cash $-2"
|
2009-04-02 10:02:00 +04:00
|
|
|
,""
|
|
|
|
,"2008/12/31 * pay off"
|
2009-11-25 15:21:59 +03:00
|
|
|
," liabilities:debts $1"
|
2009-04-02 10:02:00 +04:00
|
|
|
,""
|
|
|
|
]
|
|
|
|
|
2009-03-11 10:23:07 +03:00
|
|
|
]
|
|
|
|
|
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
|
2009-12-21 08:23:07 +03:00
|
|
|
showRegisterReport [] (optsToFilterSpec [] [] t1) l `is` unlines
|
2009-03-11 10:23:07 +03:00
|
|
|
["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-12-21 08:23:07 +03:00
|
|
|
,"register report with cleared option" ~:
|
2009-04-03 15:45:56 +04:00
|
|
|
do
|
2009-12-21 08:23:07 +03:00
|
|
|
let opts = [Cleared]
|
|
|
|
l <- ledgerFromStringWithOpts opts sample_ledger_str
|
|
|
|
showRegisterReport opts (optsToFilterSpec opts [] t1) l `is` unlines
|
2009-04-03 15:45:56 +04:00
|
|
|
["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-12-21 08:23:07 +03:00
|
|
|
,"register report with uncleared option" ~:
|
2009-04-03 15:45:56 +04:00
|
|
|
do
|
2009-12-21 08:23:07 +03:00
|
|
|
let opts = [UnCleared]
|
|
|
|
l <- ledgerFromStringWithOpts opts sample_ledger_str
|
|
|
|
showRegisterReport opts (optsToFilterSpec opts [] t1) l `is` unlines
|
2009-04-03 15:45:56 +04:00
|
|
|
["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"
|
|
|
|
]
|
|
|
|
|
2009-04-02 08:42:10 +04:00
|
|
|
,"register report sorts by date" ~:
|
|
|
|
do
|
2009-12-21 08:23:07 +03:00
|
|
|
l <- ledgerFromStringWithOpts [] $ unlines
|
2009-04-02 08:42:10 +04:00
|
|
|
["2008/02/02 a"
|
|
|
|
," b 1"
|
|
|
|
," c"
|
|
|
|
,""
|
|
|
|
,"2008/01/01 d"
|
|
|
|
," e 1"
|
|
|
|
," f"
|
|
|
|
]
|
2009-12-21 08:23:07 +03:00
|
|
|
registerdates (showRegisterReport [] (optsToFilterSpec [] [] t1) l) `is` ["2008/01/01","2008/02/02"]
|
2009-04-02 08:42:10 +04:00
|
|
|
|
2009-04-01 08:57:05 +04:00
|
|
|
,"register report with account pattern" ~:
|
2009-03-11 10:23:07 +03:00
|
|
|
do
|
|
|
|
l <- sampleledger
|
2009-12-21 08:23:07 +03:00
|
|
|
showRegisterReport [] (optsToFilterSpec [] ["cash"] t1) l `is` unlines
|
2009-03-11 10:23:07 +03:00
|
|
|
["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-04-01 08:57:05 +04:00
|
|
|
do
|
2009-03-11 10:23:07 +03:00
|
|
|
l <- sampleledger
|
2009-12-21 08:23:07 +03:00
|
|
|
showRegisterReport [] (optsToFilterSpec [] ["cAsH"] t1) l `is` unlines
|
2009-03-11 10:23:07 +03:00
|
|
|
["2008/06/03 eat & shop assets:cash $-2 $-2"
|
|
|
|
]
|
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"register report with display expression" ~:
|
2009-04-01 08:57:05 +04:00
|
|
|
do
|
2009-03-11 10:23:07 +03:00
|
|
|
l <- sampleledger
|
2009-09-22 19:56:59 +04:00
|
|
|
let gives displayexpr =
|
2009-12-21 08:23:07 +03:00
|
|
|
(registerdates (showRegisterReport opts (optsToFilterSpec opts [] t1) l) `is`)
|
|
|
|
where opts = [Display displayexpr]
|
2009-03-11 10:23:07 +03:00
|
|
|
"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-04-01 08:57:05 +04:00
|
|
|
do
|
2009-03-11 10:23:07 +03:00
|
|
|
l <- sampleledger
|
|
|
|
let periodexpr `gives` dates = do
|
2009-12-21 08:23:07 +03:00
|
|
|
l' <- sampleledgerwithopts opts []
|
|
|
|
registerdates (showRegisterReport opts (optsToFilterSpec opts [] t1) l') `is` dates
|
|
|
|
where opts = [Period periodexpr]
|
2009-03-11 10:23:07 +03:00
|
|
|
"" `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"]
|
2009-04-03 15:55:48 +04:00
|
|
|
"quarterly" `gives` ["2008/01/01","2008/04/01","2008/10/01"]
|
2009-12-21 08:23:07 +03:00
|
|
|
let opts = [Period "yearly"]
|
|
|
|
showRegisterReport opts (optsToFilterSpec opts [] t1) l `is` unlines
|
2009-03-11 10:23:07 +03:00
|
|
|
["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"
|
|
|
|
]
|
2009-12-21 08:23:07 +03:00
|
|
|
let opts = [Period "quarterly"]
|
|
|
|
registerdates (showRegisterReport opts (optsToFilterSpec opts [] t1) l) `is` ["2008/01/01","2008/04/01","2008/10/01"]
|
|
|
|
let opts = [Period "quarterly",Empty]
|
|
|
|
registerdates (showRegisterReport opts (optsToFilterSpec opts [] t1) l) `is` ["2008/01/01","2008/04/01","2008/07/01","2008/10/01"]
|
2009-03-11 10:23:07 +03:00
|
|
|
|
|
|
|
]
|
|
|
|
|
2009-04-02 06:52:23 +04:00
|
|
|
, "register report with depth arg" ~:
|
|
|
|
do
|
|
|
|
l <- sampleledger
|
2009-12-21 08:23:07 +03:00
|
|
|
let opts = [Depth "2"]
|
|
|
|
showRegisterReport opts (optsToFilterSpec opts [] t1) l `is` unlines
|
2009-04-02 06:52:23 +04:00
|
|
|
["2008/01/01 income income:salary $-1 $-1"
|
|
|
|
,"2008/06/01 gift income:gifts $-1 $-2"
|
|
|
|
,"2008/06/03 eat & shop expenses:food $1 $-1"
|
|
|
|
," expenses:supplies $1 0"
|
|
|
|
," assets:cash $-2 $-2"
|
|
|
|
,"2008/12/31 pay off liabilities:debts $1 $-1"
|
|
|
|
]
|
|
|
|
|
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-05-15 01:43:26 +04:00
|
|
|
,"unicode in balance layout" ~: do
|
2009-12-21 08:23:07 +03:00
|
|
|
l <- ledgerFromStringWithOpts []
|
2009-05-15 01:43:26 +04:00
|
|
|
"2009/01/01 * медвежья шкура\n расходы:покупки 100\n актив:наличные\n"
|
2009-12-21 08:23:07 +03:00
|
|
|
showBalanceReport [] (optsToFilterSpec [] [] t1) l `is` unlines
|
2009-05-15 01:43:26 +04:00
|
|
|
[" -100 актив:наличные"
|
|
|
|
," 100 расходы:покупки"]
|
|
|
|
|
|
|
|
,"unicode in register layout" ~: do
|
2009-12-21 08:23:07 +03:00
|
|
|
l <- ledgerFromStringWithOpts []
|
2009-05-15 01:43:26 +04:00
|
|
|
"2009/01/01 * медвежья шкура\n расходы:покупки 100\n актив:наличные\n"
|
2009-12-21 08:23:07 +03:00
|
|
|
showRegisterReport [] (optsToFilterSpec [] [] t1) l `is` unlines
|
2009-05-15 01:43:26 +04:00
|
|
|
["2009/01/01 медвежья шкура расходы:покупки 100 100"
|
|
|
|
," актив:наличные -100 0"]
|
2009-05-14 21:05:10 +04:00
|
|
|
|
2009-03-15 09:11:18 +03:00
|
|
|
,"smart dates" ~: do
|
2009-09-22 19:56:59 +04:00
|
|
|
let gives = is . fixSmartDateStr (parsedate "2008/11/26")
|
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"
|
2009-01-17 23:07:24 +03:00
|
|
|
"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"
|
2009-01-17 23:21:44 +03:00
|
|
|
-- "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
|
|
|
,"subAccounts" ~: do
|
2009-12-21 08:23:07 +03:00
|
|
|
l <- liftM cacheLedger' sampleledger
|
2009-03-15 07:06:10 +03:00
|
|
|
let a = ledgerAccount l "assets"
|
2009-09-22 15:55:11 +04:00
|
|
|
map aname (ledgerSubAccounts l a) `is` ["assets:bank","assets:cash"]
|
2009-03-15 07:06:10 +03:00
|
|
|
|
2009-12-19 08:57:54 +03:00
|
|
|
-- ,"summarisePostingsInDateSpan" ~: do
|
|
|
|
-- let gives (b,e,depth,showempty,ps) =
|
|
|
|
-- (summarisePostingsInDateSpan (mkdatespan b e) depth showempty ps `is`)
|
|
|
|
-- let ps =
|
|
|
|
-- [
|
|
|
|
-- nullposting{lpdescription="desc",lpaccount="expenses:food:groceries",lpamount=Mixed [dollars 1]}
|
|
|
|
-- ,nullposting{lpdescription="desc",lpaccount="expenses:food:dining", lpamount=Mixed [dollars 2]}
|
|
|
|
-- ,nullposting{lpdescription="desc",lpaccount="expenses:food", lpamount=Mixed [dollars 4]}
|
|
|
|
-- ,nullposting{lpdescription="desc",lpaccount="expenses:food:dining", lpamount=Mixed [dollars 8]}
|
|
|
|
-- ]
|
|
|
|
-- ("2008/01/01","2009/01/01",0,9999,False,[]) `gives`
|
|
|
|
-- []
|
|
|
|
-- ("2008/01/01","2009/01/01",0,9999,True,[]) `gives`
|
|
|
|
-- [
|
|
|
|
-- nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31"}
|
|
|
|
-- ]
|
|
|
|
-- ("2008/01/01","2009/01/01",0,9999,False,ts) `gives`
|
|
|
|
-- [
|
|
|
|
-- nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31",lpaccount="expenses:food", lpamount=Mixed [dollars 4]}
|
|
|
|
-- ,nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31",lpaccount="expenses:food:dining", lpamount=Mixed [dollars 10]}
|
|
|
|
-- ,nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31",lpaccount="expenses:food:groceries",lpamount=Mixed [dollars 1]}
|
|
|
|
-- ]
|
|
|
|
-- ("2008/01/01","2009/01/01",0,2,False,ts) `gives`
|
|
|
|
-- [
|
|
|
|
-- nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31",lpaccount="expenses:food",lpamount=Mixed [dollars 15]}
|
|
|
|
-- ]
|
|
|
|
-- ("2008/01/01","2009/01/01",0,1,False,ts) `gives`
|
|
|
|
-- [
|
|
|
|
-- nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31",lpaccount="expenses",lpamount=Mixed [dollars 15]}
|
|
|
|
-- ]
|
|
|
|
-- ("2008/01/01","2009/01/01",0,0,False,ts) `gives`
|
|
|
|
-- [
|
|
|
|
-- nullposting{lpdate=parsedate "2008/01/01",lpdescription="- 2008/12/31",lpaccount="",lpamount=Mixed [dollars 15]}
|
|
|
|
-- ]
|
2008-11-22 09:35:10 +03:00
|
|
|
|
2009-03-11 10:23:07 +03:00
|
|
|
]
|
2008-11-27 00:18:24 +03:00
|
|
|
|
2008-10-16 01:10:36 +04:00
|
|
|
|
2010-03-09 00:47:36 +03:00
|
|
|
-- fixtures/test data
|
2007-02-09 04:23:12 +03:00
|
|
|
|
2009-12-21 08:23:07 +03:00
|
|
|
date1 = parsedate "2008/11/26"
|
|
|
|
t1 = LocalTime date1 midday
|
|
|
|
|
|
|
|
sampleledger = ledgerFromStringWithOpts [] sample_ledger_str
|
|
|
|
sampleledgerwithopts opts _ = ledgerFromStringWithOpts opts sample_ledger_str
|
2008-12-05 11:33:15 +03:00
|
|
|
|
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
|
|
|
|
2008-12-05 11:35:52 +03:00
|
|
|
write_sample_ledger = writeFile "sample.ledger" sample_ledger_str
|
|
|
|
|
2009-03-11 10:23:07 +03:00
|
|
|
entry2_str = unlines
|
|
|
|
["2007/01/27 * joes diner"
|
2009-04-08 03:58:04 +04:00
|
|
|
," expenses:food:dining $10.00"
|
|
|
|
," expenses:gifts $10.00"
|
|
|
|
," assets:checking $-20.00"
|
2009-03-11 10:23:07 +03: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 "
|
|
|
|
,""
|
|
|
|
]
|
2007-02-10 08:09:42 +03:00
|
|
|
|
2009-12-16 10:00:43 +03:00
|
|
|
journal7 = Journal
|
2007-02-11 02:32:45 +03:00
|
|
|
[]
|
|
|
|
[]
|
2007-02-10 08:09:42 +03:00
|
|
|
[
|
2009-12-19 06:44:52 +03:00
|
|
|
txnTieKnot $ Transaction {
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate=parsedate "2007/01/01",
|
|
|
|
teffectivedate=Nothing,
|
|
|
|
tstatus=False,
|
|
|
|
tcode="*",
|
|
|
|
tdescription="opening balance",
|
|
|
|
tcomment="",
|
|
|
|
tpostings=[
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:cash",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars 4.82]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
},
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="equity:opening balances",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars (-4.82)]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
|
|
|
],
|
2009-12-16 20:58:51 +03:00
|
|
|
tpreceding_comment_lines=""
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
2007-02-16 12:00:17 +03:00
|
|
|
,
|
2009-12-19 06:44:52 +03:00
|
|
|
txnTieKnot $ Transaction {
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate=parsedate "2007/02/01",
|
|
|
|
teffectivedate=Nothing,
|
|
|
|
tstatus=False,
|
|
|
|
tcode="*",
|
|
|
|
tdescription="ayres suites",
|
|
|
|
tcomment="",
|
|
|
|
tpostings=[
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="expenses:vacation",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars 179.92]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
},
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:checking",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars (-179.92)]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
|
|
|
],
|
2009-12-16 20:58:51 +03:00
|
|
|
tpreceding_comment_lines=""
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
2007-02-16 12:00:17 +03:00
|
|
|
,
|
2009-12-19 06:44:52 +03:00
|
|
|
txnTieKnot $ Transaction {
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate=parsedate "2007/01/02",
|
|
|
|
teffectivedate=Nothing,
|
|
|
|
tstatus=False,
|
|
|
|
tcode="*",
|
|
|
|
tdescription="auto transfer to savings",
|
|
|
|
tcomment="",
|
|
|
|
tpostings=[
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:saving",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars 200]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
},
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:checking",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars (-200)]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
|
|
|
],
|
2009-12-16 20:58:51 +03:00
|
|
|
tpreceding_comment_lines=""
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
2007-02-16 12:00:17 +03:00
|
|
|
,
|
2009-12-19 06:44:52 +03:00
|
|
|
txnTieKnot $ Transaction {
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate=parsedate "2007/01/03",
|
|
|
|
teffectivedate=Nothing,
|
|
|
|
tstatus=False,
|
|
|
|
tcode="*",
|
|
|
|
tdescription="poquito mas",
|
|
|
|
tcomment="",
|
|
|
|
tpostings=[
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="expenses:food:dining",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars 4.82]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
},
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:cash",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars (-4.82)]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
|
|
|
],
|
2009-12-16 20:58:51 +03:00
|
|
|
tpreceding_comment_lines=""
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
2007-02-16 12:00:17 +03:00
|
|
|
,
|
2009-12-19 06:44:52 +03:00
|
|
|
txnTieKnot $ Transaction {
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate=parsedate "2007/01/03",
|
|
|
|
teffectivedate=Nothing,
|
|
|
|
tstatus=False,
|
|
|
|
tcode="*",
|
|
|
|
tdescription="verizon",
|
|
|
|
tcomment="",
|
|
|
|
tpostings=[
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="expenses:phone",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars 95.11]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
},
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:checking",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars (-95.11)]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
|
|
|
],
|
2009-12-16 20:58:51 +03:00
|
|
|
tpreceding_comment_lines=""
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
2007-02-16 12:00:17 +03:00
|
|
|
,
|
2009-12-19 06:44:52 +03:00
|
|
|
txnTieKnot $ Transaction {
|
2009-12-16 20:58:51 +03:00
|
|
|
tdate=parsedate "2007/01/03",
|
|
|
|
teffectivedate=Nothing,
|
|
|
|
tstatus=False,
|
|
|
|
tcode="*",
|
|
|
|
tdescription="discover",
|
|
|
|
tcomment="",
|
|
|
|
tpostings=[
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="liabilities:credit cards:discover",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars 80]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
},
|
2009-04-03 14:58:05 +04:00
|
|
|
Posting {
|
|
|
|
pstatus=False,
|
2009-12-16 20:58:51 +03:00
|
|
|
paccount="assets:checking",
|
2009-04-03 14:58:05 +04:00
|
|
|
pamount=(Mixed [dollars (-80)]),
|
|
|
|
pcomment="",
|
2009-12-19 06:44:52 +03:00
|
|
|
ptype=RegularPosting,
|
|
|
|
ptransaction=Nothing
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
|
|
|
],
|
2009-12-16 20:58:51 +03:00
|
|
|
tpreceding_comment_lines=""
|
2008-10-10 11:39:20 +04:00
|
|
|
}
|
2009-12-16 20:58:51 +03:00
|
|
|
]
|
2008-12-16 13:54:20 +03:00
|
|
|
[]
|
2008-12-08 04:49:31 +03:00
|
|
|
[]
|
2008-06-28 08:44:33 +04:00
|
|
|
""
|
2009-04-08 09:30:26 +04:00
|
|
|
""
|
2009-08-12 13:21:46 +04:00
|
|
|
(TOD 0 0)
|
2009-12-21 08:43:10 +03:00
|
|
|
""
|
2007-02-10 08:09:42 +03:00
|
|
|
|
2009-12-21 08:23:07 +03:00
|
|
|
ledger7 = cacheLedger journal7
|
2007-07-03 21:25:16 +04:00
|
|
|
|
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"
|
2009-04-04 00:04:51 +04:00
|
|
|
timelogentry1 = TimeLogEntry In (parsedatetime "2007/03/11 16:19:00") "hledger"
|
2007-03-12 03:13:53 +03:00
|
|
|
|
2007-03-12 10:40:33 +03:00
|
|
|
timelogentry2_str = "o 2007/03/11 16:30:00\n"
|
2009-04-04 00:04:51 +04:00
|
|
|
timelogentry2 = TimeLogEntry Out (parsedatetime "2007/03/11 16:30:00") ""
|
2007-03-12 03:13:53 +03:00
|
|
|
|
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]}]
|
2009-09-22 20:51:27 +04:00
|
|
|
a3 = Mixed $ amounts a1 ++ amounts a2
|
2008-11-22 23:35:36 +03:00
|
|
|
|
2009-12-16 10:00:43 +03:00
|
|
|
journalWithAmounts :: [String] -> Journal
|
2009-12-16 20:58:51 +03:00
|
|
|
journalWithAmounts as =
|
|
|
|
Journal
|
|
|
|
[]
|
|
|
|
[]
|
2009-12-19 08:57:54 +03:00
|
|
|
[t | a <- as, let t = nulltransaction{tdescription=a,tpostings=[nullposting{pamount=parse a,ptransaction=Just t}]}]
|
2008-12-08 04:49:31 +03:00
|
|
|
[]
|
2008-12-16 13:54:20 +03:00
|
|
|
[]
|
2008-11-22 12:23:10 +03:00
|
|
|
""
|
2009-04-08 09:30:26 +04:00
|
|
|
""
|
2009-08-12 13:21:46 +04:00
|
|
|
(TOD 0 0)
|
2009-12-21 08:43:10 +03:00
|
|
|
""
|
2009-06-20 07:59:37 +04:00
|
|
|
where parse = fromparse . parseWithCtx emptyCtx postingamount . (" "++)
|
2008-11-22 12:23:10 +03:00
|
|
|
|