forked from maltize/sublime-text-2-ruby-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_ruby_test.py
More file actions
335 lines (291 loc) · 13.5 KB
/
run_ruby_test.py
File metadata and controls
335 lines (291 loc) · 13.5 KB
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
import os
import re
import thread
import subprocess
import functools
import time
import sublime
import sublime_plugin
class AsyncProcess(object):
def __init__(self, cmd, listener):
self.cmd = cmd
self.listener = listener
print "DEBUG_EXEC: " + self.cmd
self.proc = subprocess.Popen([self.cmd], shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if self.proc.stdout:
thread.start_new_thread(self.read_stdout, ())
if self.proc.stderr:
thread.start_new_thread(self.read_stderr, ())
def read_stdout(self):
while True:
data = os.read(self.proc.stdout.fileno(), 2**15)
if data != "":
sublime.set_timeout(functools.partial(self.listener.append_data, self.proc, data), 0)
else:
self.proc.stdout.close()
self.listener.is_running = False
break
def read_stderr(self):
while True:
data = os.read(self.proc.stderr.fileno(), 2**15)
if data != "":
sublime.set_timeout(functools.partial(self.listener.append_data, self.proc, data), 0)
else:
self.proc.stderr.close()
self.listener.is_running = False
break
class StatusProcess(object):
def __init__(self, msg, listener):
self.msg = msg
self.listener = listener
thread.start_new_thread(self.run_thread, ())
def run_thread(self):
progress = ""
while True:
if self.listener.is_running:
if len(progress) >= 10:
progress = ""
progress += "."
sublime.set_timeout(functools.partial(self.listener.update_status, self.msg, progress), 0)
time.sleep(1)
else:
break
def wrap_in_cd(path, command):
return 'cd ' + path.replace("\\", "/") + ' && ' + command
class TestMethodMatcher(object):
def __init__(self):
self.matchers = [TestMethodMatcher.UnitTest, TestMethodMatcher.ShouldaTest]
def find_first_match_in(self, test_file_content):
for matcher in self.matchers:
test_name = matcher.find_first_match(test_file_content)
if test_name:
return test_name
class UnitTest(object):
@staticmethod
def find_first_match(test_file_content):
match_obj = re.search('\s?([a-zA-Z_\d]+tset)\s+fed', test_file_content) # 1st search for 'def test_name'
if not match_obj:
match_obj = re.search('\s?([\"\'][a-zA-Z_\s\d]+[\"\']\s+tset)', test_file_content) # 2nd search for 'test "name"'
if not match_obj:
return None
test_name = match_obj.group(1)[::-1]
return test_name.replace("\"", "").replace(" ", "_")
class ShouldaTest(object):
@staticmethod
def find_first_match(test_file_content):
match_obj = re.search('\s?(([\"][^\"]*[\"]|[\'][^\']*[\'])\s+dluohs)', test_file_content) # search for 'should "name"'
if not match_obj:
return None
test_name = match_obj.group(1)[::-1]
return "%s%s%s" % ("/", test_name.replace("should", "").strip(), "/")
class BaseRubyTask(sublime_plugin.TextCommand):
def load_config(self):
s = sublime.load_settings("RubyTest.sublime-settings")
global RUBY_UNIT; RUBY_UNIT = s.get("ruby_unit_exec")
global CUCUMBER_UNIT; CUCUMBER_UNIT = s.get("ruby_cucumber_exec")
global RSPEC_UNIT; RSPEC_UNIT = s.get("ruby_rspec_exec")
global RUBY_UNIT_FOLDER; RUBY_UNIT_FOLDER = s.get("ruby_unit_folder")
global CUCUMBER_UNIT_FOLDER; CUCUMBER_UNIT_FOLDER = s.get("ruby_cucumber_folder")
global RSPEC_UNIT_FOLDER; RSPEC_UNIT_FOLDER = s.get("ruby_rspec_folder")
def save_test_run(self, ex, file_name):
s = sublime.load_settings("RubyTest.last-run")
s.set("last_test_run", ex)
s.set("last_test_file", file_name)
sublime.save_settings("RubyTest.last-run")
def window(self):
return self.view.window()
def show_tests_panel(self):
if not hasattr(self, 'output_view'):
self.output_view = self.window().get_output_panel("tests")
self.clear_test_view()
self.window().run_command("show_panel", {"panel": "output.tests"})
def clear_test_view(self):
self.output_view.set_read_only(False)
edit = self.output_view.begin_edit()
self.output_view.erase(edit, sublime.Region(0, self.output_view.size()))
self.output_view.end_edit(edit)
self.output_view.set_read_only(True)
def append_data(self, proc, data):
str = data.decode("utf-8")
str = str.replace('\r\n', '\n').replace('\r', '\n')
selection_was_at_end = (len(self.output_view.sel()) == 1
and self.output_view.sel()[0]
== sublime.Region(self.output_view.size()))
self.output_view.set_read_only(False)
edit = self.output_view.begin_edit()
self.output_view.insert(edit, self.output_view.size(), str)
if selection_was_at_end:
self.output_view.show(self.output_view.size())
self.output_view.end_edit(edit)
self.output_view.set_read_only(True)
def start_async(self, caption, executable):
self.is_running = True
self.proc = AsyncProcess(executable, self)
StatusProcess(caption, self)
def update_status(self, msg, progress):
sublime.status_message(msg + " " + progress)
class BaseFile(object):
def __init__(self, file_name): self.folder_name, self.file_name = os.path.split(file_name)
def verify_syntax_command(self): return None
def possible_alternate_files(self): return []
def run_all_tests_command(self): return None
def run_from_project_root(self, partition_folder, command, options = ""):
folder_name, test_folder, file_name = os.path.join(self.folder_name, self.file_name).partition(partition_folder)
return wrap_in_cd(folder_name, command + " " + test_folder + file_name + options)
def get_current_line_number(self, view):
char_under_cursor = view.sel()[0].a
return view.rowcol(char_under_cursor)[0] + 1
def features(self): return []
class AnonymousFile(BaseFile):
def __init__(self):
True
class RubyFile(BaseFile):
def verify_syntax_command(self): return wrap_in_cd(self.folder_name, "ruby -c " + self.file_name)
def possible_alternate_files(self): return [self.file_name.replace(".rb", "_spec.rb"), self.file_name.replace(".rb", "_test.rb"), self.file_name.replace(".rb", ".feature")]
def features(self): return ["verify_syntax", "switch_to_test", "rails_generate", "extract_variable"]
class UnitFile(RubyFile):
def possible_alternate_files(self): return [self.file_name.replace("_test.rb", ".rb")]
def run_all_tests_command(self): return self.run_from_project_root(RUBY_UNIT_FOLDER, RUBY_UNIT)
def run_single_test_command(self, view):
region = view.sel()[0]
line_region = view.line(region)
text_string = view.substr(sublime.Region(region.begin() - 2000, line_region.end()))
text_string = text_string.replace("\n", "\\N")
text_string = text_string[::-1]
test_name = TestMethodMatcher().find_first_match_in(text_string)
if test_name is None:
sublime.error_message("No test name!")
return
return self.run_from_project_root(RUBY_UNIT_FOLDER, RUBY_UNIT, " -n " + test_name)
def features(self): return super(BaseRubyTask.UnitFile, self).features() + ["run_test"]
class CucumberFile(BaseFile):
def possible_alternate_files(self): return [self.file_name.replace(".feature", ".rb")]
def run_all_tests_command(self): return self.run_from_project_root(CUCUMBER_UNIT_FOLDER, CUCUMBER_UNIT)
def run_single_test_command(self, view): return self.run_from_project_root(CUCUMBER_UNIT_FOLDER, CUCUMBER_UNIT, " -l " + str(self.get_current_line_number(view)))
def features(self): return ["run_test"]
class RSpecFile(RubyFile):
def possible_alternate_files(self): return [self.file_name.replace("_spec.rb", ".rb")]
def run_all_tests_command(self): return self.run_from_project_root(RSPEC_UNIT_FOLDER, RSPEC_UNIT)
def run_single_test_command(self, view): return self.run_from_project_root(RSPEC_UNIT_FOLDER, RSPEC_UNIT, " -l " + str(self.get_current_line_number(view)))
def features(self): return super(BaseRubyTask.RSpecFile, self).features() + ["run_test"]
class ErbFile(BaseFile):
def verify_syntax_command(self): return wrap_in_cd(self.folder_name, "erb -xT - " + self.file_name + " | ruby -c")
def can_verify_syntax(self): return True
def features(self): return ["verify_syntax"]
def file_type(self, file_name = None):
file_name = file_name or self.view.file_name()
if not file_name: return BaseRubyTask.AnonymousFile()
if re.search('\w+\_test.rb', file_name):
return BaseRubyTask.UnitFile(file_name)
elif re.search('\w+\_spec.rb', file_name):
return BaseRubyTask.RSpecFile(file_name)
elif re.search('\w+\.feature', file_name):
return BaseRubyTask.CucumberFile(file_name)
elif re.search('\w+\.rb', file_name):
return BaseRubyTask.RubyFile(file_name)
elif re.search('\w+\.erb', file_name):
return BaseRubyTask.ErbFile(file_name)
else:
return BaseRubyTask.BaseFile(file_name)
class RunSingleRubyTest(BaseRubyTask):
def is_enabled(self): return 'run_test' in self.file_type().features()
def run(self, args):
self.load_config()
file = self.file_type()
command = file.run_single_test_command(self.view)
if command:
self.save_test_run(command, file.file_name)
self.show_tests_panel()
self.is_running = True
self.proc = AsyncProcess(command, self)
StatusProcess("Starting tests from file " + file.file_name, self)
class RunAllRubyTest(BaseRubyTask):
def is_enabled(self): return 'run_test' in self.file_type().features()
def run(self, args):
self.load_config()
view = self.view
folder_name, file_name = os.path.split(view.file_name())
file = self.file_type(view.file_name())
command = file.run_all_tests_command()
if command:
self.show_tests_panel()
self.save_test_run(command, file_name)
self.is_running = True
self.proc = AsyncProcess(command, self)
StatusProcess("Starting tests from file " + file.file_name, self)
else:
sublime.error_message("Only *_test.rb, *_spec.rb, *.feature files supported!")
class RunLastRubyTest(BaseRubyTask):
def load_last_run(self):
s = sublime.load_settings("RubyTest.last-run")
global LAST_TEST_RUN; LAST_TEST_RUN = s.get("last_test_run")
global LAST_TEST_FILE; LAST_TEST_FILE = s.get("last_test_file")
def run(self, args):
self.load_last_run()
self.show_tests_panel()
self.is_running = True
self.proc = AsyncProcess(LAST_TEST_RUN, self)
StatusProcess("Starting tests from file " + LAST_TEST_FILE, self)
class ShowTestPanel(BaseRubyTask):
def run(self, args):
self.window().run_command("show_panel", {"panel": "output.tests"})
class VerifyRubyFile(BaseRubyTask):
def is_enabled(self): return 'verify_syntax' in self.file_type().features()
def run(self, args):
file = self.file_type()
command = file.verify_syntax_command()
if command:
self.show_tests_panel()
self.start_async("Checking syntax of : " + file.file_name, command)
else:
sublime.error_message("Only .rb or .erb files supported!")
class SwitchBetweenCodeAndTest(BaseRubyTask):
def is_enabled(self): return 'switch_to_test' in self.file_type().features()
def run(self, args, split_view):
possible_alternates = self.file_type().possible_alternate_files()
alternates = self.project_files(lambda file: file in possible_alternates)
if alternates:
if split_view:
self.window().run_command('set_layout', {
"cols": [0.0, 0.5, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
})
self.window().focus_group(1)
self.window().open_file(alternates.pop())
else:
sublime.error_message("could not find " + str(possible_alternates))
def walk(self, directory, ignored_directories = []):
ignored_directories = ['.git', 'vendor'] # Move this into config
for dir, dirnames, files in os.walk(directory):
dirnames[:] = [dirname for dirname in dirnames if dirname not in ignored_directories]
yield dir, dirnames, files
def project_files(self, file_matcher):
directories = self.window().folders()
return [os.path.join(dirname, file) for directory in directories for dirname, _, files in self.walk(directory) for file in filter(file_matcher, files)]
class RubyRunShell(BaseRubyTask):
def run(self, args, command, caption = "Running shell command"):
self.show_tests_panel()
self.start_async(caption, wrap_in_cd(self.window().folders()[0], command))
class RubyRailsGenerate(BaseRubyTask):
def is_enabled(self): return 'rails_generate' in self.file_type().features()
def run(self, args, type = "migration"):
self.window().show_input_panel("rails generate", type + " ", lambda s: self.generate(s), None, None)
def generate(self, argument):
command = "rails generate " + argument
self.view.run_command("ruby_run_shell", {"command": command, "caption": "Generating" + argument})
class RubyExtractVariable(BaseRubyTask):
def is_enabled(self): return 'extract_variable' in self.file_type().features()
def run(self, args):
for selection in self.view.sel():
self.window().show_input_panel("Variable Name: ", '', lambda name: self.generate(selection, name), None, None)
def generate(self, selection, name):
extracted = self.view.substr(selection)
line = self.view.line(selection)
white_space = re.match("\s*", self.view.substr(line)).group()
edit = self.view.begin_edit()
try:
self.view.replace(edit, selection, name)
self.view.insert(edit, line.begin(), white_space + name + " = " + extracted + "\n")
finally:
self.view.end_edit(edit)