Skip to content

Commit a137067

Browse files
authored
Merge pull request #53 from nlamirault/develop
Release 0.16.0
2 parents 5ca5ee5 + 87f1dde commit a137067

5 files changed

+91
-25
lines changed

ChangeLog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# phpunit.el ChangeLog
22

3+
## Version 0.16.0 (27/11/2017)
4+
5+
- [#52](https://github.com/nlamirault/phpunit.el/pull/52): windows system prohibits the use of stty (tszg)
6+
- [#49](https://github.com/nlamirault/phpunit.el/pull/49): Add option to hide compilation buffer if all tests pass (thanks mallt)
7+
- [#48](https://github.com/nlamirault/phpunit.el/pull/48): Support colorize output (thanks zonuexe)
8+
- [#46](https://github.com/nlamirault/phpunit.el/pull/46): Add custom variables :tag (thanks zonuexe)
9+
- [#45](https://github.com/nlamirault/phpunit.el/pull/45): Add path to current test file for phpunit-current-test (thanks landakram)
10+
- [#44](https://github.com/nlamirault/phpunit.el/pull/44): Add ability to specify a bootstrap file (thanks landakram)
11+
312
## Version 0.15.0 (02/11/2017)
413

514
- [#43](https://github.com/nlamirault/phpunit.el/pull/42): Rename test-helper to phpunit-test-helper (thanks zonuexe)

phpunit.el

+78-15
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
;; Eric Hansen <[email protected]>
55
;;
66
;; 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
99

1010
;; Package-Requires: ((s "1.9.0") (f "0.16.0") (pkg-info "0.5") (cl-lib "0.5") (emacs "24.3"))
1111

@@ -84,7 +84,25 @@
8484

8585
(defcustom phpunit-configuration-file nil
8686
"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)
88106

89107
(defconst php-beginning-of-defun-regexp
90108
(eval-when-compile
@@ -115,11 +133,8 @@
115133
"[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]"
116134
"Valid syntax for a character in a PHP label.")
117135

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))
123138

124139
(defvar phpunit-last-group-cache nil)
125140

@@ -147,8 +162,13 @@
147162
(s-concat " " (if (stringp phpunit-arg) phpunit-arg
148163
(s-join " " (mapcar 'shell-quote-argument phpunit-arg)))))
149164
(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)))
151169
"")
170+
(when phpunit-colorize
171+
(format " --colors=%s" phpunit-colorize))
152172
" "
153173
args)))
154174

@@ -224,10 +244,28 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
224244

225245
(defun phpunit-get-compile-command (args)
226246
"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))
231269

232270
(defun phpunit--execute (args)
233271
"Execute phpunit command with `ARGS'."
@@ -236,9 +274,32 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
236274

237275
(defun phpunit-run (args)
238276
"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))
240280
(compile (phpunit-get-compile-command args))))
241281

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)))))
242303

243304
;; API
244305
;; ----
@@ -250,7 +311,9 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
250311
(let ((args (s-concat " --filter '"
251312
(phpunit-get-current-class)
252313
"::"
253-
(phpunit-get-current-test) "'")))
314+
(phpunit-get-current-test) "'"
315+
" "
316+
(s-chop-prefix (phpunit-get-root-directory) buffer-file-name))))
254317
(phpunit-run args)))
255318

256319

test/phpunit-test.el

+2-5
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
;;; Code:
2727
(require 'ert)
2828
(require 'f)
29-
(when (boundp 'ert-runner-test-path)
30-
(load (f-expand "phpunit-test-helper.el" ert-runner-test-path) nil :nomessage))
3129

3230
;; (defun phpunit-command (&rest arg)
3331
;; (let ((composer-dir (s-concat (concat (getenv "HOME") "/") ".composer"))
@@ -118,7 +116,7 @@ class PhpUnitTest extends \\PHPUnit_Framework_TestCase {
118116
:tags '(configuration-file)
119117
(phpunit-test-helper-with-test-sandbox
120118
(let ((phpunit-configuration-file "phpunit.xml"))
121-
(should (s-contains? "-c phpunit.xml"
119+
(should (s-contains? (s-concat "-c " (f-long phpunit-configuration-file))
122120
(phpunit-get-program (phpunit-arguments "")))))))
123121

124122
(ert-deftest test-phpunit-without-configuration-file ()
@@ -136,10 +134,9 @@ class PhpUnitTest extends \\PHPUnit_Framework_TestCase {
136134
(phpunit-get-program (phpunit-arguments ""))))))
137135

138136
(ert-deftest test-phpunit-add-stop-on-error-argument ()
139-
:tags '(arguments current)
137+
:tags '(arguments)
140138
(phpunit-test-helper-with-test-sandbox
141139
(let ((phpunit-stop-on-error t))
142-
(message "==> %s " (phpunit-get-program (phpunit-arguments "")))
143140
(should (s-suffix? "phpunit --stop-on-error"
144141
(phpunit-get-program (phpunit-arguments "")))))))
145142

test/phpunit-version-test.el

+1-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
;;; Code:
2727
(require 'ert)
2828
(require 'f)
29-
(when (boundp 'ert-runner-test-path)
30-
(load (f-expand "phpunit-test-helper.el" ert-runner-test-path) nil :nomessage))
3129

3230
(ert-deftest phpunit-mode-library-version ()
3331
:expected-result (if (executable-find "cask") :passed :failed)
@@ -38,7 +36,7 @@
3836
;;(message "PHPUnit.el : %s" lib-version)
3937
(message "PHPUnit.el Cask version: %s" cask-version)
4038
;;(should (string= version (phpunit-mode-library-version)))))
41-
(should (string= "0.15.0" cask-version))))
39+
(should (string= "0.16.0" cask-version))))
4240

4341
(provide 'phpunit-version-test)
4442
;;; phpunit-version-test.el ends here

test/phpunit-test-helper.el test/test-helper.el

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,4 @@
8686
(phpunit-test-helper-load-library "/phpunit.el")
8787
,@body))))
8888

89-
(provide 'phpunit-test-helper)
90-
;;; phpunit-test-helper.el ends here
89+
;;; test-helper.el ends here

0 commit comments

Comments
 (0)