reckon 0.5.2 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +50 -0
  3. data/.gitignore +2 -0
  4. data/.ruby-version +1 -1
  5. data/CHANGELOG.md +66 -2
  6. data/Gemfile.lock +1 -5
  7. data/README.md +76 -16
  8. data/Rakefile +17 -1
  9. data/bin/reckon +6 -1
  10. data/lib/reckon.rb +2 -5
  11. data/lib/reckon/app.rb +156 -73
  12. data/lib/reckon/cosine_similarity.rb +91 -89
  13. data/lib/reckon/csv_parser.rb +8 -8
  14. data/lib/reckon/date_column.rb +10 -0
  15. data/lib/reckon/ledger_parser.rb +11 -1
  16. data/lib/reckon/logger.rb +4 -0
  17. data/lib/reckon/money.rb +48 -48
  18. data/lib/reckon/version.rb +1 -1
  19. data/reckon.gemspec +1 -2
  20. data/spec/integration/another_bank_example/input.csv +9 -0
  21. data/spec/integration/another_bank_example/output.ledger +36 -0
  22. data/spec/integration/another_bank_example/test_args +1 -0
  23. data/spec/integration/austrian_example/input.csv +13 -0
  24. data/spec/integration/austrian_example/output.ledger +52 -0
  25. data/spec/integration/austrian_example/test_args +2 -0
  26. data/spec/integration/bom_utf8_file/input.csv +3 -0
  27. data/spec/integration/bom_utf8_file/output.ledger +4 -0
  28. data/spec/integration/bom_utf8_file/test_args +3 -0
  29. data/spec/integration/broker_canada_example/input.csv +12 -0
  30. data/spec/integration/broker_canada_example/output.ledger +48 -0
  31. data/spec/integration/broker_canada_example/test_args +1 -0
  32. data/spec/integration/chase/account_tokens_and_regex/output.ledger +36 -0
  33. data/spec/integration/chase/account_tokens_and_regex/test_args +2 -0
  34. data/spec/integration/chase/account_tokens_and_regex/tokens.yml +16 -0
  35. data/spec/integration/chase/default_account_names/output.ledger +36 -0
  36. data/spec/integration/chase/default_account_names/test_args +3 -0
  37. data/spec/integration/chase/input.csv +9 -0
  38. data/spec/integration/chase/learn_from_existing/learn.ledger +7 -0
  39. data/spec/integration/chase/learn_from_existing/output.ledger +36 -0
  40. data/spec/integration/chase/learn_from_existing/test_args +1 -0
  41. data/spec/integration/chase/simple/output.ledger +36 -0
  42. data/spec/integration/chase/simple/test_args +1 -0
  43. data/spec/integration/danish_kroner_nordea_example/input.csv +6 -0
  44. data/spec/integration/danish_kroner_nordea_example/output.ledger +24 -0
  45. data/spec/integration/danish_kroner_nordea_example/test_args +1 -0
  46. data/spec/integration/english_date_example/input.csv +3 -0
  47. data/spec/integration/english_date_example/output.ledger +12 -0
  48. data/spec/integration/english_date_example/test_args +1 -0
  49. data/spec/integration/extratofake/input.csv +24 -0
  50. data/spec/integration/extratofake/output.ledger +92 -0
  51. data/spec/integration/extratofake/test_args +1 -0
  52. data/spec/integration/french_example/input.csv +9 -0
  53. data/spec/integration/french_example/output.ledger +36 -0
  54. data/spec/integration/french_example/test_args +2 -0
  55. data/spec/integration/german_date_example/input.csv +3 -0
  56. data/spec/integration/german_date_example/output.ledger +12 -0
  57. data/spec/integration/german_date_example/test_args +1 -0
  58. data/spec/integration/harder_date_example/input.csv +5 -0
  59. data/spec/integration/harder_date_example/output.ledger +20 -0
  60. data/spec/integration/harder_date_example/test_args +1 -0
  61. data/spec/integration/ing/input.csv +3 -0
  62. data/spec/integration/ing/output.ledger +12 -0
  63. data/spec/integration/ing/test_args +1 -0
  64. data/spec/integration/intuit_mint_example/input.csv +7 -0
  65. data/spec/integration/intuit_mint_example/output.ledger +28 -0
  66. data/spec/integration/intuit_mint_example/test_args +1 -0
  67. data/spec/integration/invalid_header_example/input.csv +6 -0
  68. data/spec/integration/invalid_header_example/output.ledger +8 -0
  69. data/spec/integration/invalid_header_example/test_args +1 -0
  70. data/spec/integration/inversed_credit_card/input.csv +16 -0
  71. data/spec/integration/inversed_credit_card/output.ledger +64 -0
  72. data/spec/integration/inversed_credit_card/test_args +1 -0
  73. data/spec/integration/nationwide/input.csv +4 -0
  74. data/spec/integration/nationwide/output.ledger +16 -0
  75. data/spec/integration/nationwide/test_args +1 -0
  76. data/spec/integration/regression/issue_51_account_tokens/input.csv +8 -0
  77. data/spec/integration/regression/issue_51_account_tokens/output.ledger +32 -0
  78. data/spec/integration/regression/issue_51_account_tokens/test_args +4 -0
  79. data/spec/integration/regression/issue_51_account_tokens/tokens.yml +9 -0
  80. data/spec/integration/regression/issue_64_date_column/input.csv +3 -0
  81. data/spec/integration/regression/issue_64_date_column/output.ledger +8 -0
  82. data/spec/integration/regression/issue_64_date_column/test_args +1 -0
  83. data/spec/integration/regression/issue_73_account_token_matching/input.csv +2 -0
  84. data/spec/integration/regression/issue_73_account_token_matching/output.ledger +4 -0
  85. data/spec/integration/regression/issue_73_account_token_matching/test_args +6 -0
  86. data/spec/integration/regression/issue_73_account_token_matching/tokens.yml +8 -0
  87. data/spec/integration/regression/issue_85_date_example/input.csv +2 -0
  88. data/spec/integration/regression/issue_85_date_example/output.ledger +8 -0
  89. data/spec/integration/regression/issue_85_date_example/test_args +1 -0
  90. data/spec/integration/spanish_date_example/input.csv +3 -0
  91. data/spec/integration/spanish_date_example/output.ledger +12 -0
  92. data/spec/integration/spanish_date_example/test_args +1 -0
  93. data/spec/integration/suntrust/input.csv +7 -0
  94. data/spec/integration/suntrust/output.ledger +28 -0
  95. data/spec/integration/suntrust/test_args +1 -0
  96. data/spec/integration/test.sh +82 -0
  97. data/spec/integration/test_money_column/input.csv +3 -0
  98. data/spec/integration/test_money_column/output.ledger +8 -0
  99. data/spec/integration/test_money_column/test_args +1 -0
  100. data/spec/integration/two_money_columns/input.csv +5 -0
  101. data/spec/integration/two_money_columns/output.ledger +20 -0
  102. data/spec/integration/two_money_columns/test_args +1 -0
  103. data/spec/integration/yyyymmdd_date_example/input.csv +1 -0
  104. data/spec/integration/yyyymmdd_date_example/output.ledger +4 -0
  105. data/spec/integration/yyyymmdd_date_example/test_args +1 -0
  106. data/spec/reckon/app_spec.rb +18 -2
  107. data/spec/reckon/csv_parser_spec.rb +5 -0
  108. data/spec/reckon/ledger_parser_spec.rb +42 -5
  109. data/spec/reckon/money_column_spec.rb +24 -24
  110. data/spec/reckon/money_spec.rb +13 -32
  111. metadata +94 -21
  112. data/.travis.yml +0 -13
