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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
;;; racket-tests.el
;; Copyright (c) 2013-2018 by Greg Hendershott.
;; License:
;; This is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version. This is distributed in the hope that it will be
;; useful, but without any warranty; without even the implied warranty
;; of merchantability or fitness for a particular purpose. See the GNU
;; General Public License for more details. See
;; http://www.gnu.org/licenses/ for details.
(require 'ert)
(require 'racket-mode)
(require 'racket-repl)
(require 'racket-edit)
(require 'edmacro)
(require 'faceup)
(require 'racket-common)
(require 'racket-custom)
(require 'racket-repl)
(defconst racket-tests/here-dir (faceup-this-file-directory)
"The directory this file is located in.")
;;; Utility functions for "integration" testing
(defconst ci-p (or (getenv "TRAVIS_CI")
(getenv "CI"))
"Is there an environment variable saying we're running on CI?")
(defconst racket-tests/connect-timeout (if ci-p (* 15 60) (* 2 60))
"Timeout for connecting. Very long when running on CI.")
(defconst racket-tests/command-timeout (if ci-p (* 15 60) 30)
"Timeout for synchronous commands. Very long when running on CI.")
(defun racket-tests/type (typing)
(let ((blink-matching-paren nil)) ;suppress "Matches " messages
(execute-kbd-macro (string-to-vector typing))
(redisplay)))
(defun racket-tests/press (binding)
(racket-tests/type (edmacro-parse-keys binding)))
(defun racket-tests/type&press (typing binding)
(racket-tests/type typing)
(racket-tests/press binding))
(defun racket-tests/see-rx (rx)
(with-timeout (racket-tests/command-timeout nil)
(while (not (looking-back rx (point-min)))
(sit-for 1))
t))
(defun racket-tests/see (str)
(racket-tests/see-rx (regexp-quote str)))
(defun racket-tests/explain-see (_str)
`(actual . ,(buffer-substring-no-properties
(point-min)
(point))))
(put 'racket-tests/see-rx 'ert-explainer #'racket-tests/explain-see)
(put 'racket-tests/see 'ert-explainer #'racket-tests/explain-see)
(defun racket-tests/next-free-port ()
;; (1+ racket-command-port) is used by the logging server so skip
;; that, too!
(+ racket-command-port 2))
;;; REPL
(ert-deftest racket-tests/repl ()
"Start REPL. Confirm we get Welcome message and prompt. Exit REPL."
(let ((tab-always-indent 'complete)
(racket--cmd-connect-attempts racket-tests/connect-timeout)
(racket--cmd-connect-timeout racket-tests/connect-timeout)
(racket-command-port (racket-tests/next-free-port))
(racket-command-timeout racket-tests/command-timeout))
(racket-repl)
(with-racket-repl-buffer
;; Welcome
(should (racket-tests/see-rx "Welcome to Racket v[0-9.]+\n> "))
;; Completion
(racket-tests/type&press "with-inp" "TAB")
(should (racket-tests/see "with-input-from-file"))
(racket-tests/press "RET")
(should (racket-tests/see "#<procedure:with-input-from-file>\n> "))
;; Multiline expression indent
(racket-tests/type&press "(if 1" "C-j")
(should (racket-tests/see "(if 1\n "))
(racket-tests/type&press "2" "C-j")
(should (racket-tests/see "2\n "))
(racket-tests/type&press "3)" "RET")
(should (racket-tests/see "3)\n2\n> "))
;; Exit
(racket-tests/type&press "(exit)" "RET")
(should (racket-tests/see "Process Racket REPL finished\n")))))
;;; Run
(ert-deftest racket-tests/run ()
(let* ((racket--cmd-connect-attempts racket-tests/connect-timeout)
(racket--cmd-connect-timeout racket-tests/connect-timeout)
(racket-command-port (racket-tests/next-free-port))
(racket-command-timeout racket-tests/command-timeout)
(pathname (make-temp-file "test" nil ".rkt"))
(name (file-name-nondirectory pathname))
(code "#lang racket/base\n(define x 42)\nx\n"))
(write-region code nil pathname nil 'no-wrote-file-message)
(find-file pathname)
(racket-run)
;; see expected prompt
(with-racket-repl-buffer
(should (racket-tests/see (concat "\n" name "> "))))
;; racket-check-syntax-mode
(when (version<= "6.2" (racket--version))
(racket-check-syntax-mode 1)
;; check-syntax-mode sets header-line-format, so wait for that:
(with-timeout (racket-tests/command-timeout)
(while (not header-line-format) (sit-for 1)))
(goto-char (point-min))
(racket-check-syntax-mode-goto-next-def)
(should (looking-at "racket/base"))
(racket-check-syntax-mode-goto-next-use)
(should (looking-at "define"))
(racket-check-syntax-mode 0))
;; Exit
;; (with-racket-repl-buffer
;; (racket-tests/type&press "(exit)" "RET"))
(delete-file pathname)))
;;; Indentation
(defun racket-tests/same-indent (file)
(with-current-buffer (find-file (concat racket-tests/here-dir file))
(indent-region (point-min) (point-max))
(let ((ok (not (buffer-modified-p))))
(revert-buffer t t t) ;revert in case running ERT interactively
ok)))
(ert-deftest racket-tests/indent-rkt ()
"Indentation of example/*.rkt shouldn't change."
(should (racket-tests/same-indent "racket/example/example.rkt"))
(should (racket-tests/same-indent "racket/example/indent.rkt")))
;;; Font-lock
(defun racket-tests/same-faceup (file)
"Test that FILE is fontified as the .faceup file describes.
FILE is interpreted as relative to this source directory."
(let ((font-lock-maximum-decoration t))
(faceup-test-font-lock-file 'racket-mode
(concat racket-tests/here-dir file))))
(faceup-defexplainer racket-tests/same-faceup)
(ert-deftest racket-tests/font-lock ()
"Font-lock of example/*.rkt shouldn't change."
(should (racket-tests/same-faceup "racket/example/indent.rkt"))
(should (racket-tests/same-faceup "racket/example/example.rkt")))
;;; Smart open bracket
(defun racket-tests/brackets (smartp input expected)
(with-temp-buffer
(racket-mode)
(let ((racket-smart-open-bracket-enable smartp)
(blink-matching-paren nil)) ;suppress "Matches " messages
(mapc (lambda (x)
(cond ((eq x ?\[) (racket-smart-open-bracket))
((eq x ?\]) (racket-insert-closing))
(t (racket--self-insert x))))
input)
(equal (buffer-substring-no-properties (point-min) (point-max))
expected))))
(ert-deftest racket-tests/smart-open-bracket ()
"Type a `cond` form with `racket-smart-open-bracket-enable' both t and nil.
Also try with `electric-pair-mode' both on and off.
Currently this is really just a regression test for bug #81. This
could be expanded into a series of exhaustive tests of all the
special forms it handles."
(let ((before "[cond [[f x] #t][else #f]]")
(after "(cond [(f x) #t][else #f])")
(orig-electricp electric-pair-mode))
(electric-pair-mode -1)
(should (racket-tests/brackets nil before before))
(should (racket-tests/brackets t before after))
(electric-pair-mode 1)
(should (racket-tests/brackets nil before before))
(should (racket-tests/brackets t before after))
;; Restore in case running interactively with ERT
(electric-pair-mode (if orig-electricp 1 -1))))
(provide 'racket-tests)
;;; racket-tests.el ends here
|