4
4
; ; Eric Hansen <[email protected] >
5
5
; ;
6
6
; ; URL: https://github.com/nlamirault/phpunit.el
7
- ; ; Version: 0.12 .0
7
+ ; ; Version: 0.14 .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"))
49
49
50
50
(defgroup phpunit nil
51
51
" PHPUnit utility"
52
+ :tag " PHPUnit"
53
+ :prefix " phpunit-"
54
+ :group 'tools
52
55
:group 'php )
53
56
54
- (defcustom phpunit-program " phpunit "
57
+ (defcustom phpunit-program nil
55
58
" 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)" )))
58
62
59
- (defcustom phpunit-arg " "
63
+ (defcustom phpunit-arg nil
60
64
" Argument to pass to phpunit."
61
- :type 'string
65
+ :type '(choice string
66
+ (repeat string))
62
67
:group 'phpunit )
63
68
64
69
(defcustom phpunit-stop-on-error nil
65
70
" Stop execution upon first error."
66
- :type 'boolean
67
- :group 'phpunit )
71
+ :type 'boolean )
68
72
69
73
(defcustom phpunit-stop-on-failure nil
70
74
" Stop execution upon first error or failure."
71
- :type 'boolean
72
- :group 'phpunit )
75
+ :type 'boolean )
73
76
74
77
(defcustom phpunit-stop-on-skipped nil
75
78
" Stop execution upon first skipped test."
76
- :type 'boolean
77
- :group 'phpunit )
79
+ :type 'boolean )
78
80
79
81
(defcustom phpunit-verbose-mode nil
80
82
" Display debugging information during test execution."
81
- :type 'boolean
82
- :group 'phpunit )
83
+ :type 'boolean )
83
84
84
85
(defcustom phpunit-configuration-file nil
85
86
" The PHPUnit configuration file."
86
- :type '(choice string nil )
87
- :group 'phpunit )
87
+ :type '(choice string nil ))
88
88
89
89
(defconst php-beginning-of-defun-regexp
90
90
(eval-when-compile
91
91
(rx line-start
92
92
(* (syntax whitespace))
93
- (* (or " abstract" " final" " private" " protected" " public" " static" ))
93
+ (* (or " abstract" " final" " private" " protected" " public" " static" ) (+ (syntax whitespace)))
94
+ (* (syntax whitespace))
94
95
" function"
95
96
(+ (syntax whitespace))
96
97
(? " &" )
100
101
" Regular expression for a PHP function." )
101
102
102
103
(defconst php-beginning-of-class
103
- " ^\\ s-*class\\ s-+&?\\ ([a-zA-Z_\x 7f-\x ff][a-zA-Z0-9_\x 7f-\x ff]*\\ )"
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)))
104
112
" Regular expression for a PHP class." )
105
113
106
114
(defconst php-labelchar-regexp
122
130
" Return the command to launch unit test.
123
131
`ARGS' corresponds to phpunit command line arguments."
124
132
(let ((phpunit-executable nil )
125
- (filename (or (buffer-file-name ) " " )))
133
+ (filename (or (buffer-file-name ) " " ))
134
+ (vendor-dir (locate-dominating-file " " " vendor" )))
126
135
(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" ))))
133
140
(unless phpunit-executable
134
- (setq phpunit-executable phpunit-program ))
141
+ (setq phpunit-executable " phpunit" ))
135
142
(when (file-remote-p phpunit-executable)
136
143
(setq phpunit-executable
137
144
(tramp-file-name-localname (tramp-dissect-file-name phpunit-executable))))
138
145
(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)))))
139
149
(if phpunit-configuration-file
140
- (s-concat " -c " phpunit-configuration-file)
150
+ (s-concat " -c " ( shell-quote-argument phpunit-configuration-file) )
141
151
" " )
142
152
" "
143
153
args)))
160
170
if path return (file-truename path)
161
171
finally return (file-truename " ./" )))))))
162
172
163
- (defun phpunit-get-current-class (&optional class-or-path )
173
+ (defun phpunit-get-current-class ()
164
174
" 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 ))))
176
178
177
179
(defun phpunit-get-current-test ()
178
180
" Get the name of the current test function"
@@ -198,9 +200,9 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
198
200
199
201
(defun phpunit--get-last-group (path )
200
202
" 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 ) ))
204
206
205
207
(defun phpunit--put-last-group (group path )
206
208
" Put last group `GROUP' cache by `PATH' ."
@@ -209,18 +211,19 @@ https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.anno
209
211
(puthash path group phpunit-last-group-cache))
210
212
211
213
(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 )
222
224
223
225
(defun phpunit-get-compile-command (args )
226
+ " Return command string to execute PHPUnit from `ARGS' ."
224
227
(let ((column-setting-command (format " stty cols %d " (frame-width )))
225
228
(command-separator " ; " )
226
229
(phpunit-command (phpunit-get-program (phpunit-arguments args))))
0 commit comments