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

Add Rails/FindByOrAssignmentMemoization cop #1324

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* [#1324](https://github.com/rubocop/rubocop-rails/pull/1324): Add `Rails/FindByOrAssignmentMemoization` cop. ([@r7kamura][])
7 changes: 7 additions & 0 deletions config/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,13 @@ Rails/FindById:
Enabled: 'pending'
VersionAdded: '2.7'

Rails/FindByOrAssignmentMemoization:
Description: 'Avoid memoizing `find_by` results with `||=`.'
StyleGuide: 'https://rails.rubystyle.guide/#find-by-memoization'
Enabled: pending
Safe: false
VersionAdded: '<<next>>'

Rails/FindEach:
Description: 'Prefer all.find_each over all.each.'
StyleGuide: 'https://rails.rubystyle.guide#find-each'
Expand Down
71 changes: 71 additions & 0 deletions lib/rubocop/cop/rails/find_by_or_assignment_memoization.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# frozen_string_literal: true

module RuboCop
module Cop
module Rails
# Avoid memoizing `find_by` results with `||=`.
#
# It is common to see code that attempts to memoize `find_by` result by `||=`,
# but `find_by` may return `nil`, in which case it is not memoized as intended.
#
# @safety
# This cop is unsafe because detected `find_by` may not be activerecord's method,
# or the code may have a different purpose than memoization.
#
# @example
# # bad
# def current_user
# @current_user ||= User.find_by(id: session[:user_id])
# end
#
# # good
# def current_user
# if instance_variable_defined?(:@current_user)
# @current_user
# else
# @current_user = User.find_by(id: session[:user_id])
# end
# end
class FindByOrAssignmentMemoization < Base
extend AutoCorrector

MSG = 'Avoid memoizing `find_by` results with `||=`.'

RESTRICT_ON_SEND = %i[find_by].freeze

def_node_matcher :find_by_or_assignment_memoization, <<~PATTERN
(or_asgn
(ivasgn $_)
$(send _ :find_by ...)
)
PATTERN

def on_send(node)
assignment_node = node.parent
find_by_or_assignment_memoization(assignment_node) do |varible_name, find_by|
next if in_condition?(assignment_node)

add_offense(assignment_node) do |corrector|
corrector.replace(
assignment_node,
<<~RUBY.rstrip
if instance_variable_defined?(:#{varible_name})
#{varible_name}
else
#{varible_name} = #{find_by.source}
end
RUBY
)
end
end
end

private

def in_condition?(node)
node.each_ancestor(:if, :unless).any?
end
end
end
end
end
1 change: 1 addition & 0 deletions lib/rubocop/cop/rails_cops.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
require_relative 'rails/file_path'
require_relative 'rails/find_by'
require_relative 'rails/find_by_id'
require_relative 'rails/find_by_or_assignment_memoization'
require_relative 'rails/find_each'
require_relative 'rails/freeze_time'
require_relative 'rails/has_and_belongs_to_many'
Expand Down
68 changes: 68 additions & 0 deletions spec/rubocop/cop/rails/find_by_or_assignment_memoization_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# frozen_string_literal: true

RSpec.describe RuboCop::Cop::Rails::FindByOrAssignmentMemoization, :config do
context 'when using `find_by` with `||=`' do
it 'registers an offense' do
expect_offense(<<~RUBY)
@current_user ||= User.find_by(id: session[:user_id])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Avoid memoizing `find_by` results with `||=`.
RUBY

expect_correction(<<~RUBY)
if instance_variable_defined?(:@current_user)
@current_user
else
@current_user = User.find_by(id: session[:user_id])
end
RUBY
end
end

context 'with `find_by!`' do
it 'does not register an offense' do
expect_no_offenses(<<~RUBY)
@current_user ||= User.find_by!(id: session[:user_id])
RUBY
end
end

context 'with local variable' do
it 'does not register an offense' do
expect_no_offenses(<<~RUBY)
current_user ||= User.find_by(id: session[:user_id])
RUBY
end
end

context 'with `||`' do
it 'does not register an offense' do
expect_no_offenses(<<~RUBY)
@current_user ||= User.find_by(id: session[:user_id]) || User.anonymous
RUBY
end
end

context 'with ternary operator' do
it 'does not register an offense' do
expect_no_offenses(<<~RUBY)
@current_user ||= session[:user_id] ? User.find_by(id: session[:user_id]) : nil
RUBY
end
end

context 'with `if`' do
it 'does not register an offense' do
expect_no_offenses(<<~RUBY)
@current_user ||= User.find_by(id: session[:user_id]) if session[:user_id]
RUBY
end
end

context 'with `unless`' do
it 'does not register an offense' do
expect_no_offenses(<<~RUBY)
@current_user ||= User.find_by(id: session[:user_id]) unless session[:user_id].nil?
RUBY
end
end
end