4
4
; ; Eric Hansen <[email protected] >
5
5
; ;
6
6
; ; URL: https://github.com/nlamirault/phpunit.el
7
- ; ; Version: 0.15 .0
8
- ; ; Keywords: php, tests, phpunit
7
+ ; ; Version: 0.16 .0
8
+ ; ; Keywords: tools, php, tests, phpunit
9
9
10
10
; ; Package-Requires: ((s "1.9.0") (f "0.16.0") (pkg-info "0.5") (cl-lib "0.5") (emacs "24.3"))
11
11
84
84
85
85
(defcustom phpunit-configuration-file nil
86
86
" The PHPUnit configuration file."
87
- :type '(choice string nil ))
87
+ :type '(choice (file :tag " Path to phpunit.xml[.dist]" )
88
+ (const :tag " Automatically detect the path of phpunit.xml" nil )))
89
+
90
+ (defcustom phpunit-bootstrap-file nil
91
+ " The PHPUnit bootstrap file."
92
+ :type '(choice (file :tag " Path to PHPUnit bootstrap script" )
93
+ (const :tag " Not specify boostrap script" nil )))
94
+
95
+ (defcustom phpunit-colorize nil
96
+ " Colorize PHPUnit compilation output buffer."
97
+ :type '(choice (const :tag " Do not specific --color argument" nil )
98
+ (const :tag " --color=auto" " auto" )
99
+ (const :tag " --color=never" " never" )
100
+ (const :tag " --color=always" " always" )))
101
+
102
+ (defcustom phpunit-hide-compilation-buffer-if-all-tests-pass nil
103
+ " Hide the compilation buffer if all tests pass."
104
+ :type 'boolean
105
+ :group 'phpunit )
88
106
89
107
(defconst php-beginning-of-defun-regexp
90
108
(eval-when-compile
115
133
" [a-zA-Z_\x 7f-\x ff][a-zA-Z0-9_\x 7f-\x ff]"
116
134
" Valid syntax for a character in a PHP label." )
117
135
118
- ; ; Allow for error navigation after a failed test
119
- (add-hook 'compilation-mode-hook
120
- (lambda ()
121
- (interactive )
122
- (add-to-list 'compilation-error-regexp-alist '(" ^\\ (.+\\ .php\\ ):\\ ([0-9]+\\ )$" 1 2 ))))
136
+ (when phpunit-hide-compilation-buffer-if-all-tests-pass
137
+ (add-hook 'compilation-finish-functions 'phpunit--hide-compilation-buffer-if-all-tests-pass ))
123
138
124
139
(defvar phpunit-last-group-cache nil )
125
140
147
162
(s-concat " " (if (stringp phpunit-arg) phpunit-arg
148
163
(s-join " " (mapcar 'shell-quote-argument phpunit-arg)))))
149
164
(if phpunit-configuration-file
150
- (s-concat " -c " (shell-quote-argument phpunit-configuration-file))
165
+ (s-concat " -c " (shell-quote-argument (expand-file-name phpunit-configuration-file)))
166
+ " " )
167
+ (if phpunit-bootstrap-file
168
+ (s-concat " --bootstrap " (shell-quote-argument (expand-file-name phpunit-bootstrap-file)))
151
169
" " )
170
+ (when phpunit-colorize
171
+ (format " --colors=%s " phpunit-colorize))
152
172
" "
153
173
args)))
154
174
@@ -224,10 +244,28 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
224
244
225
245
(defun phpunit-get-compile-command (args )
226
246
" Return command string to execute PHPUnit from `ARGS' ."
227
- (let ((column-setting-command (format " stty cols %d " (frame-width )))
228
- (command-separator " ; " )
229
- (phpunit-command (phpunit-get-program (phpunit-arguments args))))
230
- (concat column-setting-command command-separator phpunit-command)))
247
+ (if (memq system-type '(windows-nt ms-dos))
248
+ (phpunit-get-program (phpunit-arguments args))
249
+ (let ((column-setting-command (format " stty cols %d " (frame-width )))
250
+ (command-separator " ; " )
251
+ (phpunit-command (phpunit-get-program (phpunit-arguments args))))
252
+ (concat column-setting-command command-separator phpunit-command))))
253
+
254
+ (defun phpunit--colorize-compilation-buffer ()
255
+ " Colorize PHPUnit compilation buffer."
256
+ (let ((inhibit-read-only t ))
257
+ (ansi-color-apply-on-region compilation-filter-start (point ))))
258
+
259
+ (defun phpunit--setup-compilation-buffer ()
260
+ " Setup hooks for PHPUnit compilation buffer."
261
+ (add-hook 'compilation-finish-functions #'phpunit--finish-compilation-buffer )
262
+ (add-hook 'compilation-filter-hook #'phpunit--colorize-compilation-buffer ))
263
+
264
+ (defun phpunit--finish-compilation-buffer (&optional cur-buffer msg )
265
+ " Setup hooks for PHPUnit compilation buffer.
266
+ `CUR-BUFFER' and `MSG' are ignore."
267
+ (remove-hook 'compilation-finish-functions #'phpunit--finish-compilation-buffer )
268
+ (remove-hook 'compilation-filter-hook #'phpunit--colorize-compilation-buffer ))
231
269
232
270
(defun phpunit--execute (args )
233
271
" Execute phpunit command with `ARGS' ."
@@ -236,9 +274,32 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
236
274
237
275
(defun phpunit-run (args )
238
276
" Execute phpunit command with `ARGS' ."
239
- (let ((default-directory (phpunit-get-root-directory)))
277
+ (add-to-list 'compilation-error-regexp-alist '(" ^\\ (.+\\ .php\\ ):\\ ([0-9]+\\ )$" 1 2 ))
278
+ (let ((default-directory (phpunit-get-root-directory))
279
+ (compilation-process-setup-function #'phpunit--setup-compilation-buffer ))
240
280
(compile (phpunit-get-compile-command args))))
241
281
282
+ (defun phpunit--hide-compilation-buffer-if-all-tests-pass (buffer status )
283
+ " Hide the compilation BUFFER if all tests pass.
284
+ The STATUS describes how the compilation process finished."
285
+ (with-current-buffer buffer
286
+ (let* ((buffer-string (buffer-substring-no-properties
287
+ (point-min ) (point-max )))
288
+ (buffer-lines (s-lines buffer-string))
289
+ (ok-msg (car (cl-remove-if-not
290
+ (lambda (x )
291
+ (and (s-contains? " OK" x)
292
+ (s-contains? " test" x)
293
+ (s-contains? " assertion" x)))
294
+ buffer-lines)))
295
+ (time-msg (car (cl-remove-if-not
296
+ (lambda (x )
297
+ (and (s-contains? " Time" x)
298
+ (s-contains? " Memory" x)))
299
+ buffer-lines))))
300
+ (when ok-msg
301
+ (delete-windows-on buffer)
302
+ (message " %s %s " ok-msg time-msg)))))
242
303
243
304
; ; API
244
305
; ; ----
@@ -250,7 +311,9 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
250
311
(let ((args (s-concat " --filter '"
251
312
(phpunit-get-current-class)
252
313
" ::"
253
- (phpunit-get-current-test) " '" )))
314
+ (phpunit-get-current-test) " '"
315
+ " "
316
+ (s-chop-prefix (phpunit-get-root-directory) buffer-file-name))))
254
317
(phpunit-run args)))
255
318
256
319
0 commit comments