File: cmd-convert.test

package info (click to toggle)
ledger 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,964 kB
  • sloc: cpp: 39,393; python: 4,476; perl: 1,309; sh: 477; lisp: 435; yacc: 103; makefile: 58
file content (53 lines) | stat: -rw-r--r-- 1,636 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

test -f /dev/null --input-date-format "%m/%d/%Y" convert test/baseline/cmd-convert1.dat
2011/12/12=2011/12/13 * (100) Test  ;test
    Expenses:Unknown                             $10
    Equity:Unknown                              $-10 = $20

2011/12/12=2011/12/12 * 
    Expenses:Unknown                             $10
    Equity:Unknown
end test

test -f /dev/null --input-date-format "%m/%d/%Y" convert test/baseline/cmd-convert2.dat
2011/01/01 * test
    Expenses:Unknown                       20.00 EUR
    Equity:Unknown
end test

test -f /dev/null --input-date-format "%m/%d/%Y" convert test/baseline/cmd-convert3.dat -> 1
__ERROR__
While parsing file "$sourcepath/test/baseline/cmd-convert3.dat", line 1:
While parsing CSV line:
  01/01/2011,,

Error: Only one posting with null amount allowed per transaction
end test

test -f /dev/null convert test/baseline/cmd-convert4.dat -> 1
__ERROR__
While parsing file "$sourcepath/test/baseline/cmd-convert4.dat", line 1:
While parsing CSV line:
  bogus,$10,

Error: Invalid date: bogus
end test

test -f /dev/null --input-date-format "%m/%d/%Y" convert test/baseline/cmd-convert5.dat
2011/01/01 * test1
    Expenses:Unknown                       20.00 EUR
    Equity:Unknown

2011/01/02 * test2
    Expenses:Unknown                      -10.00 EUR
    Equity:Unknown
end test

test -f /dev/null --input-date-format "%m/%d/%Y" convert test/baseline/cmd-convert6.dat -> 1
__ERROR__
While parsing file "$sourcepath/test/baseline/cmd-convert6.dat", line 1:
While parsing CSV line:
  01/01/2011,20.00 EUR,10.00 EUR,test1,

Error: Cannot have two values for a single transaction
end test