From b07628dddf418d4f47b858e6c35fd3520fbaeed2 Mon Sep 17 00:00:00 2001 From: mattkae Date: Tue, 7 Jun 2022 08:21:30 -0400 Subject: Flycheck mode and typescript --- .../typescript-mode-test-utilities.el | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 elpa/typescript-mode-20220506.827/typescript-mode-test-utilities.el (limited to 'elpa/typescript-mode-20220506.827/typescript-mode-test-utilities.el') diff --git a/elpa/typescript-mode-20220506.827/typescript-mode-test-utilities.el b/elpa/typescript-mode-20220506.827/typescript-mode-test-utilities.el new file mode 100644 index 0000000..faa6c11 --- /dev/null +++ b/elpa/typescript-mode-20220506.827/typescript-mode-test-utilities.el @@ -0,0 +1,63 @@ +;;; typescript-mode-test-utilities --- This file contains test utilities for typescript-mode.el + +;;; Commentary: +;; See typescript-mode-tests.el and typescript-mode-jsdoc-tests.el + +;;; Code: + +(require 'ert) +(require 'typescript-mode) + +;; Adapted from jdee-mode's test suite. +(defmacro test-with-temp-buffer (content &rest body) + "Fill a temporary buffer with `CONTENT' and eval `BODY' in it." + (declare (debug t) + (indent 1)) + `(with-temp-buffer + (insert ,content) + (typescript-mode) + (goto-char (point-min)) + ;; We need this so that tests that simulate user actions operate on the right buffer. + (switch-to-buffer (current-buffer)) + ,@body)) + +(defmacro test-with-fontified-buffer (content &rest body) + "Fill a temporary buffer with `CONTENT' and eval `BODY' in it." + (declare (debug t) + (indent 1)) + `(test-with-temp-buffer + ,content + (font-lock-fontify-buffer) + ,@body)) + +(defun get-face-at (loc) + "Get the face at `LOC'. +If it is not a number, then we `re-search-forward' with `LOC' +as the search pattern." + (when (not (numberp loc)) + (save-excursion + (re-search-forward loc) + (setq loc (match-beginning 0)))) + (get-text-property loc 'face)) + +(defun font-lock-test (contents expected) + "Perform a test on our template. +`CONTENTS' is the string to put in the temporary buffer. +`EXPECTED' is the expected results. +It should be a list of (LOCATION . FACE) pairs, where +LOCATION can be either a single location, or list of locations, +that are all expected to have the same face." + (test-with-fontified-buffer + contents + ;; Make sure our propertize function has been applied to the whole + ;; buffer. + (syntax-propertize (point-max)) + (dolist (spec expected) + (if (listp (car spec)) + (dolist (source (car spec)) + (should (eq (get-face-at source) (cdr spec)))) + (should (eq (get-face-at (car spec)) (cdr spec))))))) + +(provide 'typescript-mode-test-utilities) + +;;; typescript-mode-test-utilities.el ends here -- cgit v1.2.1