Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Commit d730c02

Browse files
deivid-rodriguezJonRowe
authored andcommitted
Single error when --require'd files fail to load (#2568)
* Single error when `--require`'d files fail to load When there's an error loading files specified via the `--require` flag, typically `rails_helper.rb` or `spec_helper.rb`, it's very common that most of the spec files won't load either since they depend on the helper file being loaded. In these situations, one gets hundreds of errors printed to the screen. That can be quite intimidating and contributes to hide the real culprit, which is the load error in the helper.
1 parent 73e7870 commit d730c02

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

lib/rspec/core/reporter.rb

+8
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ def report(expected_example_count)
7777
end
7878
end
7979

80+
# @param exit_code [Integer] the exit_code to be return by the reporter
81+
#
82+
# Reports a run that exited early without having run any examples.
83+
#
84+
def exit_early(exit_code)
85+
report(0) { exit_code }
86+
end
87+
8088
# @private
8189
def start(expected_example_count, time=RSpec::Core::Time.now)
8290
@start = time

lib/rspec/core/runner.rb

+5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ def initialize(options, configuration=RSpec.configuration, world=RSpec.world)
8484
# @param out [IO] output stream
8585
def run(err, out)
8686
setup(err, out)
87+
return @configuration.reporter.exit_early(@configuration.failure_exit_code) if RSpec.world.wants_to_quit
88+
8789
run_specs(@world.ordered_example_groups).tap do
8890
persist_example_statuses
8991
end
@@ -95,7 +97,10 @@ def run(err, out)
9597
# @param out [IO] output stream
9698
def setup(err, out)
9799
configure(err, out)
100+
return if RSpec.world.wants_to_quit
101+
98102
@configuration.load_spec_files
103+
ensure
99104
@world.announce_filters
100105
end
101106

spec/integration/spec_file_load_errors_spec.rb

+29
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,35 @@
5454
EOS
5555
end
5656

57+
it 'prints a single error when it happens on --require files' do
58+
write_file_formatted "helper_with_error.rb", "raise 'boom'"
59+
60+
write_file_formatted "1_spec.rb", "
61+
RSpec.describe 'A broken spec file that will raise when loaded' do
62+
raise 'kaboom'
63+
end
64+
"
65+
66+
run_command "--require ./helper_with_error 1_spec.rb"
67+
expect(last_cmd_exit_status).to eq(failure_exit_code)
68+
output = normalize_durations(last_cmd_stdout)
69+
expect(output).to eq unindent(<<-EOS)
70+
71+
An error occurred while loading ./helper_with_error.
72+
Failure/Error: raise 'boom'
73+
74+
RuntimeError:
75+
boom
76+
# ./helper_with_error.rb:1#{spec_line_suffix}
77+
No examples found.
78+
79+
80+
Finished in n.nnnn seconds (files took n.nnnn seconds to load)
81+
0 examples, 0 failures, 1 error occurred outside of examples
82+
83+
EOS
84+
end
85+
5786
it 'nicely handles load-time errors in user spec files' do
5887
write_file_formatted "1_spec.rb", "
5988
boom

spec/rspec/core/reporter_spec.rb

+15
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,21 @@ module RSpec::Core
160160
end
161161
end
162162

163+
describe "#exit_early" do
164+
it "returns the passed exit code" do
165+
expect(reporter.exit_early(42)).to eq(42)
166+
end
167+
168+
it "sends a complete cycle of notifications" do
169+
formatter = double("formatter")
170+
%w[seed start start_dump dump_pending dump_failures dump_summary seed close].map(&:to_sym).each do |message|
171+
reporter.register_listener formatter, message
172+
expect(formatter).to receive(message).ordered
173+
end
174+
reporter.exit_early(42)
175+
end
176+
end
177+
163178
describe "#report" do
164179
it "supports one arg (count)" do
165180
reporter.report(1) {}

0 commit comments

Comments
 (0)