-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add auto correct multiple expectations (#74)
- Loading branch information
Showing
4 changed files
with
152 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
lib/rubocop/cop/rspec/multiple_expectations_auto_correct.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'rubocop-rspec' | ||
|
||
module RuboCop | ||
module Cop | ||
module RSpec | ||
module MultipleExpectationsAutoCorrect | ||
def self.prepended(base) | ||
base.extend(AutoCorrector) | ||
end | ||
|
||
private | ||
|
||
def flag_example(node, expectation_count:) | ||
add_offense( | ||
node.send_node, | ||
message: format( | ||
MultipleExpectations::MSG, | ||
total: expectation_count, | ||
max: max_expectations | ||
) | ||
) do |corrector| | ||
autocorrect(node, corrector) | ||
end | ||
end | ||
|
||
def autocorrect(node, corrector) | ||
if (args = node.children.first.arguments.first) | ||
corrector.insert_after(args, ', :aggregate_failures') | ||
else | ||
corrector.insert_after(node.children.first, ' :aggregate_failures') | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
|
||
RuboCop::Cop::RSpec::MultipleExpectations | ||
.prepend(RuboCop::Cop::RSpec::MultipleExpectationsAutoCorrect) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# frozen_string_literal: true | ||
|
||
# Test the cop directly | ||
RSpec.describe RuboCop::Cop::RSpec::MultipleExpectations, :config do | ||
it 'autocorrects multiple expectations with aggregate_failures' do | ||
expect_offense(<<~RUBY) | ||
describe Foo do | ||
it 'uses expect twice' do | ||
^^^^^^^^^^^^^^^^^^^^^^ Example has too many expectations [2/1]. | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
describe Foo do | ||
it 'uses expect twice', :aggregate_failures do | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_offense(<<~RUBY) | ||
describe Foo do | ||
it do | ||
^^ Example has too many expectations [2/1]. | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
describe Foo do | ||
it :aggregate_failures do | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_offense(<<~RUBY) | ||
describe Foo do | ||
it('uses expect twice') do | ||
^^^^^^^^^^^^^^^^^^^^^^^ Example has too many expectations [2/1]. | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
describe Foo do | ||
it('uses expect twice', :aggregate_failures) do | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_offense(<<~RUBY) | ||
describe Foo do | ||
it 'uses expect twice', timecop: true do | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Example has too many expectations [2/1]. | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
describe Foo do | ||
it 'uses expect twice', :aggregate_failures, timecop: true do | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_offense(<<~RUBY) | ||
describe Foo do | ||
it('uses expect twice', timecop: true) do | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Example has too many expectations [2/1]. | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
|
||
expect_correction(<<~RUBY) | ||
describe Foo do | ||
it('uses expect twice', :aggregate_failures, timecop: true) do | ||
expect(foo).to eq(bar) | ||
expect(baz).to eq(bar) | ||
end | ||
end | ||
RUBY | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters