-
Notifications
You must be signed in to change notification settings - Fork 79
/
typescript-mode-test-utilities.el
63 lines (54 loc) · 2 KB
/
typescript-mode-test-utilities.el
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
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-ensure (point-min) (point-max))
,@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