aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-pearl-org-write.el10
-rw-r--r--tests/test-pearl-output.el59
2 files changed, 65 insertions, 4 deletions
diff --git a/tests/test-pearl-org-write.el b/tests/test-pearl-org-write.el
index 6c30380..e467436 100644
--- a/tests/test-pearl-org-write.el
+++ b/tests/test-pearl-org-write.el
@@ -69,19 +69,20 @@
(should-not (string-match-p "old content" (buffer-string)))))))
(ert-deftest test-pearl-update-org-dirty-buffer-not-overwritten ()
- "A buffer with unsaved edits is left untouched, not clobbered."
+ "Cancelling the dirty-refresh prompt leaves a buffer with unsaved edits untouched."
(test-pearl--with-org-file tmp
(let ((buf (find-file-noselect tmp)))
(with-current-buffer buf
(insert "unsaved edits"))
- (pearl--update-org-from-issues test-pearl--sample-issues)
+ (cl-letf (((symbol-function 'pearl--dirty-refresh-choice) (lambda (_p) ?q)))
+ (pearl--update-org-from-issues test-pearl--sample-issues))
(with-current-buffer buf
(should (buffer-modified-p))
(should (string-match-p "unsaved edits" (buffer-string)))
(should-not (string-match-p "ENG-1" (buffer-string)))))))
(ert-deftest test-pearl-update-org-dirty-buffer-preserves-disk-and-surfaces ()
- "A dirty buffer is left as-is, the on-disk file is untouched, and the buffer is surfaced."
+ "Cancelling the prompt leaves the dirty buffer and on-disk file as-is, and surfaces it."
(test-pearl--with-org-file tmp
(let ((buf (find-file-noselect tmp))
(surfaced nil))
@@ -92,7 +93,8 @@
(goto-char (point-max))
(insert "UNSAVED EDIT\n"))
(cl-letf (((symbol-function 'pearl--surface-buffer)
- (lambda (b) (setq surfaced b))))
+ (lambda (b) (setq surfaced b)))
+ ((symbol-function 'pearl--dirty-refresh-choice) (lambda (_p) ?q)))
(pearl--update-org-from-issues test-pearl--sample-issues))
;; buffer keeps the unsaved edit and stays modified
(with-current-buffer buf
diff --git a/tests/test-pearl-output.el b/tests/test-pearl-output.el
index eb5c671..58cd446 100644
--- a/tests/test-pearl-output.el
+++ b/tests/test-pearl-output.el
@@ -184,5 +184,64 @@
(kill-buffer buf))
(ignore-errors (delete-file tmp)))))
+;;; --update-org-from-issues on a dirty buffer (prompted: discard / merge / cancel)
+
+(defconst test-pearl-output--issue
+ '(:id "u" :identifier "ENG-1" :title "Hello" :priority 2 :state (:name "Todo"))
+ "A minimal normalized issue for the dirty-buffer branch tests.")
+
+(defmacro test-pearl-output--with-dirty-buffer (choice &rest body)
+ "Run BODY with a modified buffer visiting a temp active file and the dirty
+refresh prompt stubbed to return CHOICE. BUF and TMP are bound in BODY."
+ (declare (indent 1))
+ `(let* ((tmp (make-temp-file "pearl-dirty" nil ".org"))
+ (pearl-org-file-path tmp)
+ (buf (find-file-noselect tmp)))
+ (unwind-protect
+ (with-current-buffer buf
+ (insert "DIRTYMARKER not yet saved\n") ; buffer is now modified
+ (cl-letf (((symbol-function 'pearl--surface-buffer) #'ignore)
+ ((symbol-function 'pearl--dirty-refresh-choice)
+ (lambda (_path) ,choice)))
+ ,@body))
+ (when (buffer-live-p buf)
+ (with-current-buffer buf (set-buffer-modified-p nil))
+ (kill-buffer buf))
+ (ignore-errors (delete-file tmp)))))
+
+(ert-deftest test-pearl-update-org-dirty-discard-rebuilds ()
+ "Choosing discard rebuilds the buffer from the fetch and clears the edits."
+ (test-pearl-output--with-dirty-buffer ?d
+ (pearl--update-org-from-issues (list test-pearl-output--issue)
+ '(:type filter :name "X" :filter nil) nil)
+ (should-not (buffer-modified-p))
+ (should-not (string-match-p "DIRTYMARKER" (buffer-string)))
+ (should (string-match-p "ENG-1" (buffer-string)))))
+
+(ert-deftest test-pearl-update-org-dirty-cancel-leaves-buffer ()
+ "Choosing cancel leaves the dirty buffer untouched."
+ (test-pearl-output--with-dirty-buffer ?q
+ (pearl--update-org-from-issues (list test-pearl-output--issue)
+ '(:type filter :name "X" :filter nil) nil)
+ (should (buffer-modified-p))
+ (should (string-match-p "DIRTYMARKER" (buffer-string)))
+ (should-not (string-match-p "ENG-1" (buffer-string)))))
+
+(ert-deftest test-pearl-update-org-dirty-merge-routes-to-merge ()
+ "Choosing merge routes to the by-LINEAR-ID merge instead of a rebuild."
+ (let ((merged nil))
+ (test-pearl-output--with-dirty-buffer ?m
+ (cl-letf (((symbol-function 'pearl--merge-issues-into-buffer)
+ (lambda (_issues) (setq merged t) '(:updated 1 :added 0 :dropped 0 :skipped 0)))
+ ((symbol-function 'pearl--update-source-header) #'ignore)
+ ((symbol-function 'pearl--update-derived-todo-header) #'ignore)
+ ((symbol-function 'pearl-highlight-comments) #'ignore)
+ ((symbol-function 'pearl--restore-page-visibility) #'ignore))
+ (pearl--update-org-from-issues (list test-pearl-output--issue)
+ '(:type filter :name "X" :filter nil) nil))
+ (should merged)
+ ;; merge does not rebuild, so the marker is not wiped by a full replace
+ (should (string-match-p "DIRTYMARKER" (buffer-string))))))
+
(provide 'test-pearl-output)
;;; test-pearl-output.el ends here