Skip to content

Commit 7b2a811

Browse files
committed
Merge pull request #20 from nlamirault/develop
Release 0.9.0
2 parents 443981b + ee18e98 commit 7b2a811

7 files changed

+89
-34
lines changed

ChangeLog.md

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

3+
## Version 0.9.0 (05/31/2016)
4+
5+
- #PR19: Some problem fixes (Tramp, phpunit-get-root-directory,
6+
Use phpunit -c option when set configuration file, ...) (thanks zonuexe)
7+
- Remove keybinding from phpunit-helm
8+
39
## Version 0.8.0 (05/12/2016)
410

511
- #PR16: Create a minor mode (thanks eric-hansen)

README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,19 @@ These functions are available :
3636
You can create some key bindings with these commands:
3737

3838
```lisp
39-
(define-key web-mode-map (kbd "C-x t") 'phpunit-current-test)
40-
(define-key web-mode-map (kbd "C-x c") 'phpunit-current-class)
41-
(define-key web-mode-map (kbd "C-x p") 'phpunit-current-project)
39+
(define-key web-mode-map (kbd "C-t t") 'phpunit-current-test)
40+
(define-key web-mode-map (kbd "C-t c") 'phpunit-current-class)
41+
(define-key web-mode-map (kbd "C-t p") 'phpunit-current-project)
4242
```
4343

44+
or use the minor mode :
45+
46+
```lisp
47+
(add-to-list 'auto-mode-alist '("\\.php$'" . phpunit-mode))
48+
```
49+
50+
51+
4452
### Configuration
4553

4654
The following configuration variables are available:

phpunit-mode.el

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,33 @@
11
;;; phpunit-mode.el --- Minor mode for PHPUnit
22

