2017-09-06 08:31:01 -04:00
|
|
|
;;; test-org-archive.el --- Test for Org Archive -*- lexical-binding: t; -*-
|
|
|
|
|
2019-01-01 05:50:56 -05:00
|
|
|
;; Copyright (C) 2017, 2019 Jay Kamat
|
2017-09-06 08:31:01 -04:00
|
|
|
|
|
|
|
;; Author: Jay Kamat <jaygkamat@gmail.com>
|
|
|
|
|
|
|
|
;; 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
|
2021-03-20 03:27:57 -04:00
|
|
|
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-09-06 08:31:01 -04:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2017-12-11 17:22:21 -05:00
|
|
|
(ert-deftest test-org-archive/update-status-cookie ()
|
2017-09-06 08:31:01 -04:00
|
|
|
"Test archiving properly updating status cookies."
|
|
|
|
;; Test org-archive-subtree with two children.
|
|
|
|
(should
|
|
|
|
(equal
|
|
|
|
"Top [0%]"
|
|
|
|
(org-test-with-temp-text-in-file
|
2017-09-07 09:24:36 -04:00
|
|
|
"* Top [%]\n** DONE One\n** TODO Two"
|
|
|
|
(forward-line)
|
2017-09-06 08:31:01 -04:00
|
|
|
(org-archive-subtree)
|
|
|
|
(forward-line -1)
|
|
|
|
(org-element-property :title (org-element-at-point)))))
|
|
|
|
;; Test org-archive-subtree with one child.
|
|
|
|
(should
|
|
|
|
(equal
|
|
|
|
"Top [100%]"
|
2017-09-07 09:24:36 -04:00
|
|
|
(org-test-with-temp-text-in-file "* Top [%]\n** TODO Two"
|
|
|
|
(forward-line)
|
2017-09-06 08:31:01 -04:00
|
|
|
(org-archive-subtree)
|
|
|
|
(forward-line -1)
|
|
|
|
(org-element-property :title (org-element-at-point)))))
|
|
|
|
;; Test org-archive-to-archive-sibling with two children.
|
|
|
|
(should
|
|
|
|
(equal
|
|
|
|
"Top [100%]"
|
|
|
|
(org-test-with-temp-text "* Top [%]\n<point>** TODO One\n** DONE Two"
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(forward-line -1)
|
|
|
|
(org-element-property :title (org-element-at-point)))))
|
|
|
|
;; Test org-archive-to-archive-sibling with two children.
|
|
|
|
(should
|
|
|
|
(equal
|
|
|
|
"Top [0%]"
|
|
|
|
(org-test-with-temp-text "* Top [%]\n<point>** DONE Two"
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(forward-line -1)
|
|
|
|
(org-element-property :title (org-element-at-point))))))
|
|
|
|
|
2020-11-12 00:53:18 -05:00
|
|
|
(ert-deftest test-org-archive/datetree ()
|
|
|
|
"Test `org-archive-subtree' with a datetree target."
|
|
|
|
(org-test-at-time "<2020-07-05 Sun>"
|
|
|
|
;; Test in buffer target with no additional subheadings...
|
|
|
|
(should
|
|
|
|
(string-match-p
|
2021-01-13 16:57:21 -05:00
|
|
|
(regexp-quote (format-time-string "*** 2020-07-05 %A\n**** a"))
|
2020-11-12 00:53:18 -05:00
|
|
|
(org-test-with-temp-text-in-file "* a\n"
|
|
|
|
(let ((org-archive-location "::datetree/"))
|
|
|
|
(org-archive-subtree)
|
|
|
|
(buffer-string)))))
|
|
|
|
;; ... and with `org-odd-levels-only' non-nil.
|
|
|
|
(should
|
|
|
|
(string-match-p
|
2021-01-13 16:57:21 -05:00
|
|
|
(regexp-quote (format-time-string "***** 2020-07-05 %A\n******* a"))
|
2020-11-12 00:53:18 -05:00
|
|
|
(org-test-with-temp-text-in-file "* a\n"
|
|
|
|
(let ((org-archive-location "::datetree/")
|
|
|
|
(org-odd-levels-only t))
|
|
|
|
(org-archive-subtree)
|
|
|
|
(buffer-string)))))
|
|
|
|
;; Test in buffer target with an additional subheading...
|
|
|
|
(should
|
|
|
|
(string-match-p
|
2021-01-13 16:57:21 -05:00
|
|
|
(regexp-quote (format-time-string "*** 2020-07-05 %A\n**** a\n***** b"))
|
2020-11-12 00:53:18 -05:00
|
|
|
(org-test-with-temp-text-in-file "* b\n"
|
|
|
|
(let ((org-archive-location "::datetree/* a"))
|
|
|
|
(org-archive-subtree)
|
|
|
|
(buffer-string)))))
|
|
|
|
;; ... and with `org-odd-levels-only' non-nil.
|
|
|
|
(should
|
|
|
|
(string-match-p
|
2021-01-13 16:57:21 -05:00
|
|
|
(regexp-quote (format-time-string "***** 2020-07-05 %A\n******* a\n********* b"))
|
2020-11-12 00:53:18 -05:00
|
|
|
(org-test-with-temp-text-in-file "* b\n"
|
|
|
|
(let ((org-archive-location "::datetree/* a")
|
|
|
|
(org-odd-levels-only t))
|
|
|
|
(org-archive-subtree)
|
|
|
|
(buffer-string)))))))
|
|
|
|
|
2017-12-11 17:22:21 -05:00
|
|
|
(ert-deftest test-org-archive/to-archive-sibling ()
|
|
|
|
"Test `org-archive-to-archive-sibling' specifications."
|
|
|
|
;; Archive sibling before or after archive heading.
|
|
|
|
(should
|
|
|
|
(equal "* Archive :ARCHIVE:\n** H\n"
|
|
|
|
(org-test-with-temp-text "* H\n* Archive :ARCHIVE:\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
|
|
|
(org-archive-tag "ARCHIVE"))
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point) (line-beginning-position 3))))))
|
|
|
|
(should
|
|
|
|
(equal "* Archive :ARCHIVE:\n** H\n"
|
|
|
|
(org-test-with-temp-text "* Archive :ARCHIVE:\n<point>* H\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
|
|
|
(org-archive-tag "ARCHIVE"))
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point) (line-beginning-position 3))))))
|
|
|
|
;; When there is no sibling archive heading, create it.
|
|
|
|
(should
|
|
|
|
(equal "* Archive :ARCHIVE:\n** H\n"
|
|
|
|
(org-test-with-temp-text "* H\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
2018-04-20 04:45:19 -04:00
|
|
|
(org-archive-tag "ARCHIVE")
|
|
|
|
(org-tags-column 1))
|
2017-12-11 17:22:21 -05:00
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point) (line-beginning-position 3))))))
|
|
|
|
;; Ignore non-sibling archive headings.
|
|
|
|
(should
|
|
|
|
(equal "* Archive :ARCHIVE:\n* Top\n** Archive :ARCHIVE:\n*** H\n"
|
|
|
|
(org-test-with-temp-text "* Archive :ARCHIVE:\n* Top\n<point>** H\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
2018-04-20 04:45:19 -04:00
|
|
|
(org-archive-tag "ARCHIVE")
|
|
|
|
(org-tags-column 0))
|
2017-12-11 17:22:21 -05:00
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point) (line-beginning-position 5))))))
|
|
|
|
;; When archiving a heading, leave point on next heading.
|
|
|
|
(should
|
|
|
|
(equal "* H2"
|
|
|
|
(org-test-with-temp-text "* H1\n* H2\n* Archive :ARCHIVE:\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
|
|
|
(org-archive-tag "ARCHIVE"))
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(buffer-substring-no-properties (point) (line-end-position))))))
|
|
|
|
(should
|
|
|
|
(equal "* H2"
|
|
|
|
(org-test-with-temp-text "* Archive :ARCHIVE:\n<point>* H1\n* H2\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
|
|
|
(org-archive-tag "ARCHIVE"))
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(buffer-substring-no-properties (point) (line-end-position))))))
|
|
|
|
;; If `org-archive-reversed-order' is nil, archive as the last
|
|
|
|
;; child. Otherwise, archive as the first one.
|
|
|
|
(should
|
|
|
|
(equal "* Archive :ARCHIVE:\n** A\n"
|
|
|
|
(org-test-with-temp-text "* H\n* Archive :ARCHIVE:\n** A\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
|
|
|
(org-archive-tag "ARCHIVE")
|
|
|
|
(org-archive-reversed-order nil))
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point) (line-beginning-position 3))))))
|
|
|
|
(should
|
|
|
|
(equal "* Archive :ARCHIVE:\n** H\n"
|
|
|
|
(org-test-with-temp-text "* H\n* Archive :ARCHIVE:\n** A\n"
|
|
|
|
(let ((org-archive-sibling-heading "Archive")
|
|
|
|
(org-archive-tag "ARCHIVE")
|
|
|
|
(org-archive-reversed-order t))
|
|
|
|
(org-archive-to-archive-sibling)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point) (line-beginning-position 3)))))))
|
2017-09-06 08:31:01 -04:00
|
|
|
|
|
|
|
(provide 'test-org-archive)
|
|
|
|
;;; test-org-archive.el ends here
|