hledger/tests
2020-10-19 08:59:25 -07:00
..
addons
balance lib: Elide boring parents in tree mode even when using --empty. 2020-08-11 17:24:50 -07:00
cli ;cli: more tests for #1363 2020-10-18 21:47:01 -07:00
i18n lib: quoteIfNeeded should not escape the backslashes in unicode code points. 2020-10-18 21:08:25 -07:00
journal ;fix failing test 2020-09-19 09:11:10 -07:00
print
register lib: More consistent period formatting. 2020-06-04 19:30:42 -07:00
0unittests.test
account-aliases.test
accounts-sorting.test
accounts.test cli: Allow --drop in account command in tree mode. 2020-07-07 16:05:05 -07:00
add.test
amount-rendering.test lib, cli: Use --flat as the default mode for all reports. 2020-07-07 15:49:08 -07:00
balancesheet.test make account type autodetection (& hledger-smooth) case insensitive again (#1341) 2020-09-03 09:52:00 -07:00
cashflow.test lib: Refactor MultiBalanceReport row sorting, make sure totals are calculated after pruning. 2020-07-07 18:46:34 -07:00
close.test
codes.test codes: functional tests 2020-07-07 14:00:02 -07:00
csv.test csv: Add docs and integration test for & operator 2020-07-07 12:51:01 -07:00
csvtest.sh ;csv: fix functional tests breakage on mac 2020-06-22 15:44:49 -07:00
descriptions.test
forecast.test journal: apply commodity styles to forecasted transactions (#1371) 2020-10-19 08:59:25 -07:00
incomestatement.test cli: No longer force --no-total in compound balance reports when using --percent. 2020-08-11 15:16:29 -07:00
notes.test
payees.test
pivot.test lib: More consistent period formatting. 2020-06-04 19:30:42 -07:00
prices.test
query-desc.test
query-tag.test
README.md
rewrite.test
roi.test
sample.journal
stats.test
tags.test
timeclock.test
timedot.test

hledgers functional tests. See also Contributor Guide: Tests.

These mainly test the hledger CLI and (indirectly) hledger-lib. They are organised roughly by component.

Running these requires shelltestrunner. Older test files are in format 1; newer ones use format 3 (preferred). Some tests invoke unix commands so will not run in a Windows CMD shell.

Run them all (also builds hledger):

make functest

See how the Makefile is invoking shelltestrunner:

$ make functest -n
stack build --fast hledger
(COLUMNS=80 stack exec -- shelltest --execdir -j16 --hide-successes --exclude=/_ -w `stack exec -- which hledger` tests \
        && echo functest PASSED) || (echo functest FAILED; false)

These are the most important:

  • COLUMNS=80 makes output independent of your terminal width.
  • --execdir runs each test within its own directory.
  • -w `stack exec -- which hledger` ensures you are testing the hledger executable that was just built.
  • -j16 runs tests in parallel which is much faster.

Run only the tests matching a regular expression:

$ COLUMNS=80 shelltest --execdir -w `stack exec -- which hledger` tests -i balance-assertions.*19
:tests/journal/balance-assertions.test:19: [OK]

         Test Cases  Total      
 Passed  1           1          
 Failed  0           0          
 Total   1           1          

Run only the tests in one file:

$ COLUMNS=80 shelltest --execdir -w `stack exec -- which hledger` tests/cli/query-args.test
:tests/cli/query-args.test:1: [OK]
:tests/cli/query-args.test:2: [OK]
:tests/cli/query-args.test:3: [OK]

         Test Cases  Total      
 Passed  3           3          
 Failed  0           0          
 Total   3           3          

Run a test repeatedly as its file is changed:

$ ls tests/cli/query-args.test | entr bash -c "COLUMNS=80 shelltest --execdir -w `stack exec -- which hledger` tests/cli/query-args.test -i1"
:tests/cli/query-args.test:1: [OK]

         Test Cases  Total      
 Passed  1           1          
 Failed  0           0          
 Total   1           1          
:tests/cli/query-args.test:1: [OK]

         Test Cases  Total      
 Passed  1           1          
 Failed  0           0          
 Total   1           1          
  C-c C-c

More shelltestrunner options:

$ shelltest --help