Skip to content

Commit

Permalink
Merge pull request #22546 from y-yagi/show_relative_path_in_test_runner
Browse files Browse the repository at this point in the history
show relative path the rerun snippet of test runner in rails engine
  • Loading branch information
senny committed Dec 10, 2015
2 parents 11fbcf8 + e4e42d0 commit 3e5a1c2
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 23 deletions.
6 changes: 5 additions & 1 deletion railties/lib/rails/test_unit/reporter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def filtered_results
end

def relative_path_for(file)
file.sub(/^#{Rails.root}\/?/, '')
file.sub(/^#{app_root}\/?/, '')
end

private
Expand All @@ -66,5 +66,9 @@ def format_rerun_snippet(result)

"#{self.executable} #{relative_path_for(assertion_path)}"
end

def app_root
@app_root ||= defined?(ENGINE_ROOT) ? ENGINE_ROOT : Rails.root
end
end
end
24 changes: 24 additions & 0 deletions railties/test/generators/plugin_test_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
require 'abstract_unit'
require 'tmpdir'

module PluginTestHelper
def create_test_file(name, pass: true)
plugin_file "test/#{name}_test.rb", <<-RUBY
require 'test_helper'
class #{name.camelize}Test < ActiveSupport::TestCase
def test_truth
puts "#{name.camelize}Test"
assert #{pass}, 'wups!'
end
end
RUBY
end

def plugin_file(path, contents, mode: 'w')
FileUtils.mkdir_p File.dirname("#{plugin_path}/#{path}")
File.open("#{plugin_path}/#{path}", mode) do |f|
f.puts contents
end
end
end
25 changes: 3 additions & 22 deletions railties/test/generators/plugin_test_runner_test.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
require 'tmpdir'
require 'abstract_unit'
require 'generators/plugin_test_helper'

class PluginTestRunnerTest < ActiveSupport::TestCase
include PluginTestHelper

def setup
@destination_root = Dir.mktmpdir('bukkits')
Dir.chdir(@destination_root) { `bundle exec rails plugin new bukkits --skip-bundle` }
Expand Down Expand Up @@ -100,24 +101,4 @@ def plugin_path
def run_test_command(arguments)
Dir.chdir(plugin_path) { `bin/test #{arguments}` }
end

def create_test_file(name, pass: true)
plugin_file "test/#{name}_test.rb", <<-RUBY
require 'test_helper'
class #{name.camelize}Test < ActiveSupport::TestCase
def test_truth
puts "#{name.camelize}Test"
assert #{pass}, 'wups!'
end
end
RUBY
end

def plugin_file(path, contents, mode: 'w')
FileUtils.mkdir_p File.dirname("#{plugin_path}/#{path}")
File.open("#{plugin_path}/#{path}", mode) do |f|
f.puts contents
end
end
end
31 changes: 31 additions & 0 deletions railties/test/generators/test_runner_in_engine_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
require 'generators/plugin_test_helper'

class TestRunnerInEngineTest < ActiveSupport::TestCase
include PluginTestHelper

def setup
@destination_root = Dir.mktmpdir('bukkits')
Dir.chdir(@destination_root) { `bundle exec rails plugin new bukkits --full --skip-bundle` }
plugin_file 'test/dummy/db/schema.rb', ''
end

def teardown
FileUtils.rm_rf(@destination_root)
end

def test_rerun_snippet_is_relative_path
create_test_file 'post', pass: false

output = run_test_command('test/post_test.rb')
assert_match %r{Running:\n\nPostTest\nF\n\nwups!\n\nbin/rails test test/post_test.rb:6}, output
end

private
def plugin_path
"#{@destination_root}/bukkits"
end

def run_test_command(arguments)
Dir.chdir(plugin_path) { `bin/rails test #{arguments}` }
end
end

0 comments on commit 3e5a1c2

Please sign in to comment.