Sha256: 1666e423661fc499823619f785b3ea62a664e5ff8bc516833b8f7a9941e12df3

Contents?: true

Size: 1.73 KB

Versions: 3

Compression:

Stored size: 1.73 KB

Contents

require_relative '../../spec_helper'
require_lib 'reek/ast/reference_collector'

RSpec.describe Reek::AST::ReferenceCollector do
  context 'counting refs to self' do
    def refs_to_self(src)
      syntax_tree = Reek::Source::SourceCode.from(src).syntax_tree
      described_class.new(syntax_tree).num_refs_to_self
    end

    it 'with no refs to self' do
      expect(refs_to_self('def no_envy(arga) arga.barg end')).to eq(0)
    end

    it 'counts a call to super' do
      expect(refs_to_self('def simple() super; end')).to eq(1)
    end

    it 'counts a local call' do
      expect(refs_to_self('def simple() to_s; end')).to eq(1)
    end

    it 'counts a use of self' do
      expect(refs_to_self('def simple() lv = self; end')).to eq(1)
    end

    it 'counts a call with self as receiver' do
      expect(refs_to_self('def simple() self.to_s; end')).to eq(1)
    end

    it 'counts uses of an ivar' do
      expect(refs_to_self('def no_envy() @item.to_a; @item = 4; @item end')).to eq(3)
    end

    it 'counts an ivar passed to a method' do
      expect(refs_to_self('def no_envy(arga) arga.barg(@item); arga end')).to eq(1)
    end

    it 'ignores global variables' do
      expect(refs_to_self('def no_envy(arga) $s2.to_a; $s2[arga] end')).to eq(0)
    end

    it 'ignores global variables' do
      src = <<-EOS
        def accept(t, pat = /.*/nm, &block)
          if pat
            pat.respond_to?(:match) or raise TypeError, "has no `match'"
          else
            pat = t if t.respond_to?(:match)
          end
          unless block
            block = pat.method(:convert).to_proc if pat.respond_to?(:convert)
          end
          @atype[t] = [pat, block]
        end
      EOS
      expect(refs_to_self(src)).to eq(2)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reek-3.6.0 spec/reek/ast/reference_collector_spec.rb
reek-3.5.0 spec/reek/ast/reference_collector_spec.rb
reek-3.4.1 spec/reek/ast/reference_collector_spec.rb