@@ -0,0 +1,32 @@
1
+ 2015-01-09 05354 SUBWAY
2
+ Assets:Chequing $8.19
3
+ Expenses:Dining:Resturant
4
+
5
+ 2015-02-18 WENDY'S #6338
6
+ Assets:Chequing $8.55
7
+ Expenses:Dining:Resturant
8
+
9
+ 2015-02-25 WENDY'S #6338
10
+ Assets:Chequing $9.14
11
+ Expenses:Dining:Resturant
12
+
13
+ 2015-02-25 WENDY'S #6338
14
+ Assets:Chequing $8.55
15
+ Expenses:Dining:Resturant
16
+
17
+ 2015-02-27 WENDY'S #6338
18
+ Assets:Chequing $5.85
19
+ Expenses:Dining:Resturant
20
+
21
+ 2015-03-09 WENDY'S #6338
22
+ Assets:Chequing $17.70
23
+ Expenses:Dining:Resturant
24
+
25
+ 2015-03-16 WENDY'S #6338
26
+ Assets:Chequing $11.15
27
+ Expenses:Dining:Resturant
28
+
29
+ 2015-03-23 WENDY'S
30
+ Assets:Chequing $10.12
31
+ Expenses:Dining:Resturant
32
+
@@ -0,0 +1,4 @@
1
+ -f input.csv --unattended --account Assets:Chequing \
2
+ --ignore-columns 5 \
3
+ --account-tokens tokens.yml
4
+
@@ -0,0 +1,9 @@
1
+ Expenses:
2
+ Dining:
3
+ Coffee:
4
+ - 'STARBUCKS'
5
+ - 'TIM HORTON'
6
+ Resturant:
7
+ - 'WENDY''S'
8
+ - 'SUBWAY'
9
+ - 'BARAKAT'
@@ -0,0 +1,3 @@
1
+ "Date","Note","Amount"
2
+ "2012/3/22","DEPOSIT","50.00"
3
+ "2012/3/23","TRANSFER TO SAVINGS","-10.00"
@@ -0,0 +1,8 @@
1
+ 2012-03-22 DEPOSIT
2
+ Assets:Bank:Checking $50.00
3
+ Income:Unknown
4
+
5
+ 2012-03-23 TRANSFER TO SAVINGS
6
+ Expenses:Unknown
7
+ Assets:Bank:Checking -$10.00
8
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking
@@ -0,0 +1,2 @@
1
+ Transaction Date,Description,Amount,Category
2
+ 07/06/2017,TRIPLE T CAR WASH CHAMPAIGN IL,$27.00,Automotive
@@ -0,0 +1,4 @@
1
+ 2017-07-06 TRIPLE T CAR WASH CHAMPAIGN IL
2
+ Liabilities:Credit Cards:Visa $27.00
3
+ Expenses:Automotive:Car Wash
4
+
@@ -0,0 +1,6 @@
1
+ -f input.csv --unattended --account 'Liabilities:Credit Cards:Visa' \
2
+ --contains-header 1 \
3
+ --ignore-columns 4 \
4
+ --date-format %m/%d/%Y \
5
+ --account-tokens tokens.yml
6
+
@@ -0,0 +1,8 @@
1
+ Expenses:
2
+ Automotive:
3
+ Car Wash:
4
+ - 'TRIPLE T CAR WASH CHAMPAIGN IL'
5
+ - "BIG T's CAR WASH"
6
+ Maintenance:
7
+ - 'Autozone'
8
+ - "O'Reillys auto parts"
@@ -0,0 +1,2 @@
1
+ Visa, 4514010000000000, 2020-02-20, , GOJEK SINGAPORE, 8.10 SGD @ .976500000000, -7.91, D
2
+ Visa, 4514010000000000, 2020-02-20, , GOJEK SINGAPORE, 6.00 SGD @ .976600000000, -5.86, D
@@ -0,0 +1,8 @@
1
+ 2020-02-20 Visa; 4514010000000000; GOJEK SINGAPORE; 6.00 SGD @ .976600000000; D
2
+ Expenses:Unknown
3
+ Assets:Bank:Checking -$5.86
4
+
5
+ 2020-02-20 Visa; 4514010000000000; GOJEK SINGAPORE; 8.10 SGD @ .976500000000; D
6
+ Expenses:Unknown
7
+ Assets:Bank:Checking -$7.91
8
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking
@@ -0,0 +1,3 @@
1
+ 02/12/2009,Check - 0000000122,122,-$76.00,"","$1,750.06"
2
+ 02/12/2009,BLARG R SH 456930,"","",+$327.49,"$1,826.06"
3
+ 02/12/2009,Check - 0000000112,112,-$800.00,"","$1,498.57"
@@ -0,0 +1,12 @@
1
+ 2009-12-02 BLARG R SH 456930; $1,826.06
2
+ Assets:Bank:Checking $327.49
3
+ Income:Unknown
4
+
5
+ 2009-12-02 Check - 0000000122; 122; $1,750.06
6
+ Income:Unknown
7
+ Assets:Bank:Checking -$76.00
8
+
9
+ 2009-12-02 Check - 0000000112; 112; $1,498.57
10
+ Income:Unknown
11
+ Assets:Bank:Checking -$800.00
12
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking --date-format '%d/%m/%Y'
@@ -0,0 +1,7 @@
1
+ 11/01/2014,0, Deposit,0,500.00,500.00
2
+ 11/02/2014,101,Check,100.00,0,400.00
3
+ 11/03/2014,102,Check,100.00,0,300.00
4
+ 11/04/2014,103,Check,100.00,0,200.00
5
+ 11/05/2014,104,Check,100.00,0,100.00
6
+ 11/06/2014,105,Check,100.00,0,0.00
7
+ 11/17/2014,0, Deposit,0,700.00,700.00
@@ -0,0 +1,28 @@
1
+ 2014-11-01 0; Deposit; 500.00
2
+ Assets:Bank:Checking $500.00
3
+ Income:Unknown
4
+
5
+ 2014-11-02 101; Check; 400.00
6
+ Expenses:Unknown
7
+ Assets:Bank:Checking -$100.00
8
+
9
+ 2014-11-03 102; Check; 300.00
10
+ Expenses:Unknown
11
+ Assets:Bank:Checking -$100.00
12
+
13
+ 2014-11-04 103; Check; 200.00
14
+ Expenses:Unknown
15
+ Assets:Bank:Checking -$100.00
16
+
17
+ 2014-11-05 104; Check; 100.00
18
+ Expenses:Unknown
19
+ Assets:Bank:Checking -$100.00
20
+
21
+ 2014-11-06 105; Check; 0.00
22
+ Expenses:Unknown
23
+ Assets:Bank:Checking -$100.00
24
+
25
+ 2014-11-17 0; Deposit; 700.00
26
+ Assets:Bank:Checking $700.00
27
+ Income:Unknown
28
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking
@@ -0,0 +1,82 @@
1
+ #!/bin/bash
2
+
3
+ # set -x
4
+
5
+ set -Euo pipefail
6
+
7
+ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
8
+ TEST_DIFF=""
9
+ OUTPUT=""
10
+ RECKON_CMD="env RUBYLIB=$SCRIPT_DIR/../../lib:$RUBYLIB reckon -v"
11
+
12
+ main () {
13
+ trap test_fail EXIT
14
+
15
+ if [[ $# -eq 1 ]]; then
16
+ TESTS=$1/test_args
17
+ else
18
+ TESTS=$(find "$SCRIPT_DIR" -name 'test_args')
19
+ fi
20
+
21
+ echo > test.log
22
+
23
+ for t in $TESTS; do
24
+ OUTPUT_FILE=$(mktemp)
25
+ TEST_DIR=$(dirname "$t")
26
+ pushd "$TEST_DIR" >/dev/null || exit 1
27
+ echo "$TEST_DIR Running..."
28
+ TEST_CMD="$RECKON_CMD -o $OUTPUT_FILE $(cat test_args)"
29
+ TEST_LOG=$(eval "$TEST_CMD" 2>&1)
30
+ ERROR=0
31
+
32
+ compare_output "$OUTPUT_FILE"
33
+
34
+ popd >/dev/null || exit 1
35
+ # have to save output after popd
36
+ echo -e "\n\n======>$TEST_DIR" >> test.log
37
+ echo -e "TEST_CMD\n$TEST_LOG" >> test.log
38
+
39
+ if [[ $ERROR -ne 0 ]]; then
40
+ exit 1
41
+ fi
42
+ done
43
+ }
44
+
45
+ test_fail () {
46
+ STATUS=$?
47
+ if [[ $STATUS -ne 0 ]]; then
48
+ echo -e "FAILED!!!\n$TEST_DIFF\nTest output saved to $OUTPUT_FILE\n"
49
+ exit $STATUS
50
+ fi
51
+ }
52
+
53
+ compare_output_for () {
54
+ OUTPUT_FILE=$1
55
+ LEDGER=$2
56
+
57
+ TEST_DIFF=$(diff -u <($LEDGER -f output.ledger r --date-format %F 2>&1) <($LEDGER -f "$OUTPUT_FILE" r --date-format %F 2>&1) )
58
+
59
+ # ${#} is character length, test that there was no output from diff
60
+ if [ ${#TEST_DIFF} -eq 0 ]; then
61
+ return 0
62
+ else
63
+ return 1
64
+ fi
65
+ }
66
+
67
+ compare_output () {
68
+ OUTPUT_FILE=$1
69
+
70
+ for n in {ledger,hledger}; do
71
+ echo -n " - $n..."
72
+ if compare_output_for "$OUTPUT_FILE" "$n"; then
73
+ echo "SUCCESS!"
74
+ else
75
+ echo "FAILED!"
76
+ ERROR=1
77
+ return 0
78
+ fi
79
+ done
80
+ }
81
+
82
+ main "$@"
@@ -0,0 +1,3 @@
1
+ "Date","Note","Amount"
2
+ "2012/3/22","DEPOSIT","50.00"
3
+ "2012/3/23","TRANSFER TO SAVINGS","-10.00"
@@ -0,0 +1,8 @@
1
+ 2012-03-22 DEPOSIT
2
+ Assets:Bank:Checking $50.00
3
+ Income:Unknown
4
+
5
+ 2012-03-23 TRANSFER TO SAVINGS
6
+ Expenses:Unknown
7
+ Assets:Bank:Checking -$10.00
8
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking
@@ -0,0 +1,5 @@
1
+ 4/1/2008,Check - 0000000122,122,-$76.00,"","$1,750.06"
2
+ 3/28/2008,BLARG R SH 456930,"","",+$327.49,"$1,826.06"
3
+ 3/27/2008,Check - 0000000112,112,-$800.00,"","$1,498.57"
4
+ 3/26/2008,Check - 0000000251,251,-$88.55,"","$1,298.57"
5
+ 3/26/2008,Check - 0000000251,251,"","+$88.55","$1,298.57"
@@ -0,0 +1,20 @@
1
+ 2008-03-26 Check - 0000000251; 251; $1,298.57
2
+ Assets:Bank:Checking $88.55
3
+ Income:Unknown
4
+
5
+ 2008-03-26 Check - 0000000251; 251; $1,298.57
6
+ Income:Unknown
7
+ Assets:Bank:Checking -$88.55
8
+
9
+ 2008-03-27 Check - 0000000112; 112; $1,498.57
10
+ Income:Unknown
11
+ Assets:Bank:Checking -$800.00
12
+
13
+ 2008-03-28 BLARG R SH 456930; $1,826.06
14
+ Assets:Bank:Checking $327.49
15
+ Income:Unknown
16
+
17
+ 2008-04-01 Check - 0000000122; 122; $1,750.06
18
+ Income:Unknown
19
+ Assets:Bank:Checking -$76.00
20
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking
@@ -0,0 +1 @@
1
+ DEBIT,20121231,"ODESK***BAL-27DEC12 650-12345 CA 12/28",-123.45
@@ -0,0 +1,4 @@
1
+ 2012-12-31 DEBIT; ODESK***BAL-27DEC12 650-12345 CA 12/28
2
+ Expenses:Unknown
3
+ Assets:Bank:Checking -$123.45
4
+
@@ -0,0 +1 @@
1
+ -f input.csv --unattended --account Assets:Bank:Checking
@@ -8,7 +8,7 @@ describe Reckon::App do
8
8
  context 'with chase csv input' do
9
9
  before do
10
10
  @chase = Reckon::App.new(string: BANK_CSV)
11
- @chase.learn_from(BANK_LEDGER)
11
+ @chase.learn_from_ledger(BANK_LEDGER)
12
12
  @rows = []
13
13
  @chase.each_row_backwards { |row| @rows.push(row) }
14
14
  end
@@ -68,7 +68,7 @@ describe Reckon::App do
68
68
  end
69
69
 
70
70
  it 'should learn from a ledger file' do
71
- chase.learn_from( BANK_LEDGER )
71
+ chase.learn_from_ledger(BANK_LEDGER)
72
72
  chase.walk_backwards
73
73
  output_file.string.scan('Expenses:Books').count.should == 1
74
74
  end
@@ -86,6 +86,22 @@ describe Reckon::App do
86
86
  expect(output_file.string.scan('Expenses:Websites').count).to eq(2)
87
87
  end
88
88
  end
89
+
90
+ describe 'csv from STDIN' do
91
+ it 'should assign to :string option' do
92
+ options = Reckon::App.parse_opts(
93
+ %w[-f - --unattended --account bank],
94
+ StringIO.new('foo,bar,baz')
95
+ )
96
+ expect(options[:string]).to eq('foo,bar,baz')
97
+ end
98
+
99
+ it 'should require --unattended flag' do
100
+ expect {Reckon::App.parse_opts(%w[-f - --account bank])}.to(
101
+ raise_error(RuntimeError, "--unattended is required to use STDIN as CSV source.")
102
+ )
103
+ end
104
+ end
89
105
  end
90
106
 
91
107
  context "Issue #73 - regression test" do
@@ -232,6 +232,11 @@ describe Reckon::CSVParser do
232
232
  parser = Reckon::CSVParser.new(:string => '01/09/2015,05354 SUBWAY,8.19,,',:date_format => '%d/%m/%Y')
233
233
  parser.description_for(0).should == '05354 SUBWAY'
234
234
  end
235
+
236
+ it "should handle nil description" do
237
+ parser = Reckon::CSVParser.new(string: '2015-09-01,test,3.99')
238
+ expect(parser.description_for(1)).to eq("")
239
+ end
235
240
  end
236
241
 
237
242
  describe "pretty_money_for" do
@@ -20,14 +20,16 @@ describe Reckon::LedgerParser do
20
20
  formats = ["%Y/%m/%d", "%Y-%m-%d"]
21
21
  types = [' ! ', ' * ', ' ']
22
22
  delimiters = [" ", "\t", "\t\t"]
23
+ comment_chars = ';#%*|'
23
24
  currency_delimiters = delimiters + ['']
24
25
  currencies = ['', '$', '£']
25
26
  property_of do
26
27
  Rantly do
27
28
  description = Proc.new do
28
- sized(15){string}.tr(%q{'`:*\\},'').gsub(/\s+/, ' ').gsub(/^[!;<\[( ]+/, '')
29
+ sized(15){string}.tr(%q{'`:*\\},'').gsub(/\s+/, ' ').gsub(/^[!;<\[( #{comment_chars}]+/, '')
29
30
  end
30
31
  currency = choose(*currencies) # to be consistent within the transaction
32
+ single_line_comments = ";#|%*".split('').map { |n| "#{n} #{call(description)}" }
31
33
  comments = ['', '; ', "\t;#{call(description)}", " ; #{call(description)}"]
32
34
  date = Time.at(range(0, 1_581_389_644)).strftime(choose(*formats))
33
35
  codes = [' ', " (#{string(:alnum).tr('()', '')}) "]
@@ -48,23 +50,58 @@ describe Reckon::LedgerParser do
48
50
  ledger += "#{call(account_line)}\n"
49
51
  end
50
52
  ledger += "#{call(account)}\n"
53
+ ledger += choose(*single_line_comments) + "\n"
51
54
  ledger
52
55
  end
53
56
  end.check(1000) do |s|
54
57
  filter_format = lambda { |n| [n['date'], n['desc'], n['name'], sprintf("%.02f", n['amount'])] }
55
58
  headers = %w[date code desc name currency amount type commend]
56
59
  safe_s = Shellwords.escape(s)
57
- ledger_csv = `echo #{safe_s} | ledger csv --date-format '%Y-%m-%d' -f - `
58
- ledger_parser_csv = Reckon::LedgerParser.new(s, date_format: '%Y/%m/%d').to_csv.join("\n")
59
60
 
60
- expected = CSV.parse(ledger_csv.gsub('\"', '""'), headers: headers).map &filter_format
61
- actual = CSV.parse(ledger_parser_csv, headers: headers).map &filter_format
61
+ lp_csv = Reckon::LedgerParser.new(s, date_format: '%Y/%m/%d').to_csv.join("\n")
62
+ actual = CSV.parse(lp_csv, headers: headers).map(&filter_format)
63
+
64
+ ledger_csv = `echo #{safe_s} | ledger csv --date-format '%Y/%m/%d' -f - `
65
+ expected = CSV.parse(ledger_csv.gsub('\"', '""'), headers: headers).map(&filter_format)
62
66
  expected.length.times do |i|
63
67
  expect(actual[i]).to eq(expected[i])
64
68
  end
65
69
  end
66
70
  end
67
71
 
72
+ it 'should filter block comments' do
73
+ ledger = <<HERE
74
+ 1970/11/01 Dinner should show up
75
+ Assets:Checking -123.00
76
+ Expenses:Restaurants
77
+
78
+ comment
79
+
80
+ 1970/11/01 Lunch should NOT show up
81
+ Assets:Checking -12.00
82
+ Expenses:Restaurants
83
+
84
+ end comment
85
+ HERE
86
+ l = Reckon::LedgerParser.new(ledger)
87
+ expect(l.entries.length).to eq(1)
88
+ expect(l.entries.first[:desc]).to eq('Dinner should show up')
89
+
90
+ end
91
+
92
+ it 'should transaction comments' do
93
+ ledger = <<HERE
94
+ 2020-03-27 AMZN Mktp USX999H3203; Shopping; Sale
95
+ Expenses:Household $82.77
96
+ Liabilities:ChaseSapphire -$81.77
97
+ # END FINANCE SCRIPT OUTPUT Thu 02 Apr 2020 12:05:54 PM EDT
98
+ HERE
99
+ l = Reckon::LedgerParser.new(ledger)
100
+ expect(l.entries.first[:accounts].map { |n| n[:name] }).to eq(['Expenses:Household', 'Liabilities:ChaseSapphire'])
101
+ expect(l.entries.first[:accounts].size).to eq(2)
102
+ expect(l.entries.length).to eq(1)
103
+ end
104
+
68
105
  it "should ignore non-standard entries" do
69
106
  @ledger.entries.length.should == 7
70
107
  end