summaryrefslogtreecommitdiff
path: root/test/navigate-test.el
blob: 503dbc8139efa7e3348c1d194d8d98bf48815d9e (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
;;; navigate-test.el --- ERT for ledger-mode  -*- lexical-binding: t; -*-

;; Copyright (C) 2003-2017 John Wiegley <johnw AT gnu DOT org>

;; Author: Thierry <thdox AT free DOT fr>
;; Keywords: languages
;; Homepage: https://github.com/ledger/ledger-mode

;; This file is not part of GNU Emacs.

;; This program is free software; you can redistribute it and/or modify it under
;; the terms of the GNU General Public License as published by the Free Software
;; Foundation; either version 2 of the License, or (at your option) any later
;; version.
;;
;; This program is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
;; details.
;;
;; You should have received a copy of the GNU General Public License along with
;; this program; if not, write to the Free Software Foundation, Inc., 51
;; Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

;;; Commentary:
;;  Regression tests for ledger-navigate

;;; Code:
(require 'test-helper)


(ert-deftest ledger-navigate/test-001 ()
  "Regress test for Bug 441
http://bugs.ledger-cli.org/show_bug.cgi?id=441"
  :tags '(navigate regress)

  (ledger-tests-with-temp-file
   demo-ledger
   (goto-char (point-min))              ; beginning-of-buffer
   (ledger-navigate-next-xact-or-directive)
   (ledger-navigate-next-xact-or-directive)
   (should (eq 556 (point)))
   (ledger-navigate-prev-xact-or-directive)
   (should (eq 104 (point)))))

(ert-deftest ledger-navigate-uncleared ()
  :tags '(navigate)
  (with-temp-buffer
    (insert
     "2011/01/27 Book Store
    Expenses:Books                       $20.00
    Liabilities:MasterCard

2011/04/25 * Tom's Used Cars
    Expenses:Auto                    $ 5,500.00
    Assets:Checking

2011/04/27 Bookstore
    Expenses:Books                       $20.00
    Assets:Checking

2011/12/01 * Sale
    Assets:Checking                     $ 30.00
    Income:Sales")
    (ledger-mode)
    (goto-char (point-min))
    (ledger-navigate-next-uncleared)
    (should (looking-at-p (regexp-quote "2011/04/27 Bookstore")))
    (should-error (ledger-navigate-next-uncleared))
    (ledger-navigate-previous-uncleared)
    (should (bobp))
    ))


(provide 'navigate-test)

;;; navigate-test.el ends here