Skip to content

Commit 791d1b3

Browse files
committed
Release 0.14.0
* develop: Fix version test Update changelog Modify phpunit detection algorithm Modify customize variable definition Modify custom group bump version update changelog Add test case for phpunit-get-current-class, phpunit-get-current-test Remove unused tests Fix and simplify phpunit-get-current-class Fix function name regexp Modify search `phpunit` command priority Use :prefix instead of :group Fix customize Remove redundant let clause Remove set process, that have written twice bump version
2 parents 165ca25 + e67e907 commit 791d1b3

File tree

4 files changed

+139
-69
lines changed

4 files changed

+139
-69
lines changed

ChangeLog.md

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

3+
## Version 0.14.0 (12/19/2016)
4+
5+
- [#39](https://github.com/nlamirault/phpunit.el/pull/39): Support custom phpunit command (thanks zonuexe)
6+
- Modify phpunit detection algorithm
7+
- [#36](https://github.com/nlamirault/phpunit.el/pull/36): Modify custom group (thanks zonuexe)
8+
9+
## Version 0.13.0 (03/09/2016)
10+
11+
- [#34](https://github.com/nlamirault/phpunit.el/pull/34): Fix test phpunit-get-class (thanks zonuexe)
12+
- [#33](https://github.com/nlamirault/phpunit.el/pull/33): Fix phpunit-current-test (thanks zonuexe)
13+
- [#30](https://github.com/nlamirault/phpunit.el/pull/30): Modify phpunit command priority (thanks zonuexe)
14+
- [#29](https://github.com/nlamirault/phpunit.el/pull/29): Refactor customize (thanks zonuexe)
15+
316
## Version 0.12.0 (08/08/2016)
417

518
- `FIX` unit tests if *phpunit* executable exists.

phpunit.el

+55-52
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.12.0
7+
;; Version: 0.14.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"))
@@ -49,48 +49,49 @@
4949

5050
(defgroup phpunit nil
5151
"PHPUnit utility"
52+
:tag "PHPUnit"
53+
:prefix "phpunit-"
54+
:group 'tools
5255
:group 'php)
5356

54-
(defcustom phpunit-program "phpunit"
57+
(defcustom phpunit-program nil
5558
"PHPUnit binary path."
56-
:type 'file
57-
:group 'phpunit)
59+
:type '(choice (file :tag "Path to PHPUnit executable file.")
60+
(function :tag "A function return PHPUnit executable file path.")
61+
(string :tag "PHPUnit command name. (require command in PATH)")))
5862

59-
(defcustom phpunit-arg ""
63+
(defcustom phpunit-arg nil
6064
"Argument to pass to phpunit."
61-
:type 'string
65+
:type '(choice string
66+
(repeat string))
6267
:group 'phpunit)
6368

6469
(defcustom phpunit-stop-on-error nil
6570
"Stop execution upon first error."
66-
:type 'boolean
67-
:group 'phpunit)
71+
:type 'boolean)
6872

6973
(defcustom phpunit-stop-on-failure nil
7074
"Stop execution upon first error or failure."
71-
:type 'boolean
72-
:group 'phpunit)
75+
:type 'boolean)
7376

7477
(defcustom phpunit-stop-on-skipped nil
7578
"Stop execution upon first skipped test."
76-
:type 'boolean
77-
:group 'phpunit)
79+
:type 'boolean)
7880

7981
(defcustom phpunit-verbose-mode nil
8082
"Display debugging information during test execution."
81-
:type 'boolean
82-
:group 'phpunit)
83+
:type 'boolean)
8384

8485
(defcustom phpunit-configuration-file nil
8586
"The PHPUnit configuration file."
86-
:type '(choice string nil)
87-
:group 'phpunit)
87+
:type '(choice string nil))
8888

8989
(defconst php-beginning-of-defun-regexp
9090
(eval-when-compile
9191
(rx line-start
9292
(* (syntax whitespace))
93-
(* (or "abstract" "final" "private" "protected" "public" "static"))
93+
(* (or "abstract" "final" "private" "protected" "public" "static") (+ (syntax whitespace)))
94+
(* (syntax whitespace))
9495
"function"
9596
(+ (syntax whitespace))
9697
(? "&")
@@ -100,7 +101,14 @@
100101
"Regular expression for a PHP function.")
101102

102103
(defconst php-beginning-of-class
103-
"^\\s-*class\\s-+&?\\([a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*\\)"
104+
(rx line-start
105+
(* (syntax whitespace))
106+
(? "final" (syntax whitespace))
107+
(* (syntax whitespace))
108+
"class"
109+
(+ (syntax whitespace))
110+
(group (+ (or (syntax word) (syntax symbol))))
111+
(* (syntax whitespace)))
104112
"Regular expression for a PHP class.")
105113

106114
(defconst php-labelchar-regexp
@@ -122,22 +130,24 @@
122130
"Return the command to launch unit test.
123131
`ARGS' corresponds to phpunit command line arguments."
124132
(let ((phpunit-executable nil)
125-
(filename (or (buffer-file-name) "")))
133+
(filename (or (buffer-file-name) ""))
134+
(vendor-dir (locate-dominating-file "" "vendor")))
126135
(setq phpunit-executable
127-
(or (executable-find "phpunit")
128-
(concat (locate-dominating-file "" "vendor")
129-
"vendor/bin/phpunit")))
130-
;; (setq phpunit-executable
131-
;; (concat (locate-dominating-file filename "vendor")
132-
;; "vendor/bin/phpunit"))
136+
(cond ((stringp phpunit-program) phpunit-program)
137+
((functionp phpunit-program) (funcall phpunit-program))
138+
((and vendor-dir (file-exists-p (concat vendor-dir "vendor/bin/phpunit")))
139+
(concat vendor-dir "vendor/bin/phpunit"))))
133140
(unless phpunit-executable
134-
(setq phpunit-executable phpunit-program))
141+
(setq phpunit-executable "phpunit"))
135142
(when (file-remote-p phpunit-executable)
136143
(setq phpunit-executable
137144
(tramp-file-name-localname (tramp-dissect-file-name phpunit-executable))))
138145
(s-concat phpunit-executable
146+
(when phpunit-arg
147+
(s-concat " " (if (stringp phpunit-arg) phpunit-arg
148+
(s-join " " (mapcar 'shell-quote-argument phpunit-arg)))))
139149
(if phpunit-configuration-file
140-
(s-concat " -c " phpunit-configuration-file)
150+
(s-concat " -c " (shell-quote-argument phpunit-configuration-file))
141151
"")
142152
" "
143153
args)))
@@ -160,19 +170,11 @@
160170
if path return (file-truename path)
161171
finally return (file-truename "./")))))))
162172

163-
(defun phpunit-get-current-class (&optional class-or-path)
173+
(defun phpunit-get-current-class ()
164174
"Return the canonical unit test class name associated with the current class or buffer."
165-
(let ((class-name
166-
(let ((class-or-filename (f-filename (or class-or-path
167-
(save-excursion (re-search-backward php-beginning-of-class 0 t)
168-
(match-string 1))
169-
(buffer-file-name)))))
170-
(string-match (concat "\\(" php-labelchar-regexp "*\\)")
171-
class-or-filename)
172-
(match-string 1 class-or-filename))))
173-
(if (string-match "Test$" class-name)
174-
class-name
175-
(concat class-name "Test"))))
175+
(save-excursion
176+
(when (re-search-backward php-beginning-of-class nil t)
177+
(match-string-no-properties 1))))
176178

177179
(defun phpunit-get-current-test ()
178180
"Get the name of the current test function"
@@ -198,9 +200,9 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
198200

199201
(defun phpunit--get-last-group (path)
200202
"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))
203+
(if (null phpunit-last-group-cache)
204+
nil
205+
(gethash path phpunit-last-group-cache nil)))
204206

205207
(defun phpunit--put-last-group (group path)
206208
"Put last group `GROUP' cache by `PATH'."
@@ -209,18 +211,19 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
209211
(puthash path group phpunit-last-group-cache))
210212

211213
(defun phpunit-arguments (args)
212-
(let ((opts args))
213-
(when phpunit-stop-on-error
214-
(setq opts (s-concat opts " --stop-on-error")))
215-
(when phpunit-stop-on-failure
216-
(setq opts (s-concat opts " --stop-on-failure")))
217-
(when phpunit-stop-on-skipped
218-
(setq opts (s-concat opts " --stop-on-skipped")))
219-
(when phpunit-verbose-mode
220-
(setq opts (s-concat opts " --verbose")))
221-
opts))
214+
"Append options to `ARGS' by variables."
215+
(when phpunit-stop-on-error
216+
(setq args (s-concat args " --stop-on-error")))
217+
(when phpunit-stop-on-failure
218+
(setq args (s-concat args " --stop-on-failure")))
219+
(when phpunit-stop-on-skipped
220+
(setq args (s-concat args " --stop-on-skipped")))
221+
(when phpunit-verbose-mode
222+
(setq args (s-concat args " --verbose")))
223+
args)
222224

223225
(defun phpunit-get-compile-command (args)
226+
"Return command string to execute PHPUnit from `ARGS'."
224227
(let ((column-setting-command (format "stty cols %d" (frame-width)))
225228
(command-separator "; ")
226229
(phpunit-command (phpunit-get-program (phpunit-arguments args))))

test/phpunit-test.el

+70-16
Original file line numberDiff line numberDiff line change
@@ -40,24 +40,78 @@
4040
;; (apply 's-concat "./vendor/bin/phpunit " conf arg))))
4141

4242

43-
(ert-deftest test-phpunit-get-class-from-file-path()
43+
(ert-deftest test-phpunit-get-class()
4444
:tags '(tools)
45-
(with-test-sandbox
46-
(should (string= "PhpUnitTest"
47-
(phpunit-get-current-class "/tmp/foo/PhpUnit.class.under.test.php")))))
48-
49-
(ert-deftest test-phpunit-get-class-from-source-class()
45+
(should (string= "PhpUnitTest"
46+
(with-temp-buffer
47+
(insert "<?php
48+
class PhpUnitTest extends \\PHPUnit_Framework_TestCase {
49+
public function test() {
50+
}
51+
}")
52+
(goto-char (point-max))
53+
(phpunit-get-current-class))))
54+
55+
(should (string= "PhpUnitTest"
56+
(with-temp-buffer
57+
(insert "<?php
58+
namespace MyProj;
59+
60+
final class PhpUnitTest extends TestCase
61+
{
62+
public function test_foo()
63+
{
64+
}
65+
}
66+
")
67+
(goto-char (point-max))
68+
(phpunit-get-current-class))))
69+
(should (eq nil
70+
(with-temp-buffer
71+
(insert "<?php
72+
73+
class PhpUnitTest extends \\PHPUnit_Framework_TestCase {
74+
public function test() {
75+
}
76+
}")
77+
(goto-char (point-min))
78+
(phpunit-get-current-class)))))
79+
80+
(ert-deftest test-phpunit-get-class()
5081
:tags '(tools)
51-
(with-test-sandbox
52-
(should (string= "PhpUnitTest"
53-
(phpunit-get-current-class "PhpUnit")))))
54-
55-
(ert-deftest test-phpunit-get-class-from-unit-test-class()
56-
:tags '(tools)
57-
(with-test-sandbox
58-
(should (string= "PhpUnitTest"
59-
(phpunit-get-current-class "PhpUnitTest")))))
60-
82+
(should (string= "test"
83+
(with-temp-buffer
84+
(insert "<?php
85+
class PhpUnitTest extends \\PHPUnit_Framework_TestCase {
86+
public function test() {
87+
}
88+
}")
89+
(goto-char (point-max))
90+
(phpunit-get-current-test))))
91+
(should (string= "test_foo"
92+
(with-temp-buffer
93+
(insert "<?php
94+
namespace MyProj;
95+
96+
final class PhpUnitTest extends TestCase
97+
{
98+
public function test_foo()
99+
{
100+
}
101+
}
102+
")
103+
(goto-char (point-max))
104+
(phpunit-get-current-test))))
105+
106+
(should (eq nil
107+
(with-temp-buffer
108+
(insert "<?php
109+
class PhpUnitTest extends \\PHPUnit_Framework_TestCase {
110+
public function test() {
111+
}
112+
}")
113+
(goto-char (point-min))
114+
(phpunit-get-current-test)))))
61115

62116
;; Using configuration file
63117

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.12.0" cask-version))))
40+
(should (string= "0.14.0" cask-version))))
4141

4242

4343

0 commit comments

Comments
 (0)