2016-02-14 17:18:48 -05:00
|
|
|
|
;;; test-org-colview.el --- Tests for org-colview.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
|
|
|
|
;; Copyright (C) 2016 Nicolas Goaziou
|
|
|
|
|
|
|
|
|
|
;; Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
|
|
|
|
|
|
|
|
;; 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
;;; Column view
|
|
|
|
|
|
2016-02-17 09:19:11 -05:00
|
|
|
|
(require 'cl-lib)
|
|
|
|
|
|
2016-02-14 17:18:48 -05:00
|
|
|
|
(ert-deftest test-org-colview/columns-scope ()
|
|
|
|
|
"Test `org-columns' scope."
|
|
|
|
|
;; Before the first headline, view all document.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'("H1" "H2" "H3")
|
|
|
|
|
(org-test-with-temp-text "Top\n* H1\n** H2\n* H3"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns))
|
|
|
|
|
(org-map-entries
|
|
|
|
|
(lambda () (get-char-property (point) 'org-columns-value))))))
|
|
|
|
|
;; When :COLUMNS: is set up in the hierarchy, view tree starting
|
|
|
|
|
;; there.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'(nil "H2" "H3" nil)
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H1\n** H2\n:PROPERTIES:\n:COLUMNS: %ITEM\n:END:\n*** <point>H3\n* H4"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns))
|
|
|
|
|
(org-map-entries
|
|
|
|
|
(lambda () (get-char-property (point) 'org-columns-value))))))
|
|
|
|
|
;; Otherwise, view tree starting at the current headline.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'(nil "H2" "H3" nil)
|
|
|
|
|
(org-test-with-temp-text "Top\n* H1\n** <point>H2\n*** H3\n* H4"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns))
|
|
|
|
|
(org-map-entries
|
|
|
|
|
(lambda () (get-char-property (point) 'org-columns-value))))))
|
|
|
|
|
;; With a non-nil prefix argument, always view all document.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'("H1" "H2" "H3" "H4")
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H1\n** H2\n:PROPERTIES:\n:COLUMNS: %ITEM\n:END:\n*** <point>H3\n* H4"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns t))
|
|
|
|
|
(org-map-entries
|
|
|
|
|
(lambda () (get-char-property (point) 'org-columns-value))))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'("H1" "H2" "H3" "H4")
|
|
|
|
|
(org-test-with-temp-text "Top\n* H1\n** <point>H2\n*** H3\n* H4"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns t))
|
|
|
|
|
(org-map-entries
|
|
|
|
|
(lambda () (get-char-property (point) 'org-columns-value)))))))
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org-colview/columns-width ()
|
|
|
|
|
"Test `org-columns' column widths."
|
|
|
|
|
;; When a width is specified in the format, use it.
|
|
|
|
|
(should
|
|
|
|
|
(= 9
|
|
|
|
|
(org-test-with-temp-text "* H"
|
|
|
|
|
(let ((org-columns-default-format "%9ITEM")) (org-columns))
|
|
|
|
|
(cdar org-columns-current-maxwidths))))
|
|
|
|
|
;; Otherwise, use the width of the largest value in the column.
|
|
|
|
|
(should
|
|
|
|
|
(= 2
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n:PROPERTIES:\n:P: X\n:END:\n** H2\n:PROPERTIES:\n:P: XX\n:END:"
|
|
|
|
|
(let ((org-columns-default-format "%P")) (org-columns))
|
|
|
|
|
(cdar org-columns-current-maxwidths))))
|
|
|
|
|
;; If the title is wider than the widest value, use title width
|
|
|
|
|
;; instead.
|
|
|
|
|
(should
|
|
|
|
|
(= 4
|
|
|
|
|
(org-test-with-temp-text "* H"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns))
|
|
|
|
|
(cdar org-columns-current-maxwidths))))
|
|
|
|
|
;; Special case: stars do count for ITEM.
|
|
|
|
|
(should
|
|
|
|
|
(= 6
|
|
|
|
|
(org-test-with-temp-text "* Head"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns))
|
|
|
|
|
(cdar org-columns-current-maxwidths))))
|
|
|
|
|
;; Special case: width takes into account link narrowing in ITEM.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'("* [123]" . 7)
|
|
|
|
|
(org-test-with-temp-text "* [[http://orgmode.org][123]]"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-columns))
|
|
|
|
|
(cons (get-char-property (point) 'org-columns-value-modified)
|
|
|
|
|
(cdar org-columns-current-maxwidths)))))
|
|
|
|
|
;; When a value is too wide for the current column, add ellipses.
|
|
|
|
|
;; Take into consideration length of `org-columns-ellipses'.
|
|
|
|
|
(should
|
|
|
|
|
(equal "123.. |"
|
|
|
|
|
(org-test-with-temp-text "* H\n:PROPERTIES:\n:P: 123456\n:END:"
|
|
|
|
|
(let ((org-columns-default-format "%5P")
|
|
|
|
|
(org-columns-ellipses ".."))
|
|
|
|
|
(org-columns))
|
|
|
|
|
(org-trim (get-char-property (point) 'display)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal "1234… |"
|
|
|
|
|
(org-test-with-temp-text "* H\n:PROPERTIES:\n:P: 123456\n:END:"
|
|
|
|
|
(let ((org-columns-default-format "%5P")
|
|
|
|
|
(org-columns-ellipses "…"))
|
|
|
|
|
(org-columns))
|
|
|
|
|
(org-trim (get-char-property (point) 'display))))))
|
|
|
|
|
|
2016-02-17 09:19:11 -05:00
|
|
|
|
(ert-deftest test-org-colview/columns-summary ()
|
|
|
|
|
"Test `org-columns' summary types."
|
|
|
|
|
;; {+} and {+;format} add numbers.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"3"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 2
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{+}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"3.0"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 2
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{+;%.1f}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {$} is a shortcut for {+;%.2f}.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"3.60"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1.50
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 2.10
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{$}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {:} sums times. Plain numbers are hours.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"4:10"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1:30
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 2:40
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{:}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"3:30"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1:30
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 2
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{:}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {X}, {X/} and {X%} indicate checkbox status.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"[ ]"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [ ]
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [ ]
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{X}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"[-]"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [ ]
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [X]
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{X}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"[X]"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [X]
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [X]
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{X}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"[1/2]"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [ ]
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [X]
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{X/}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"[50%]"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [ ]
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: [X]
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{X%}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {min} is the smallest number in column, {max} the largest one.
|
|
|
|
|
;; {mean} is the arithmetic mean of numbers in column.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"42"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 99
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 42
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{min}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"99"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 99
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 42
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{max}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"51.0"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 60
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 42
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{mean}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {:min}, {:max} and {:mean} apply to time values.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"1:20"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 4:40
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1:20
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{:min}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"4:40"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 4:40
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1:20
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{:max}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"3:00"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 4:40
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1:20
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{:mean}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {@min}, {@max} and {@mean} apply to ages.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
(org-columns-number-to-string
|
|
|
|
|
(float-time
|
|
|
|
|
(time-subtract
|
|
|
|
|
(current-time)
|
|
|
|
|
(apply #'encode-time (org-parse-time-string "<2014-03-04 Tue>"))))
|
2016-02-20 09:13:03 -05:00
|
|
|
|
"@min")
|
2016-02-17 09:19:11 -05:00
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: <2012-03-29 Thu>
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: <2014-03-04 Tue>
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{@min}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
(org-columns-number-to-string
|
|
|
|
|
(float-time
|
|
|
|
|
(time-subtract
|
|
|
|
|
(current-time)
|
|
|
|
|
(apply #'encode-time (org-parse-time-string "<2012-03-29 Thu>"))))
|
2016-02-20 09:13:03 -05:00
|
|
|
|
"@max")
|
2016-02-17 09:19:11 -05:00
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: <2012-03-29 Thu>
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: <2014-03-04 Tue>
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{@max}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
(org-columns-number-to-string
|
|
|
|
|
(/ (+ (float-time
|
|
|
|
|
(time-subtract
|
|
|
|
|
(current-time)
|
|
|
|
|
(apply #'encode-time (org-parse-time-string "<2014-03-04 Tue>"))))
|
|
|
|
|
(float-time
|
|
|
|
|
(time-subtract
|
|
|
|
|
(current-time)
|
|
|
|
|
(apply #'encode-time (org-parse-time-string "<2012-03-29 Thu>")))))
|
|
|
|
|
2)
|
2016-02-20 09:13:03 -05:00
|
|
|
|
"@mean")
|
2016-02-17 09:19:11 -05:00
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: <2012-03-29 Thu>
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: <2014-03-04 Tue>
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{@mean}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; @min, @max and @mean also accept regular duration in
|
|
|
|
|
;; a "?d ?h ?m ?s" format.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"1d 10h 0m 0s"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1d 10h
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 5d 3h
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{@min}")) (org-columns))
|
2016-02-17 15:35:34 -05:00
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; {est+} gives a low-high estimate using mean and standard
|
|
|
|
|
;; deviation.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"3-17"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 0-10
|
|
|
|
|
:END:
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 0-10
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%A{est+}")) (org-columns))
|
|
|
|
|
(get-char-property (point) 'org-columns-value-modified))))
|
|
|
|
|
;; When using {est+} summary, a single number is understood as
|
|
|
|
|
;; a degenerate range.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"4-4"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
** S1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 4
|
|
|
|
|
:END:
|
|
|
|
|
"
|
|
|
|
|
(let ((org-columns-default-format "%A{est+}")) (org-columns))
|
2016-02-17 09:19:11 -05:00
|
|
|
|
(get-char-property (point) 'org-columns-value-modified)))))
|
|
|
|
|
|
2016-02-17 16:38:39 -05:00
|
|
|
|
(ert-deftest test-org-colview/columns-update ()
|
|
|
|
|
"Test `org-columns-update' specifications."
|
|
|
|
|
;; Update display.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"12 |"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1
|
|
|
|
|
:END:
|
|
|
|
|
"
|
|
|
|
|
(let ((org-columns-default-format "%5A")) (org-columns))
|
|
|
|
|
(search-forward "1")
|
|
|
|
|
(insert "2")
|
|
|
|
|
(org-columns-update "A")
|
|
|
|
|
(get-char-property (point-min) 'display))))
|
|
|
|
|
;; Update stored values.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
'("12" "12")
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1
|
|
|
|
|
:END:
|
|
|
|
|
"
|
|
|
|
|
(let ((org-columns-default-format "%5A")) (org-columns))
|
|
|
|
|
(search-forward "1")
|
|
|
|
|
(insert "2")
|
|
|
|
|
(org-columns-update "A")
|
|
|
|
|
(list (get-char-property (point-min) 'org-columns-value)
|
|
|
|
|
(get-char-property (point-min) 'org-columns-value-modified)))))
|
|
|
|
|
;; Ensure additional processing is done (e.g., ellipses, special
|
|
|
|
|
;; keywords fontification...).
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"ve.. |"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: text
|
|
|
|
|
:END:
|
|
|
|
|
"
|
|
|
|
|
(let ((org-columns-default-format "%4A")
|
|
|
|
|
(org-columns-ellipses ".."))
|
|
|
|
|
(org-columns))
|
|
|
|
|
(search-forward ":A: ")
|
|
|
|
|
(insert "very long ")
|
|
|
|
|
(org-columns-update "A")
|
2016-02-18 05:33:33 -05:00
|
|
|
|
(get-char-property (point-min) 'display))))
|
|
|
|
|
;; Values obtained from inline tasks are at the same level as those
|
|
|
|
|
;; obtained from children of the current node.
|
|
|
|
|
(when (featurep 'org-inlinetask)
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"2"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H
|
|
|
|
|
*************** Inline task
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 2
|
|
|
|
|
:END:
|
|
|
|
|
*************** END
|
|
|
|
|
** Children
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 3
|
|
|
|
|
:END:
|
|
|
|
|
"
|
|
|
|
|
(let ((org-columns-default-format "%A{min}")
|
|
|
|
|
(org-columns-ellipses "..")
|
|
|
|
|
(org-inlinetask-min-level 15))
|
|
|
|
|
(org-columns))
|
|
|
|
|
(get-char-property (point-min) 'org-columns-value))))))
|
2016-02-17 16:38:39 -05:00
|
|
|
|
|
2016-02-14 17:18:48 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Dynamic block
|
|
|
|
|
|
|
|
|
|
(ert-deftest test-org-colview/dblock ()
|
|
|
|
|
"Test the column view table."
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n<point>#+BEGIN: columnview\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview
|
|
|
|
|
| ITEM | A |
|
|
|
|
|
|------+---|
|
|
|
|
|
| H | 1 |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n:PROPERTIES:\n:A: 1\n:END:\n<point>#+BEGIN: columnview\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM %A")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
;; Properties are case insensitive.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview
|
|
|
|
|
| a |
|
|
|
|
|
|---|
|
|
|
|
|
| 1 |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n:PROPERTIES:\n:A: 1\n:END:\n<point>#+BEGIN: columnview\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%a")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
;; Test titles given to columns.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview
|
|
|
|
|
| Name | Prop |
|
|
|
|
|
|------+------|
|
|
|
|
|
| H | 1 |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n:PROPERTIES:\n:A: 1\n:END:\n<point>#+BEGIN: columnview\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM(Name) %A(Prop)"))
|
|
|
|
|
(org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
;; Test `:id' parameter
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :id local
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H1 |
|
|
|
|
|
| H1.1 |
|
|
|
|
|
#+END:
|
|
|
|
|
"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H1\n<point>#+BEGIN: columnview :id local\n#+END:\n** H1.1\n* H2"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :id global
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H1 |
|
|
|
|
|
| H1.1 |
|
|
|
|
|
| H2 |
|
|
|
|
|
#+END:
|
|
|
|
|
"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"\n* H1\n<point>#+BEGIN: columnview :id global\n#+END:\n** H1.1\n* H2"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
;; Test `:hlines' parameter.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :hlines t :id global
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H |
|
|
|
|
|
|------|
|
|
|
|
|
| H2 |
|
|
|
|
|
|------|
|
|
|
|
|
| H2.1 |
|
|
|
|
|
#+END:\n"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"
|
|
|
|
|
* H
|
|
|
|
|
<point>#+BEGIN: columnview :hlines t :id global
|
|
|
|
|
#+END:
|
|
|
|
|
* H2
|
|
|
|
|
** H2.1"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :hlines 1 :id global
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H |
|
|
|
|
|
|------|
|
|
|
|
|
| H2 |
|
|
|
|
|
| H2.1 |
|
|
|
|
|
#+END:\n"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"
|
|
|
|
|
* H
|
|
|
|
|
<point>#+BEGIN: columnview :hlines 1 :id global
|
|
|
|
|
#+END:
|
|
|
|
|
* H2
|
|
|
|
|
** H2.1"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
;; Test `:indent' parameter.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :indent t
|
|
|
|
|
| ITEM |
|
|
|
|
|
|----------|
|
|
|
|
|
| H1 |
|
|
|
|
|
| \\_ H1.1 |
|
|
|
|
|
#+END:
|
|
|
|
|
"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H1\n<point>#+BEGIN: columnview :indent t\n#+END:\n** H1.1"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :indent t
|
|
|
|
|
| Prop | Name |
|
|
|
|
|
|------+----------|
|
|
|
|
|
| | H1 |
|
|
|
|
|
| | \\_ H1.1 |
|
|
|
|
|
#+END:
|
|
|
|
|
"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H1\n<point>#+BEGIN: columnview :indent t\n#+END:\n** H1.1"
|
|
|
|
|
(let ((org-columns-default-format "%A(Prop) %ITEM(Name)"))
|
|
|
|
|
(org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
;; Test `:vlines' parameter.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :vlines t
|
|
|
|
|
| | ITEM | A |
|
|
|
|
|
|---+------+----|
|
|
|
|
|
| | H | 1 |
|
|
|
|
|
| / | <> | <> |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n:PROPERTIES:\n:A: 1\n:END:\n<point>#+BEGIN: columnview :vlines t\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM %A")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
;; Test `:skip-empty-rows' parameter.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :skip-empty-rows t
|
|
|
|
|
| ITEM | A |
|
|
|
|
|
|------+---|
|
|
|
|
|
| H1.1 | 1 |
|
|
|
|
|
#+END:
|
|
|
|
|
"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"
|
|
|
|
|
* H1
|
|
|
|
|
<point>#+BEGIN: columnview :skip-empty-rows t
|
|
|
|
|
#+END:
|
|
|
|
|
** H1.1
|
|
|
|
|
:PROPERTIES:
|
|
|
|
|
:A: 1
|
|
|
|
|
:END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM %A")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (outline-next-heading)))))
|
|
|
|
|
;; Test `:format' parameter.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :format \"%ITEM(Name)\"
|
|
|
|
|
| Name |
|
|
|
|
|
|------|
|
|
|
|
|
| H |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n<point>#+BEGIN: columnview :format \"%ITEM(Name)\"\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
;; Test `:width' parameter
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview :width t
|
|
|
|
|
| ITEM | A |
|
|
|
|
|
|------------+---|
|
|
|
|
|
| H | |
|
|
|
|
|
| <10> | |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H\n<point>#+BEGIN: columnview :width t\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%10ITEM %A")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
;; When inserting ITEM values, make sure to clean sensitive
|
|
|
|
|
;; contents, like unique targets or forbidden inline src-blocks.
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H 1 |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H <<target>> 1\n<point>#+BEGIN: columnview\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max)))))
|
|
|
|
|
(should
|
|
|
|
|
(equal
|
|
|
|
|
"#+BEGIN: columnview
|
|
|
|
|
| ITEM |
|
|
|
|
|
|------|
|
|
|
|
|
| H 1 |
|
|
|
|
|
#+END:"
|
|
|
|
|
(org-test-with-temp-text
|
|
|
|
|
"* H src_emacs-lisp{(+ 1 1)} 1\n<point>#+BEGIN: columnview\n#+END:"
|
|
|
|
|
(let ((org-columns-default-format "%ITEM")) (org-update-dblock))
|
|
|
|
|
(buffer-substring-no-properties (point) (point-max))))))
|
|
|
|
|
|
|
|
|
|
(provide 'test-org-colview)
|
|
|
|
|
;;; test-org-colview.el ends here
|