summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/gitlab/predicate_memoization_spec.rb
blob: 21fc45846541fb12b2e984fef1e52a8f14723ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
require 'spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../../rubocop/cop/gitlab/predicate_memoization'

describe RuboCop::Cop::Gitlab::PredicateMemoization do
  include CopHelper

  subject(:cop) { described_class.new }

  shared_examples('registering offense') do |options|
    let(:offending_lines) { options[:offending_lines] }

    it 'registers an offense when a predicate method is memoizing via ivar' do
      inspect_source(source)

      aggregate_failures do
        expect(cop.offenses.size).to eq(offending_lines.size)
        expect(cop.offenses.map(&:line)).to eq(offending_lines)
      end
    end
  end

  shared_examples('not registering offense') do
    it 'does not register offenses' do
      inspect_source(source)

      expect(cop.offenses).to be_empty
    end
  end

  context 'when source is a predicate method memoizing via ivar' do
    it_behaves_like 'registering offense', offending_lines: [3] do
      let(:source) do
        <<~RUBY
          class C
            def really?
              @really ||= true
            end
          end
        RUBY
      end
    end

    it_behaves_like 'registering offense', offending_lines: [4] do
      let(:source) do
        <<~RUBY
          class C
            def really?
              value = true
              @really ||= value
            end
          end
        RUBY
      end
    end
  end

  context 'when source is a predicate method using ivar with assignment' do
    it_behaves_like 'not registering offense' do
      let(:source) do
        <<~RUBY
          class C
            def really?
              @really = true
            end
          end
        RUBY
      end
    end
  end

  context 'when source is a predicate method using local with ||=' do
    it_behaves_like 'not registering offense' do
      let(:source) do
        <<~RUBY
          class C
            def really?
              really ||= true
            end
          end
        RUBY
      end
    end
  end

  context 'when source is a regular method memoizing via ivar' do
    it_behaves_like 'not registering offense' do
      let(:source) do
        <<~RUBY
          class C
            def really
              @really ||= true
            end
          end
        RUBY
      end
    end
  end
end