Skip to content

Commit

Permalink
[Fix #389] Add IgnoredMethods configuration option for `Rails/FindE…
Browse files Browse the repository at this point in the history
…ach` cop

Closes #389
  • Loading branch information
tejasbubane committed Nov 24, 2020
1 parent 4890714 commit fbc7647
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* [#362](https://github.com/rubocop-hq/rubocop-rails/pull/362): Add new `Rails/WhereEquals` cop. ([@eugeneius][])
* [#339](https://github.com/rubocop-hq/rubocop-rails/pull/339): Add new `Rails/AttributeDefaultBlockValue` cop. ([@cilim][])
* [#344](https://github.com/rubocop-hq/rubocop-rails/pull/344): Add new `Rails/ArelStar` cop which checks for quoted literal asterisks in `arel_table` calls. ([@flanger001][])
* [#389](https://github.com/rubocop-hq/rubocop-rails/issues/389): Add `IgnoredMethods` config option for `Rails/FindEach` cop. ([@tejasbubane][])

### Bug fixes

Expand Down
7 changes: 7 additions & 0 deletions config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,15 @@ Rails/FindEach:
StyleGuide: 'https://rails.rubystyle.guide#find-each'
Enabled: true
VersionAdded: '0.30'
VersionChanged: '2.8.2'
Include:
- app/models/**/*.rb
IgnoredMethods:
# Methods that don't work well with find_each
- order
- limit
- select
- lock

Rails/HasAndBelongsToMany:
Description: 'Prefer has_many :through to has_and_belongs_to_many.'
Expand Down
12 changes: 12 additions & 0 deletions docs/modules/ROOT/pages/cops_rails.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1487,6 +1487,14 @@ User.all.each
User.all.find_each
----

==== IgnoredMethods: ['order']

[source,ruby]
----
# good
User.order(:foo).each
----

=== Configurable attributes

|===
Expand All @@ -1495,6 +1503,10 @@ User.all.find_each
| Include
| `app/models/**/*.rb`
| Array

| IgnoredMethods
| `order`, `limit`, `select`, `lock`
| Array
|===

=== References
Expand Down
12 changes: 7 additions & 5 deletions lib/rubocop/cop/rails/find_each.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ module Rails
#
# # good
# User.all.find_each
#
# @example IgnoredMethods: ['order']
# # good
# User.order(:foo).each
class FindEach < Base
extend AutoCorrector

Expand All @@ -22,12 +26,11 @@ class FindEach < Base
all eager_load includes joins left_joins left_outer_joins not preload
references unscoped where
].freeze
IGNORED_METHODS = %i[order limit select].freeze

def on_send(node)
return unless node.receiver&.send_type?
return unless SCOPE_METHODS.include?(node.receiver.method_name)
return if method_chain(node).any? { |m| ignored_by_find_each?(m) }
return if method_chain(node).any? { |m| ignored?(m) }

range = node.loc.selector
add_offense(range) do |corrector|
Expand All @@ -41,9 +44,8 @@ def method_chain(node)
node.each_node(:send).map(&:method_name)
end

def ignored_by_find_each?(relation_method)
# Active Record's #find_each ignores various extra parameters
IGNORED_METHODS.include?(relation_method)
def ignored?(relation_method)
cop_config['IgnoredMethods'].include?(relation_method)
end
end
end
Expand Down
16 changes: 12 additions & 4 deletions spec/rubocop/cop/rails/find_each_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

RSpec.describe RuboCop::Cop::Rails::FindEach do
subject(:cop) { described_class.new }
RSpec.describe RuboCop::Cop::Rails::FindEach, :config do
subject(:cop) { described_class.new(config) }

shared_examples 'register_offense' do |scope|
it "registers an offense when using #{scope}.each" do
Expand Down Expand Up @@ -67,7 +67,15 @@ class C; User.all.find_each { |u| u.x }; end
RUBY
end

it 'does not register an offense when using order(...) earlier' do
expect_no_offenses('User.order(:name).all.each { |u| u.something }')
context 'ignored methods' do
let(:cop_config) { { 'IgnoredMethods' => %w[order lock] } }

it 'does not register an offense when using order(...) earlier' do
expect_no_offenses('User.order(:name).each { |u| u.something }')
end

it 'does not register an offense when using lock earlier' do
expect_no_offenses('User.lock.each { |u| u.something }')
end
end
end

0 comments on commit fbc7647

Please sign in to comment.