3+
;; This program is free software; you can redistribute it and/or
4+
;; modify it under the terms of the GNU General Public License
5+
;; as published by the Free Software Foundation; either version 2
6+
;; of the License, or (at your option) any later version.
7+
8+
;; This program is distributed in the hope that it will be useful,
9+
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
;; GNU General Public License for more details.
12+
13+
;; You should have received a copy of the GNU General Public License
14+
;; along with this program; if not, write to the Free Software
15+
;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16+
;; 02110-1301, USA.
17+
18+
;;; Commentary:
19+
20+
;;; Code:
21+
322
(require 'phpunit)
423

524
(defvar phpunit-mode-map
625
(let ((map (make-keymap)))
7-
(define-key map (kbd "C-t f") 'phpunit-helm-function-tests)
826
(define-key map (kbd "C-t t") 'phpunit-current-test)
927
(define-key map (kbd "C-t c") 'phpunit-current-class)
1028
(define-key map (kbd "C-t p") 'phpunit-current-project)
1129
map)
12-
"Keymap for PHPUnit minor mode")
30+
"Keymap for PHPUnit minor mode.")
1331

1432
(define-minor-mode phpunit-mode
1533
"PHPUnit minor mode"

phpunit.el

+27-20
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
;; Eric Hansen <[email protected]>
55
;;
66
;; URL: https://github.com/nlamirault/phpunit.el
7-
;; Version: 0.8.0
7+
;; Version: 0.9.0
88
;; Keywords: php, tests, phpunit
99

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

1212
;;; License:
1313

14-
;; Copyright (C) 2014, 2015 Nicolas Lamirault <[email protected]>
14+
;; Copyright (C) 2014, 2015, 2016 Nicolas Lamirault <[email protected]>
1515

1616
;; This program is free software; you can redistribute it and/or
1717
;; modify it under the terms of the GNU General Public License
@@ -41,6 +41,7 @@
4141

4242
;;; Code:
4343

44+
(require 'cl-lib)
4445
(require 's)
4546
(require 'f)
4647

@@ -78,9 +79,9 @@
7879
:type 'boolean
7980
:group 'phpunit)
8081

81-
(defcustom phpunit-configuration-file "phpunit.xml"
82+
(defcustom phpunit-configuration-file nil
8283
"The PHPUnit configuration file."
83-
:type 'string
84+
:type '(choice string nil)
8485
:group 'phpunit)
8586

8687
(defconst php-beginning-of-defun-regexp
@@ -118,26 +119,30 @@
118119
;; "vendor/bin/phpunit"))
119120
(unless phpunit-executable
120121
(setq phpunit-executable phpunit-program))
121-
(s-concat phpunit-executable " -c "
122-
(phpunit-get-root-directory)
123-
phpunit-configuration-file
124-
args)
125-
)
126-
)
127-
128-
(defun phpunit-get-root-directory()
122+
(s-concat phpunit-executable
123+
(if phpunit-configuration-file
124+
(s-concat " -c " phpunit-configuration-file)
125+
"")
126+
" "
127+
args)))
128+
129+
(defun phpunit-get-root-directory ()
129130
"Return the root directory to run tests."
130131
;; The function doesn't detect the root directory when used with
131132
;; tramp mode. In that case, the phpunit-root-directory variable can
132133
;; be set which takes precedence
133134
(if (boundp 'phpunit-root-directory)
134135
phpunit-root-directory
135-
(let ((filename (buffer-file-name)))
136-
(when filename
137-
(file-truename (or (locate-dominating-file filename phpunit-configuration-file)
138-
"./"))))))
139-
140-
136+
(let ((filename (buffer-file-name)) path)
137+
(cond
138+
((null filename) default-directory)
139+
(phpunit-configuration-file
140+
(file-truename (locate-dominating-file filename phpunit-configuration-file)))
141+
(:else
142+
(cl-loop for file in '("phpunit.xml" "phpunit.xml.dist" ".git" "composer.json")
143+
do (setq path (locate-dominating-file filename file))
144+
if path return (file-truename path)
145+
finally return (file-truename "./")))))))
141146

142147
(defun phpunit-get-current-class (&optional class-or-path)
143148
"Return the canonical unit test class name associated with the current class or buffer."
@@ -178,7 +183,9 @@
178183
(concat column-setting-command command-separator phpunit-command)))
179184

180185
(defun phpunit-run (args)
181-
(compile (phpunit-get-compile-command args)))
186+
"Execute phpunit command with `ARGS'."
187+
(let ((default-directory (phpunit-get-root-directory)))
188+
(compile (phpunit-get-compile-command args))))
182189

183190

184191
;; API

test/phpunit-test.el

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; phpunit-test.el --- Tests for phpunit.el
22

3-
;; Copyright (C) Nicolas Lamirault <[email protected]>
3+
;; Copyright (C) 2014, 2015, 2016 Nicolas Lamirault <[email protected]>
44

55
;;; Commentary:
66

@@ -31,11 +31,13 @@
3131

3232

3333
(defun phpunit-command (&rest arg)
34-
;;(apply 's-concat "phpunit -c " "phpunit.xml" arg))
35-
(let ((composer-dir (s-concat (concat (getenv "HOME") "/") ".composer")))
34+
(let ((composer-dir (s-concat (concat (getenv "HOME") "/") ".composer"))
35+
(conf (if phpunit-configuration-file
36+
(s-concat "-c " phpunit-configuration-file " ")
37+
"")))
3638
(if (f-dir? composer-dir)
37-
(apply 's-concat composer-dir "/vendor/bin/phpunit -c " "phpunit.xml" arg)
38-
(apply 's-concat "./vendor/bin/phpunit -c " "phpunit.xml" arg))))
39+
(apply 's-concat composer-dir "/vendor/bin/phpunit " conf arg)
40+
(apply 's-concat "./vendor/bin/phpunit " conf arg))))
3941

4042

4143
(ert-deftest test-phpunit-get-class-from-file-path()
@@ -54,11 +56,25 @@
5456
(phpunit-get-current-class "PhpUnitTest"))))
5557

5658

59+
;; Using configuration file
60+
61+
(ert-deftest test-phpunit-with-configuration-file ()
62+
:tags '(configuration-file)
63+
(with-test-sandbox
64+
(let ((phpunit-configuration-file "phpunit.xml"))
65+
(should (s-contains? "-c phpunit.xml"
66+
(phpunit-get-program (phpunit-arguments "")))))))
67+
68+
(ert-deftest test-phpunit-without-configuration-file ()
69+
:tags '(configuration-file)
70+
(with-test-sandbox
71+
(should-not (s-contains? "-c phpunit.xml"
72+
(phpunit-get-program (phpunit-arguments ""))))))
5773

5874
;; Arguments
5975

6076
(ert-deftest test-phpunit-get-program-without-args ()
61-
:tags '(current arguments)
77+
:tags '(arguments)
6278
(with-test-sandbox
6379
(should (string= (phpunit-command)
6480
(phpunit-get-program (phpunit-arguments ""))))))

test/phpunit-version-test.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; phpunit-version-test.el --- Tests for version information
22

3-
;; Copyright (C) Nicolas Lamirault <[email protected]>
3+
;; Copyright (C) 2014, 2015, 2016 Nicolas Lamirault <[email protected]>
44

55
;;; Commentary:
66

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

4242

4343

test/test-helper.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;; test-helper.el --- Test helpers for Phpunit.el
22

3-
;; Copyright (C) Nicolas Lamirault <[email protected]>
3+
;; Copyright (C) 2014, 2015, 2016 Nicolas Lamirault <[email protected]>
44

55
;; Author: Nicolas Lamirault <[email protected]>
66
;; Homepage: https://github.com/nlamirault/phpunit.el

0 commit comments

Comments
 (0)