Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#243 fix example groups #244

Merged
merged 5 commits into from
Jan 9, 2014
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions guard-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,9 @@ Gem::Specification.new do |s|
s.add_development_dependency 'bundler', '>= 1.3.5', '< 2.0'
s.add_development_dependency 'rake', '~> 10.1'
s.add_development_dependency 'launchy', '~> 2.4'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-remote'
s.add_development_dependency 'pry-stack_explorer'
s.add_development_dependency 'pry-debugger'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These gems seems to brake bundle install on rbx & jruby, are they really needed?


end
30 changes: 27 additions & 3 deletions lib/guard/rspec/formatter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,29 @@ class RSpec
class Formatter < ::RSpec::Core::Formatters::BaseFormatter
TEMPORARY_FILE_PATH = './tmp/rspec_guard_result'

def self.extract_spec_location(metadata)
root_metadata = metadata
until spec_path?(metadata[:location])
metadata = metadata[:example_group]
if !metadata
warn "no spec file found for #{root_metadata[:location]}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could use Guard::UI.warning there.

return root_metadata[:location]
end
end
metadata[:location]
end

def self.spec_path?(path)
flags = File::FNM_PATHNAME | File::FNM_DOTMATCH
if File.const_defined?(:FNM_EXTGLOB) # ruby >= 2
flags |= File::FNM_EXTGLOB
end
File.fnmatch(::RSpec.configuration.pattern, path.sub(/:\d+\z/, ''), flags)
end

# Write summary to temporary file for runner
def dump_summary(duration, total, failures, pending)
FileUtils.mkdir_p('tmp')
File.open(TEMPORARY_FILE_PATH, 'w') do |f|
write do |f|
f.puts _message(total, failures, pending, duration)
f.puts _failed_paths.join("\n") if failures > 0
end
Expand All @@ -19,9 +38,14 @@ def dump_summary(duration, total, failures, pending)

private

def write(&block)
FileUtils.mkdir_p('tmp')
File.open(TEMPORARY_FILE_PATH, 'w', &block)
end

def _failed_paths
failed = examples.select { |e| e.execution_result[:status] == 'failed' }
failed.map { |e| e.metadata[:location] }
failed.map { |e| self.class.extract_spec_location(e.metadata) }.sort.uniq
end

def _message(example_count, failure_count, pending_count, duration)
Expand Down
44 changes: 37 additions & 7 deletions spec/lib/guard/rspec/formatter_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,67 @@
require 'guard/rspec/formatter'

describe Guard::RSpec::Formatter do
let(:formatter) { Guard::RSpec::Formatter.new(StringIO.new) }
let(:writer){
StringIO.new
}
let(:formatter) {
Guard::RSpec::Formatter.new(StringIO.new).tap{|formatter|
formatter.stub(:write) do |&block|
block.call writer
end
}
}

describe '#dump_summary' do
after { File.delete('./tmp/rspec_guard_result') }

let(:result){
writer.rewind
writer.read
}


context 'with failures' do
let(:spec_filename){
'failed_location_spec.rb'
}

let(:failed_example) { double(
execution_result: { status: 'failed' },
metadata: { location: 'failed_location' }
metadata: { location: spec_filename }
) }

it 'writes summary line and failed location in tmp dir' do
allow(formatter).to receive(:examples) { [failed_example] }
formatter.dump_summary(123, 3, 1, 0)
result = File.open('./tmp/rspec_guard_result').read
expect(result).to match /^3 examples, 1 failures in 123\.0 seconds\nfailed_location\n$/
expect(result).to match /^3 examples, 1 failures in 123\.0 seconds\n#{spec_filename}\n$/
end

it 'writes only uniq filenames out' do
allow(formatter).to receive(:examples) { [failed_example, failed_example] }
formatter.dump_summary(123, 3, 1, 0)
expect(result).to match /^3 examples, 1 failures in 123\.0 seconds\n#{spec_filename}\n$/
end

end

it "should find the spec file for shared examples" do
metadata = {:location => './spec/support/breadcrumbs.rb:75',
:example_group => {:location => './spec/requests/breadcrumbs_spec.rb:218'}
}

expect(described_class.extract_spec_location(metadata)).to eq './spec/requests/breadcrumbs_spec.rb:218'
end

context 'with only success' do
it 'notifies success' do
formatter.dump_summary(123, 3, 0, 0)
result = File.open('./tmp/rspec_guard_result').read
expect(result).to match /^3 examples, 0 failures in 123\.0 seconds\n$/
end
end

context 'with pending' do
it "notifies pending too" do
formatter.dump_summary(123, 3, 0, 1)
result = File.open('./tmp/rspec_guard_result').read
expect(result).to match /^3 examples, 0 failures \(1 pending\) in 123\.0 seconds\n$/
end
end
Expand Down