|
4 | 4 | ;; Eric Hansen <[email protected]>
|
5 | 5 | ;;
|
6 | 6 | ;; URL: https://github.com/nlamirault/phpunit.el
|
7 |
| -;; Version: 0.10.0 |
| 7 | +;; Version: 0.11.0 |
8 | 8 | ;; Keywords: 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"))
|
|
113 | 113 | (interactive)
|
114 | 114 | (add-to-list 'compilation-error-regexp-alist '("^\\(.+\\.php\\):\\([0-9]+\\)$" 1 2))))
|
115 | 115 |
|
| 116 | +(defvar phpunit-last-group-cache nil) |
| 117 | + |
116 | 118 | ;; Commands
|
117 | 119 | ;; -----------
|
118 | 120 |
|
|
178 | 180 | (when (re-search-backward php-beginning-of-defun-regexp nil t)
|
179 | 181 | (match-string-no-properties 1))))
|
180 | 182 |
|
| 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 | + |
181 | 211 | (defun phpunit-arguments (args)
|
182 | 212 | (let ((opts args))
|
183 | 213 | (when phpunit-stop-on-error
|
|
196 | 226 | (phpunit-command (phpunit-get-program (phpunit-arguments args))))
|
197 | 227 | (concat column-setting-command command-separator phpunit-command)))
|
198 | 228 |
|
| 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 | + |
199 | 234 | (defun phpunit-run (args)
|
200 | 235 | "Execute phpunit command with `ARGS'."
|
201 | 236 | (let ((default-directory (phpunit-get-root-directory)))
|
|
228 | 263 | (interactive)
|
229 | 264 | (phpunit-run ""))
|
230 | 265 |
|
| 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))) |
231 | 279 |
|
232 | 280 | (provide 'phpunit)
|
233 | 281 | ;;; phpunit.el ends here
|
0 commit comments