emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] fix/bug-21072 6d58dda 1/5: Add elisp-tests-with-temp-buffe


From: Marcin Borkowski
Subject: [Emacs-diffs] fix/bug-21072 6d58dda 1/5: Add elisp-tests-with-temp-buffer, a new testing macro
Date: Fri, 12 May 2017 05:40:49 -0400 (EDT)

branch: fix/bug-21072
commit 6d58dda40a0a43d14dffdd995f0cb3dcc329fa4b
Author: Marcin Borkowski <address@hidden>
Commit: Marcin Borkowski <address@hidden>

    Add elisp-tests-with-temp-buffer, a new testing macro
    
    * test/lisp/emacs-lisp/lisp-tests.el
    (elisp-test-point-marker-regex) New variable.
    (elisp-tests-with-temp-buffer): New macro to help test functions
    moving the point and/or mark.
---
 test/lisp/emacs-lisp/lisp-tests.el | 39 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/test/lisp/emacs-lisp/lisp-tests.el 
b/test/lisp/emacs-lisp/lisp-tests.el
index 8cba7fc..f6039f7 100644
--- a/test/lisp/emacs-lisp/lisp-tests.el
+++ b/test/lisp/emacs-lisp/lisp-tests.el
@@ -5,6 +5,7 @@
 ;; Author: Aaron S. Hawley <address@hidden>
 ;; Author: Stefan Monnier <address@hidden>
 ;; Author: Daniel Colascione <address@hidden>
+;; Author: Marcin Borkowski <address@hidden>
 ;; Keywords: internal
 
 ;; GNU Emacs is free software: you can redistribute it and/or modify
@@ -303,5 +304,43 @@
   ;;   abcdefghijklmnopqrstuv
   i f a scan-error)
 
+;;; Helpers
+
+(defvar elisp-test-point-marker-regex "=!\\([a-zA-Z0-9-]+\\)="
+  "A regexp matching placeholders for point position for
+`elisp-tests-with-temp-buffer'.")
+
+;; Copied and heavily modified from `python-tests-with-temp-buffer'
+(defmacro elisp-tests-with-temp-buffer (contents &rest body)
+  "Create an `emacs-lisp-mode' enabled temp buffer with CONTENTS.
+BODY is the code to be executed within the temp buffer.  Point is
+always located at the beginning of buffer.  Special markers of
+the form =!NAME= in CONTENTS are removed, and a for each one
+a variable called NAME is bound to the position of such
+a marker."
+  (declare (indent 1) (debug t))
+  `(with-temp-buffer
+     (emacs-lisp-mode)
+     (insert ,contents)
+     (goto-char (point-min))
+     (while (re-search-forward elisp-test-point-marker-regex nil t)
+       (delete-region (match-beginning 0)
+                     (match-end 0)))
+     (goto-char (point-min))
+     ,(let (marker-list)
+       (with-temp-buffer
+         (insert (cond ((symbolp contents)
+                         (symbol-value contents))
+                        (t contents)))
+         (goto-char (point-min))
+         (while (re-search-forward elisp-test-point-marker-regex nil t)
+           (push (list (intern (match-string-no-properties 1))
+                       (match-beginning 0))
+                 marker-list)
+           (delete-region (match-beginning 0)
+                          (match-end 0))))
+       `(let ,marker-list
+          ,@body))))
+
 (provide 'lisp-tests)
 ;;; lisp-tests.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]