blob: 49aacc7348710775f2e4f3e606e628a01d809512 (
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
|
;;; test-system-utils-eval-buffer.el --- Tests for cj/eval-buffer-with-confirmation-or-error-message -*- lexical-binding: t; -*-
;;; Commentary:
;; Unit tests for `cj/eval-buffer-with-confirmation-or-error-message'
;; in system-utils.el. The function evaluates the current buffer and
;; reports success or any signaled error via `message', so errors
;; don't propagate to the caller.
;;; Code:
(require 'ert)
(require 'cl-lib)
(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory))
(require 'system-utils)
(defmacro test-sueb--capture-message (var &rest body)
"Run BODY with `message' stubbed to set VAR to the formatted string."
(declare (indent 1))
`(cl-letf (((symbol-function 'message)
(lambda (fmt &rest args)
(setq ,var (apply #'format fmt args)))))
,@body))
;;; Normal cases
(ert-deftest test-sueb-valid-elisp-reports-success ()
"Normal: evaluating valid elisp reports \"Buffer evaluated.\" via message."
(let (captured)
(test-sueb--capture-message captured
(with-temp-buffer
(emacs-lisp-mode)
(insert "(+ 1 2)")
(cj/eval-buffer-with-confirmation-or-error-message)))
(should (string-match-p "Buffer evaluated" captured))))
;;; Boundary cases
(ert-deftest test-sueb-empty-buffer-reports-success ()
"Boundary: an empty buffer evaluates to nil cleanly and reports success."
(let (captured)
(test-sueb--capture-message captured
(with-temp-buffer
(emacs-lisp-mode)
(cj/eval-buffer-with-confirmation-or-error-message)))
(should (string-match-p "Buffer evaluated" captured))))
;;; Error cases
(ert-deftest test-sueb-error-caught-not-propagated ()
"Error: evaluation of broken code reports the error via message without signaling.
Proves the condition-case wrapper catches errors rather than propagating them."
(let (captured)
(test-sueb--capture-message captured
(with-temp-buffer
(emacs-lisp-mode)
(insert "(this-function-does-not-exist-for-testing)")
(cj/eval-buffer-with-confirmation-or-error-message)))
(should (string-match-p "Error occurred during evaluation" captured))))
(provide 'test-system-utils-eval-buffer)
;;; test-system-utils-eval-buffer.el ends here
|