|
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +RSpec.describe RuboCop::Cop::Rails::FindByOrAssignmentMemoization, :config do |
| 4 | + context 'when using `find_by` with `||=`' do |
| 5 | + it 'registers an offense' do |
| 6 | + expect_offense(<<~RUBY) |
| 7 | + @current_user ||= User.find_by(id: session[:user_id]) |
| 8 | + ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Avoid memoization by `find_by` with `||=`. |
| 9 | + RUBY |
| 10 | + |
| 11 | + expect_correction(<<~RUBY) |
| 12 | + if instance_variable_defined?(:@current_user) |
| 13 | + @current_user |
| 14 | + else |
| 15 | + @current_user = User.find_by(id: session[:user_id]) |
| 16 | + end |
| 17 | + RUBY |
| 18 | + end |
| 19 | + end |
| 20 | + |
| 21 | + context 'with `find_by!`' do |
| 22 | + it 'does not register an offense' do |
| 23 | + expect_no_offenses(<<~RUBY) |
| 24 | + @current_user ||= User.find_by!(id: session[:user_id]) |
| 25 | + RUBY |
| 26 | + end |
| 27 | + end |
| 28 | + |
| 29 | + context 'with local variable' do |
| 30 | + it 'does not register an offense' do |
| 31 | + expect_no_offenses(<<~RUBY) |
| 32 | + current_user ||= User.find_by(id: session[:user_id]) |
| 33 | + RUBY |
| 34 | + end |
| 35 | + end |
| 36 | + |
| 37 | + context 'with `||`' do |
| 38 | + it 'does not register an offense' do |
| 39 | + expect_no_offenses(<<~RUBY) |
| 40 | + @current_user ||= User.find_by(id: session[:user_id]) || User.anonymous |
| 41 | + RUBY |
| 42 | + end |
| 43 | + end |
| 44 | + |
| 45 | + context 'with ternary operator' do |
| 46 | + it 'does not register an offense' do |
| 47 | + expect_no_offenses(<<~RUBY) |
| 48 | + @current_user ||= session[:user_id] ? User.find_by(id: session[:user_id]) : nil |
| 49 | + RUBY |
| 50 | + end |
| 51 | + end |
| 52 | + |
| 53 | + context 'with `if`' do |
| 54 | + it 'does not register an offense' do |
| 55 | + expect_no_offenses(<<~RUBY) |
| 56 | + @current_user ||= User.find_by(id: session[:user_id]) if session[:user_id] |
| 57 | + RUBY |
| 58 | + end |
| 59 | + end |
| 60 | + |
| 61 | + context 'with `unless`' do |
| 62 | + it 'does not register an offense' do |
| 63 | + expect_no_offenses(<<~RUBY) |
| 64 | + @current_user ||= User.find_by(id: session[:user_id]) unless session[:user_id].nil? |
| 65 | + RUBY |
| 66 | + end |
| 67 | + end |
| 68 | +end |
0 commit comments