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 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
|
;; ess-test-r-utils.el --- Various utilities for ess R tests -*- lexical-binding: t; -*-
;;
;; This file 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 file 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.
;;
;; A copy of the GNU General Public License is available at
;; https://www.r-project.org/Licenses/
;;
;;; Commentary:
;; Various utilities for ESS tests.
;;; Code:
(require 'ert)
(require 'etest)
(require 'ess-r-mode)
(require 'tramp)
(require 'seq)
(defvar etest-r-config
'(:init ((mode . r)
(eval . (ess-test-r-set-local-process)))))
(defvar ess-test-fixtures-directory
(expand-file-name "fixtures"
(file-name-directory (or load-file-name
buffer-file-name)))
"Location of the fixtures directory.")
(defvar ess-inhibit-message-in-tests nil)
(defmacro with-ess-test-file (file &rest body)
(declare (indent 1) (debug (&rest body)))
`(let ((inhibit-message ess-inhibit-message-in-tests)
(*file* ,file))
(save-window-excursion
(set-buffer (if *file*
(find-file-noselect *file*)
(generate-new-buffer " *with-r-file-temp*")))
,@body)))
(defmacro with-ess-test-r-file (file &rest body)
(declare (indent 1) (debug (sexp body)))
`(with-ess-test-file ,file
(R-mode)
,@body))
(defmacro with-ess-test-c-file (file &rest body)
(declare (indent 1) (debug (sexp body)))
`(with-ess-test-file ,file
(c-mode)
,@body))
;; Borrowed from org
(defmacro ess-r-test-with-temp-text (text &rest body)
"Run body in a temporary buffer with `ess-r-mode' as the active
mode holding TEXT. If the string \"¶\" appears in TEXT
then remove it and place the point there before running BODY,
otherwise place the point at the beginning of the inserted text."
(declare (indent 1) (debug (form body)))
`(let ((inside-text (if (stringp ,text) ,text (eval ,text)))
(ess-r-mode-hook nil))
(with-temp-buffer
(ess-r-mode)
(let ((point (string-match "¶" inside-text)))
(if point
(progn
(insert (replace-match "" nil nil inside-text))
(goto-char (1+ (match-beginning 0))))
(insert inside-text)
(goto-char (point-min))))
,@body)))
(defmacro ess-cpp-test-with-temp-text (text &rest body)
"Run body in a temporary buffer with `cpp-mode' as the active
mode holding TEXT. Turn on `ess-roxy-mode'. If the string \"¶\"
appears in TEXT then remove it and place the point there before
running BODY, otherwise place the point at the beginning of the
inserted text."
(declare (indent 1) (debug (form body)))
`(let ((inside-text (if (stringp ,text) ,text (eval ,text)))
(c++-mode-hook nil))
(with-temp-buffer
(c++-mode)
(ess-roxy-mode)
(let ((point (string-match "¶" inside-text)))
(if point
(progn
(insert (replace-match "" nil nil inside-text))
(goto-char (1+ (match-beginning 0))))
(insert inside-text)
(goto-char (point-min))))
,@body)))
(defun run-ess-test-r-vanilla ()
"Start vanilla R process and return the process object."
(save-window-excursion
(let ((inhibit-message ess-inhibit-message-in-tests)
(ess-ask-for-ess-directory nil))
(R "--no-init-file --no-site-file"))))
(let ((inf-bufs '((output . nil)
(tracebug . nil))))
(defun ess-r-test-proc-buf--init (type)
(setf (cdr (assq type inf-bufs))
(run-ess-test-r-vanilla))
(let* ((inf-buf (cdr (assq type inf-bufs)))
(inf-proc (get-buffer-process inf-buf))
(inf-filter (pcase type
(`output 'inferior-ess-output-filter)
(`tracebug 'inferior-ess-tracebug-output-filter)
(_ (error "Unknown filter type")))))
(ess-wait-for-process (get-buffer-process inf-buf))
(set-process-filter inf-proc inf-filter)
(with-current-buffer inf-buf
;; Replacing strings of " +" causes random failures, probably
;; because of the buffered output
(setq-local inferior-ess-replace-long+ nil)
(let ((inhibit-read-only t))
(erase-buffer)))
inf-buf))
(defun ess-r-test-proc-buf (type &optional force)
"Common process buffer for tests."
(or (unless force
(cdr (assq type inf-bufs)))
(ess-r-test-proc-buf--init type))))
(defun ess-send-input-to-R (input &optional type)
"Eval INPUT and return the entire content of the REPL buffer.
TYPE can be one of 'string, 'region 'c-c or 'repl. If nil or
'string, use `ess-send-string' (lowest level primitive); if
'region use `ess-eval-region' if 'c-c use
`ess-eval-region-or-function-or-paragraph' which is by default
bound to C-c C-c; if 'repl, eval interactively at the REPL. All
prompts in the output are replaced with '> '. There is no full
proof way to test for prompts given that process output could be
split arbitrary."
(let* ((prompt-regexp "^\\([+.>] \\)\\{2,\\}")
(inf-buf (run-ess-test-r-vanilla))
(inf-proc (get-buffer-process inf-buf))
(inhibit-message ess-inhibit-message-in-tests))
;; just in case
(ess-wait-for-process inf-proc)
(ess--flush-accumulated-output inf-proc)
(ess-test-unwind-protect inf-buf
(with-current-buffer (process-buffer inf-proc)
(let ((inhibit-read-only t))
(erase-buffer)
;; (switch-to-buffer (current-buffer)) ; for debugging
(cond
((or (null type) (eq type 'string))
(ess-send-string inf-proc input))
((eq type 'repl)
(insert input)
(inferior-ess-send-input))
((or (eq type 'region)
(eq type 'c-c))
(with-temp-buffer
(insert input)
(goto-char (point-min))
(R-mode)
(setq ess-current-process-name (process-name inf-proc))
(if (eq type 'region)
(ess-eval-region (point-min) (point-max) nil)
(ess-eval-region-or-function-or-paragraph nil))))
(t (error "Invalid TYPE parameter")))
(process-send-string inf-proc "cat('END')\n")
;; wait till we have our end marker
(while (not (looking-back "\n?END> " nil t))
(sleep-for 0.01)
(goto-char (point-max)))
;; remove END>
(delete-region (match-beginning 0) (match-end 0))
;; (buffer-substring-no-properties (point-min) (point-max))
(replace-regexp-in-string
prompt-regexp "> "
(buffer-substring-no-properties (point-min) (point-max))))))))
(defun ess-test-R-indentation (file style)
(let ((ess-style-alist ess-test-style-alist)
(buff (find-file-noselect file t t))
(inhibit-message ess-inhibit-message-in-tests))
(with-current-buffer buff
(R-mode)
(ess-set-style style)
(set-buffer-modified-p nil)
(should (not-change-on-indent buff)))))
;; !!! NB: proc functionality from now on uses inferior-ess-ordinary-filter and
;; !!! *proc* dynamic var
(defmacro with-r-running (buffer-or-file &rest body)
"Run BODY within BUFFER-OR-FILE with attached R process.
If BUFFER-OR-FILE is a file, the file is visited first. The R
process is run with `inferior-ess-ordinary-filter' which is not
representative to the common interactive use with tracebug on."
(declare (indent 1) (debug (form body)))
`(let* ((inhibit-message ess-inhibit-message-in-tests)
(buffer-or-file ,buffer-or-file)
(r-file-buffer (cond ((bufferp buffer-or-file)
buffer-or-file)
((stringp buffer-or-file)
(find-file-noselect buffer-or-file))
(t
(generate-new-buffer " *with-r-file-temp*")))))
(save-window-excursion
(switch-to-buffer r-file-buffer)
(R-mode)
(let* ((*proc* (get-buffer-process (run-ess-test-r-vanilla)))
(ess-local-process-name (process-name *proc*))
(*inf-buf* (process-buffer *proc*)))
(unwind-protect
(ess-test-unwind-protect *inf-buf*
(setq ess-r-tests-current-output-buffer *inf-buf*)
(let ((inhibit-read-only t))
(with-current-buffer ess-r-tests-current-output-buffer
(erase-buffer)))
(set-process-filter *proc* 'inferior-ess-output-filter)
(prog1 (progn ,@body)
(ess-wait-for-process *proc*)))
(setq ess-r-tests-current-output-buffer nil))))))
(defvar ess-r-tests-current-output-buffer nil)
;; The following retrieve the last output and clean the output
;; buffer. This is useful to continue testing without restarting a
;; fresh R session.
;; In case of other side effects than mere output, it's probably safer
;; to perform ulterior tests with a fresh R to avoid contaminating
;; them.
(defmacro output (&rest body)
(declare (indent 1) (debug (&rest body)))
`(progn
(ess-wait-for-process *proc*)
,@body
(ess-wait-for-process *proc*)
(with-current-buffer ess-r-tests-current-output-buffer
(ess-kill-last-line)
(prog1 (buffer-substring-no-properties (point-min) (point-max))
(erase-buffer)))))
(defmacro output= (body expected)
(declare (indent 0) (debug (sexp sexp)))
`(progn
(let ((output (output ,body))
(expected (eval ,expected)))
(if (string= output expected)
output
;; Probably a better way but this gets the job done
(signal 'ert-test-failed (list (concat "Expected: \n" expected)
(concat "Result: \n" output)))))))
(defun face-at (point)
(save-excursion
(if (>= point 0)
(goto-char point)
(forward-char point))
(get-char-property (point) 'face)))
(defun insert-fontified (&rest args)
(apply #'insert args)
(font-lock-default-fontify-buffer))
(defmacro ess-test-sleep-while (test seconds timeout &optional msg)
`(let ((_seconds ,seconds)
(_timeout ,timeout)
(_time-start (current-time)))
(while ,test
(when (time-less-p _timeout (time-subtract (current-time) _time-start))
(error (or ,msg "Exceeded timeout")))
(sleep-for _seconds))
t))
;; It is safer to kill the buffer synchronously, otherwise it might be
;; reused in another test
(defmacro ess-test-unwind-protect (inf-buf &rest body)
(declare (indent 1))
`(unwind-protect (progn ,@body)
(let* ((inf-buf ,inf-buf)
(inf-proc (get-buffer-process inf-buf)))
(when (and inf-proc (process-live-p inf-proc))
(set-process-query-on-exit-flag inf-proc nil)
(kill-process inf-proc)
(ess-test-sleep-while (process-live-p inf-proc) 0.001 1
"Expected dead process"))
(kill-buffer inf-buf))))
(defun ess-test-r-set-local-process (&optional type)
(let* ((proc-buf (ess-r-test-proc-buf (or type 'tracebug)))
(proc (get-buffer-process proc-buf)))
(unless proc
(ess-r-test-proc-buf (or type 'tracebug) 'force)
(error "process for unit tests died unexpectedly in a previous test and was just relaunched"))
(setq ess-local-process-name (process-name (get-buffer-process proc-buf)))
(setq etest-local-inferior-buffer proc-buf)))
;; Utilities for testing remote functionality
;; Define a mock TRAMP method to use for testing. This code is taken from
;; `tramp-tests.el'.
(add-to-list
'tramp-methods
'("mock"
(tramp-login-program "sh")
(tramp-login-args (("-i")))
(tramp-direct-async-args (("-c")))
(tramp-remote-shell "/bin/sh")
(tramp-remote-shell-args ("-c"))
(tramp-connection-timeout 10)))
(defun ess-test-create-remote-path (path)
"Construct a remote path using the 'mock' TRAMP method.
Take a string PATH representing a local path, and construct a
remote path that uses the 'mock' TRAMP method."
(let ((full-path (abbreviate-file-name (expand-file-name path))))
(concat "/mock::" full-path)))
;; Utilities for testing ESSR injection
(defun ess--essr-remove ()
"Ensure that ESSR objects are removed.
Note that if `ess--essr-detach' is successful then it is critical
that we don't run `ess--essr-remove-global-objs' because
.ess.command doesn't exist in the R runtime environment (and
which is relied upon by `ess-command')."
(or (ess--essr-detach)
(ess--essr-remove-global-objs)))
(defun ess--essr-detach ()
"Ensure that ESSR is not attached."
(ess-boolean-command "tryCatch({detach('ESSR'); 'TRUE'}, error = function(e) 'FALSE')\n"))
(defun ess--essr-remove-global-objs ()
"Ensure that all ESSR objects are removed from the global env."
(ess-command "rm(list = grep('\\\\.(ess|ESS)', ls(all.names = TRUE), value = TRUE))\n"))
(defun ess--essr-check-if-attached ()
"Check whether ESSR is attached to the search path."
(let ((attached-nms (ess-get-words-from-vector "search()\n")))
(seq-some (lambda (str) (string= str "ESSR")) attached-nms)))
(defun ess--essr-check-if-in-globalenv ()
"Check whether any ESSR objects are in the global env."
(let* ((r-input "grep('\\\\.(ess|ESS)', ls(all.names = TRUE), value = TRUE)\n")
(output-list (ess-get-words-from-vector r-input)))
(> (length output-list) 0)))
(defun ess--essr-check-if-in-essrenv ()
"Check whether any ESSR objects are in the ESSR env."
(let* ((r-input "grep('\\\\.(ess|ESS)', ls('ESSR', all.names = TRUE), value = TRUE)\n")
(output-list (ess-get-words-from-vector r-input)))
(> (length output-list) 0)))
(defun ess--essr-load-or-throw-error (file ess-r--load-ESSR-fcn)
"Attempt to attach the ESSR environment.
Throws an error if unsuccesful."
(with-ess-test-r-file file
(with-r-running (current-buffer)
;; ensure that there is no ESSR environment nor any ESSR objects in the
;; global environment
(ess--essr-remove)
;; inject environment and attach
(ess-r--without-format-command (funcall ess-r--load-ESSR-fcn))
;; check for successful ESSR injection
(should (not (ess--essr-check-if-in-globalenv)))
(should (ess--essr-check-if-attached))
(should (ess--essr-check-if-in-essrenv)))
(kill-buffer)))
(defun token= (type &optional value)
"Check that the next token conforms to TYPE and VALUE.
This checks it back and forth and moves the point after the
token."
(and (ess-jump-token type value)
(ess-token-before= type value)))
(defmacro ess-with-toggled-font-lock-keyword (enable keywords &rest body)
(declare (indent 2)
(debug (&rest form)))
`(progn
(let* ((enable ,enable)
(keywords ,keywords)
(keywords (if (listp keywords)
keywords
(list keywords)))
toggled)
(mapc (lambda (kw)
(if (not (eq enable (cdr (assq kw ess-R-font-lock-keywords))))
(progn
(ess-font-lock-toggle-keyword kw)
(push kw toggled))))
keywords)
,@body
(mapc #'ess-font-lock-toggle-keyword
toggled))))
(defmacro ess-with-disabled-font-lock-keyword (keywords &rest body)
(declare (indent 1)
(debug (&rest form)))
`(ess-with-toggled-font-lock-keyword nil ,keywords ,@body))
(defmacro ess-with-enabled-font-lock-keyword (keywords &rest body)
(declare (indent 1)
(debug (&rest form)))
`(ess-with-toggled-font-lock-keyword t ,keywords ,@body))
(provide 'ess-test-r-utils)
;; Local Variables:
;; etest-local-config: etest-r-config
;; End:
;;; ess-test-r-utils.el ends here
|