forked from pezra/rspec-mode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rspec-mode.el
341 lines (292 loc) · 12.7 KB
/
rspec-mode.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
;;; rspec-mode.el --- Enhance ruby-mode for RSpec
;; Copyright (C) 2008 Peter Williams <http://pezra.barelyenough.org>
;; Authors: Peter Williams, Tim Harper
;; URL: http://github.com/pezra/rspec-mode
;; Created: 2008
;; Version: 0.2
;; Keywords: rspec ruby
;; Package-Requires: ((ruby-mode "1.1"))
;;; Commentary:
;;
;; This file is NOT part of GNU Emacs.
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; See <http://www.gnu.org/licenses/> for a copy of the GNU General
;; Public License.
;;; Documentation:
;;
;; This minor mode provides some enhancements to ruby-mode in
;; the contexts of RSpec specifications. Namely, it provides the
;; following capabilities:
;;
;; * toggle back and forth between a spec and it's target (bound to
;; `\C-c ,t`)
;;
;; * verify the spec file associated with the current buffer (bound to `\C-c ,v`)
;;
;; * verify the spec defined in the current buffer if it is a spec
;; file (bound to `\C-c ,v`)
;;
;; * verify the example defined at the point of the current buffer (bound to `\C-c ,s`)
;;
;; * re-run the last verification process (bound to `\C-c ,r`)
;;
;; * toggle the pendingness of the example at the point (bound to
;; `\C-c ,d`)
;;
;; * disable the example at the point by making it pending
;;
;; * reenable the disabled example at the point
;;
;; * run "spec" rake task for project (bound to `\C-c ,a`)
;;
;; Dependencies
;; ------------
;;
;; This minor mode depends on `mode-compile`. The expectations depend
;; `on el-expectataions.el`.
;;
;;; Change Log:
;; 0.2 - Tim Harper implemented support for imenu to generate a basic
;; tag outline
;; 0.1 - Pezra's version in master
;;; Code:
(require 'ruby-mode)
(defconst rspec-mode-abbrev-table (make-abbrev-table))
(defconst rspec-mode-keymap (make-sparse-keymap) "Keymap used in rspec mode")
(define-key rspec-mode-keymap (kbd "C-c ,v") 'rspec-verify)
(define-key rspec-mode-keymap (kbd "C-c ,s") 'rspec-verify-single)
(define-key rspec-mode-keymap (kbd "C-c ,a") 'rspec-verify-all)
(define-key rspec-mode-keymap (kbd "C-c ,d") 'rspec-toggle-example-pendingness)
(define-key rspec-mode-keymap (kbd "C-c ,t") 'rspec-toggle-spec-and-target)
;;;###autoload
(define-minor-mode rspec-mode
"Minor mode for rSpec files"
:lighter " rSpec"
:keymap rspec-mode-keymap)
(defvar rspec-imenu-generic-expression
'(("Examples" "^\\( *\\(it\\|describe\\|context\\) +.+\\)" 1))
"The imenu regex to parse an outline of the rspec file")
(defun rspec-set-imenu-generic-expression ()
(make-local-variable 'imenu-generic-expression)
(make-local-variable 'imenu-create-index-function)
(setq imenu-create-index-function 'imenu-default-create-index-function)
(setq imenu-generic-expression rspec-imenu-generic-expression)
(message (format "imenu-generic-expression is %s" imenu-generic-expression)))
(add-hook 'rspec-mode-hook 'rspec-set-imenu-generic-expression)
;; Snippets
(if (require 'snippet nil t)
(snippet-with-abbrev-table
'rspec-mode-abbrev-table
("helper" . "require 'pathname'\nrequire Pathname(__FILE__).dirname + '../spec_helper'\n\n$.")
("desc" . "describe $${ClassName} do\n $.\nend ")
("descm" . "describe $${ClassName}, \"$${modifier}\" do\n $.\nend ")
("it" . "it \"should $${what exactly?}\" do\n $.\n end ")
("bef" . "before do\n $.\n end"))
)
(defun rspec-beginning-of-example ()
"Moves point to the beginning of the example in which the point current is."
(interactive)
(let ((start (point)))
(goto-char
(save-excursion
(end-of-line)
(unless (and (search-backward-regexp "^[[:space:]]*it[[:space:]]*(?[\"']" nil t)
(save-excursion (ruby-end-of-block) (< start (point))))
(error "Unable to find an example"))
(point)))))
(defun rspec-example-pending-p ()
"True if the example under point is pending. Otherwise false"
(interactive)
(save-excursion
(rspec-beginning-of-example)
(re-search-forward "^[[:space:]]*pending\\([[:space:](]\\|$\\)" (save-excursion (ruby-end-of-block) (point)) t)))
(defun rspec-toggle-example-pendingness ()
"Disables active examples and enables pending examples."
(interactive)
(if (rspec-example-pending-p)
(rspec-enable-example)
(rspec-disable-example)))
(defun rspec-disable-example ()
"Disable the example in which the point is located"
(interactive)
(when (not (rspec-example-pending-p))
(save-excursion
(rspec-beginning-of-example)
(end-of-line)
(insert "\npending")
(indent-for-tab-command))))
(defun rspec-enable-example ()
"Enable the example in which the point is located"
(interactive)
(when (rspec-example-pending-p)
(save-excursion
(rspec-beginning-of-example)
(search-forward-regexp "^[[:space:]]*pending\\([[:space:](]\\|$\\)" (save-excursion (ruby-end-of-block) (point)))
(beginning-of-line)
(delete-region (save-excursion (beginning-of-line) (point))
(save-excursion (forward-line 1) (point))))))
(defun rspec-verify ()
"Runs the specified spec, or the spec file for the current buffer."
(interactive)
(rspec-run-single-file (rspec-spec-file-for (buffer-file-name)) "--format specdoc" "--reverse"))
(defun rspec-verify-single ()
"Runs the specified example at the point of the current buffer."
(interactive)
(rspec-run-single-file (rspec-spec-file-for (buffer-file-name)) "--format specdoc" "--reverse" (concat "--line " (number-to-string (line-number-at-pos)))))
(defun rspec-verify-all ()
"Runs the 'spec' rake task for the project of the current file."
(interactive)
(let ((default-directory (or (rspec-project-root) default-directory)))
(rspec-run "--format=progress")))
(defun rspec-toggle-spec-and-target ()
"Switches to the spec for the current buffer if it is a
non-spec file, or switch to the target of the current buffer
if the current is a spec"
(interactive)
(find-file
(if (rspec-buffer-is-spec-p)
(rspec-target-file-for (buffer-file-name))
(rspec-spec-file-for (buffer-file-name)))))
(defun rspec-spec-file-for (a-file-name)
"Find spec for the specified file"
(if (rspec-spec-file-p a-file-name)
a-file-name
(rspec-specize-file-name (expand-file-name (replace-regexp-in-string "^\\.\\./[^/]+/" "" (file-relative-name a-file-name (rspec-spec-directory a-file-name)))
(rspec-spec-directory a-file-name)))))
(defun rspec-target-file-for (a-spec-file-name)
"Find the target for a-spec-file-name"
(first
(file-expand-wildcards
(replace-regexp-in-string "/spec/" "/*/" (rspec-targetize-file-name a-spec-file-name)))))
(defun rspec-specize-file-name (a-file-name)
"Returns a-file-name but converted in to a spec file name"
(concat
(file-name-directory a-file-name)
(replace-regexp-in-string "\\(\\.rb\\)?$" "_spec.rb" (file-name-nondirectory a-file-name))))
(defun rspec-targetize-file-name (a-file-name)
"Returns a-file-name but converted into a non-spec file name"
(concat (file-name-directory a-file-name)
(rspec-file-name-with-default-extension
(replace-regexp-in-string "_spec\\.rb" "" (file-name-nondirectory a-file-name)))))
(defun rspec-file-name-with-default-extension (a-file-name)
"Adds .rb file extension to a-file-name if it does not already have an extension"
(if (file-name-extension a-file-name)
a-file-name ;; file has a extension already so do nothing
(concat a-file-name ".rb")))
(defun rspec-directory-subdirectories (directory)
"Returns list of subdirectories"
(remove-if
(lambda (dir) (or (string-match "^\\.\\.?$" (file-name-nondirectory dir))
(not (file-directory-p dir))))
(directory-files directory t)))
(defun rspec-parent-directory (a-directory)
"Returns the directory of which a-directory is a child"
(file-name-directory (directory-file-name a-directory)))
(defun rspec-root-directory-p (a-directory)
"Returns t if a-directory is the root"
(equal a-directory (rspec-parent-directory a-directory)))
(defun rspec-spec-directory (a-file)
"Returns the nearest spec directory that could contain specs for a-file"
(if (file-directory-p a-file)
(or
(first (directory-files a-file t "^spec$"))
(if (rspec-root-directory-p a-file)
nil
(rspec-spec-directory (rspec-parent-directory a-file))))
(rspec-spec-directory (rspec-parent-directory a-file))))
(defun rspec-spec-file-p (a-file-name)
"Returns true if the specified file is a spec"
(string-match "\\(_\\|-\\)spec\\.rb$" a-file-name))
;;;###autoload
(defun rspec-buffer-is-spec-p ()
"Returns true if the current buffer is a spec"
(and (buffer-file-name)
(rspec-spec-file-p (buffer-file-name))))
(defun rspec-example-name-at-point ()
"Returns the name of the example in which the point is currently positioned; or nil if it is outside of and example"
(save-excursion
(rspec-beginning-of-example)
(re-search-forward "it[[:space:]]+['\"]\\(.*\\)['\"][[:space:]]*\\(do\\|DO\\|Do\\|{\\)")
(match-string 1)))
(defun rspec-register-verify-redo (redoer)
"Register a bit of code that will repeat a verification process"
(let ((redoer-cmd (eval (append '(lambda () (interactive)) (list redoer)))))
(global-set-key (kbd "C-c ,r") redoer-cmd)))
(defun rspec-run (&rest opts)
"Runs spec with the specified options"
(rspec-register-verify-redo (cons 'rspec-run opts))
(compile (concat "rake spec SPEC_OPTS=\'" (mapconcat (lambda (x) x) opts " ") "\'"))
(end-of-buffer-other-window 0))
(defun rspec-run-single-file (spec-file &rest opts)
"Runs spec with the specified options"
(rspec-register-verify-redo (cons 'rspec-run-single-file (cons spec-file opts)))
(compile (concat "rake spec SPEC=\'" spec-file "\' SPEC_OPTS=\'" (mapconcat (lambda (x) x) opts " ") "\'"))
(end-of-buffer-other-window 0))
(defun rspec-project-root (&optional directory)
"Finds the root directory of the project by walking the directory tree until it finds a rake file."
(let ((directory (file-name-as-directory (or directory default-directory))))
(cond ((rspec-root-directory-p directory) nil)
((file-exists-p (concat directory "Rakefile")) directory)
(t (rspec-project-root (file-name-directory (directory-file-name directory)))))))
;; Makes sure that rSpec buffers are given the rspec minor mode by default
;;;###autoload
(eval-after-load 'ruby-mode
'(add-hook 'ruby-mode-hook
(lambda ()
(when (rspec-buffer-is-spec-p)
(rspec-mode)))))
;; Add verify related spec keybinding to ruby ruby modes
;;;###autoload
(eval-after-load 'ruby-mode
'(add-hook 'ruby-mode-hook
(lambda ()
(local-set-key (kbd "C-c ,v") 'rspec-verify)
(local-set-key (kbd "C-c ,a") 'rspec-verify-all)
(local-set-key (kbd "C-c ,t") 'rspec-toggle-spec-and-target))))
;; Add verify related spec keybinding to ruby ruby modes
;;;###autoload
(eval-after-load 'rails
'(add-hook 'rails-minor-mode-hook
(lambda ()
(local-set-key (kbd "C-c ,v") 'rspec-verify)
(local-set-key (kbd "C-c ,a") 'rspec-verify-all)
(local-set-key (kbd "C-c ,t") 'rspec-toggle-spec-and-target))))
;; This hook makes any abbreviation that are defined in
;; rspec-mode-abbrev-table available in rSpec buffers
(add-hook 'rspec-mode-hook
(lambda ()
(merge-abbrev-tables rspec-mode-abbrev-table
local-abbrev-table)))
;; abbrev
;; from http://www.opensource.apple.com/darwinsource/Current/emacs-59/emacs/lisp/derived.el
(defun merge-abbrev-tables (old new)
"Merge an old abbrev table into a new one.
This function requires internal knowledge of how abbrev tables work,
presuming that they are obarrays with the abbrev as the symbol, the expansion
as the value of the symbol, and the hook as the function definition."
(when old
(mapatoms
(lambda(it)
(or (intern-soft (symbol-name it) new)
(define-abbrev new
(symbol-name it)
(symbol-value it)
(symbol-function it)
nil
t)))
old)))
(add-to-list 'compilation-error-regexp-alist-alist
'(rspec "\\([0-9A-Za-z_./\:-]+\\.rb\\):\\([0-9]+\\)" 1 2))
(add-to-list 'compilation-error-regexp-alist 'rspec)
(provide 'rspec-mode)
;;; rspec-mode.el ends here