Skip to content

Commit 88bbeb9

Browse files
authored
Merge pull request #26 from nlamirault/develop
Release 0.11.0
2 parents 77686cc + 4c1a41b commit 88bbeb9

File tree

4 files changed

+55
-2
lines changed

4 files changed

+55
-2
lines changed

ChangeLog.md

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

3+
## Version 0.11.0 (08/08/2016)
4+
5+
- #PR25: Add phpunit-group (Thanks zonuexe)
6+
37
## Version 0.10.0 (08/07/2016)
48

59
- #PR23: Better regexp using rx (Thanks zonuexe)

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ These functions are available :
3232
* `phpunit-current-test`: launch unit tests for the current test in a class
3333
* `phpunit-current-class`: launch unit tests for the current class
3434
* `phpunit-current-project`: launch all unit tests
35+
* `phpunit-group`: launch PHPUnit for group
3536

3637
You can create some key bindings with these commands:
3738

phpunit.el

+49-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
;; Eric Hansen <[email protected]>
55
;;
66
;; URL: https://github.com/nlamirault/phpunit.el
7-
;; Version: 0.10.0
7+
;; Version: 0.11.0
88
;; Keywords: 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"))
@@ -113,6 +113,8 @@
113113
(interactive)
114114
(add-to-list 'compilation-error-regexp-alist '("^\\(.+\\.php\\):\\([0-9]+\\)$" 1 2))))
115115

116+
(defvar phpunit-last-group-cache nil)
117+
116118
;; Commands
117119
;; -----------
118120

@@ -178,6 +180,34 @@
178180
(when (re-search-backward php-beginning-of-defun-regexp nil t)
179181
(match-string-no-properties 1))))
180182

183+
(defun phpunit--listing-groups ()
184+
"Return list of @group.
185+
186+
https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.annotations.group"
187+
(let ((phpunit-output (phpunit--execute "--list-groups")))
188+
(with-temp-buffer
189+
(insert phpunit-output)
190+
(goto-char (point-min))
191+
(search-forward "Available test group")
192+
(move-beginning-of-line 1)
193+
(next-line)
194+
(cl-loop
195+
for line in (s-split "\n" (buffer-substring-no-properties (point) (point-max)))
196+
if (s-starts-with? " - " line)
197+
collect (s-chop-prefix " - " line)))))
198+
199+
(defun phpunit--get-last-group (path)
200+
"Get last group cache by `PATH'."
201+
(unless phpunit-last-group-cache
202+
(setq phpunit-last-group-cache (make-hash-table :test 'equal)))
203+
(gethash path phpunit-last-group-cache nil))
204+
205+
(defun phpunit--put-last-group (group path)
206+
"Put last group `GROUP' cache by `PATH'."
207+
(unless phpunit-last-group-cache
208+
(setq phpunit-last-group-cache (make-hash-table :test 'equal)))
209+
(puthash path group phpunit-last-group-cache))
210+
181211
(defun phpunit-arguments (args)
182212
(let ((opts args))
183213
(when phpunit-stop-on-error
@@ -196,6 +226,11 @@
196226
(phpunit-command (phpunit-get-program (phpunit-arguments args))))
197227
(concat column-setting-command command-separator phpunit-command)))
198228

229+
(defun phpunit--execute (args)
230+
"Execute phpunit command with `ARGS'."
231+
(let ((default-directory (phpunit-get-root-directory)))
232+
(shell-command-to-string (phpunit-get-program (phpunit-arguments args)))))
233+
199234
(defun phpunit-run (args)
200235
"Execute phpunit command with `ARGS'."
201236
(let ((default-directory (phpunit-get-root-directory)))
@@ -228,6 +263,19 @@
228263
(interactive)
229264
(phpunit-run ""))
230265

266+
;;;###autoload
267+
(defun phpunit-group (use-last-group &optional group)
268+
"Launch PHPUnit for group."
269+
(interactive "p")
270+
(let* ((current-root-directory (phpunit-get-root-directory))
271+
(last-group (phpunit--get-last-group current-root-directory)))
272+
(when (called-interactively-p 'interactive)
273+
(setq use-last-group (eq use-last-group 1))
274+
(setq group (if (and use-last-group last-group)
275+
last-group
276+
(completing-read "PHPUnit @group: " (phpunit--listing-groups)))))
277+
(phpunit-run (format "--group %s" group))
278+
(phpunit--put-last-group group current-root-directory)))
231279

232280
(provide 'phpunit)
233281
;;; phpunit.el ends here

test/phpunit-version-test.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
;;(message "PHPUnit.el : %s" lib-version)
3838
(message "PHPUnit.el Cask version: %s" cask-version)
3939
;;(should (string= version (phpunit-mode-library-version)))))
40-
(should (string= "0.10.0" cask-version))))
40+
(should (string= "0.11.0" cask-version))))
4141

4242

4343

0 commit comments

Comments
 (0)