2017-11-15 05:25:51 -05:00
|
|
|
|
;;; test-org-attach.el --- tests for org-attach.el -*- lexical-binding: t; -*-
|
|
|
|
|
|
2019-01-01 05:50:56 -05:00
|
|
|
|
;; Copyright (C) 2017, 2019
|
2017-11-15 05:25:51 -05:00
|
|
|
|
|
|
|
|
|
;; Author: Marco Wahl
|
|
|
|
|
;; Keywords: internal
|
|
|
|
|
|
|
|
|
|
;; 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/>.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(require 'org-test)
|
2017-11-15 05:25:51 -05:00
|
|
|
|
(require 'org-attach)
|
2018-05-09 23:18:04 -04:00
|
|
|
|
(eval-and-compile (require 'cl-lib))
|
2017-11-15 05:25:51 -05:00
|
|
|
|
|
|
|
|
|
(ert-deftest test-org-attach/dired-attach-to-next-best-subtree/1 ()
|
|
|
|
|
"Attach file at point in dired to subtree."
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(should
|
|
|
|
|
(let ((a-filename (make-temp-file "a"))) ; file is an attach candidate.
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(org-test-with-temp-text-in-file
|
|
|
|
|
"* foo :foo:"
|
|
|
|
|
(split-window)
|
|
|
|
|
(dired temporary-file-directory)
|
2018-05-09 23:18:04 -04:00
|
|
|
|
(cl-assert (eq 'dired-mode major-mode))
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(revert-buffer)
|
|
|
|
|
(dired-goto-file a-filename)
|
|
|
|
|
; action
|
|
|
|
|
(call-interactively #'org-attach-dired-to-subtree)
|
|
|
|
|
; check
|
|
|
|
|
(delete-window)
|
2018-05-09 23:18:04 -04:00
|
|
|
|
(cl-assert (eq 'org-mode major-mode))
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(beginning-of-buffer)
|
|
|
|
|
(search-forward "* foo")
|
|
|
|
|
; expectation. tag ATTACH has been appended.
|
2018-05-09 23:18:04 -04:00
|
|
|
|
(cl-reduce (lambda (x y) (or x y))
|
|
|
|
|
(mapcar (lambda (x) (string-equal "ATTACH" x))
|
|
|
|
|
(plist-get
|
|
|
|
|
(plist-get
|
|
|
|
|
(org-element-at-point) 'headline) :tags))))
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(delete-file a-filename)))))
|
2017-11-15 05:25:51 -05:00
|
|
|
|
|
|
|
|
|
(ert-deftest test-org-attach/dired-attach-to-next-best-subtree/2 ()
|
2017-11-15 08:39:26 -05:00
|
|
|
|
"Attach 2 marked files."
|
|
|
|
|
(should
|
|
|
|
|
(let ((a-filename (make-temp-file "a"))
|
|
|
|
|
(b-filename (make-temp-file "b"))) ; attach candidates.
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(org-test-with-temp-text-in-file
|
|
|
|
|
"* foo"
|
|
|
|
|
(split-window)
|
|
|
|
|
(dired temporary-file-directory)
|
2018-05-09 23:18:04 -04:00
|
|
|
|
(cl-assert (eq 'dired-mode major-mode))
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(revert-buffer)
|
|
|
|
|
(dired-goto-file a-filename)
|
|
|
|
|
(dired-mark 1)
|
|
|
|
|
(dired-goto-file b-filename)
|
|
|
|
|
(dired-mark 1)
|
|
|
|
|
; action
|
|
|
|
|
(call-interactively #'org-attach-dired-to-subtree)
|
|
|
|
|
; check
|
|
|
|
|
(delete-window)
|
2018-05-09 23:18:04 -04:00
|
|
|
|
(cl-assert (eq 'org-mode major-mode))
|
2017-11-15 08:39:26 -05:00
|
|
|
|
(beginning-of-buffer)
|
|
|
|
|
(search-forward "* foo")
|
|
|
|
|
(and (file-exists-p (concat (org-attach-dir) "/"
|
|
|
|
|
(file-name-nondirectory a-filename)))
|
|
|
|
|
(file-exists-p (concat (org-attach-dir) "/"
|
|
|
|
|
(file-name-nondirectory b-filename)))))
|
|
|
|
|
(delete-file a-filename)
|
|
|
|
|
(delete-file b-filename)))))
|
2017-11-15 05:25:51 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(provide 'test-org-attach)
|
|
|
|
|
;;; test-org-attach.el ends here
|