Sha256: 807f51403b0a7285af80c6ae020bfb58213bc9097c5db317767c57f12ab4e52e

Contents?: true

Size: 1.89 KB

Versions: 8

Compression:

Stored size: 1.89 KB

Contents

require File.expand_path('../../spec_helper', __FILE__)

describe 'XCRes::AggregateAnalyzer' do

  def subject
    XCRes::AggregateAnalyzer
  end

  before do
    @analyzer = subject.new
  end

  describe '#initialize' do
    it 'should initialize #analyzers with an empty array' do
      @analyzer.analyzers.should.be.eql?([])
    end
  end

  describe '#analyze' do
    it 'should return aggregated output of all child analyzers' do
      section1 = mock()
      @analyzer.analyzers << mock(analyze: [section1])

      section2 = mock()
      @analyzer.analyzers << mock(analyze: [section2])

      @analyzer.analyze.should.be.eql?([section1, section2])
    end

    it 'should return an empty array if there are no child analyzers' do
      @analyzer.analyze.should.be.empty?
    end
  end

  describe '#add_with_class' do
    it 'should init an analyzer of given class with current attributes' do
      @analyzer = subject.new(mock('Target'))
      @analyzer.logger = mock('Logger')
      @analyzer.exclude_file_patterns = ['foo', 'bar']

      new_analyzer = @analyzer.add_with_class(XCRes::Analyzer, {})
      new_analyzer.should.be.an.instance_of?(XCRes::Analyzer)
      new_analyzer.should.be.equal?(@analyzer.analyzers.last)
      new_analyzer.target.should.be.equal?(@analyzer.target)
      new_analyzer.logger.should.be.equal?(@analyzer.logger)
      new_analyzer.exclude_file_patterns.should.be.equal?(@analyzer.exclude_file_patterns)
    end

    it 'should pass the options to the initializer' do
      result = @analyzer.add_with_class(XCRes::Analyzer, the_answer: 42)
      result.options.should.be.eql?({ the_answer: 42 })
    end

    it 'should pass the merged options to the initializer' do
      @analyzer.options = { the_question: '6x7=?' }
      result = @analyzer.add_with_class(XCRes::Analyzer,the_answer: 42)
      result.options.should.be.eql?({ the_question: '6x7=?', the_answer: 42 })
    end
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
xcres-0.6.1 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.6.0 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.5.0 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.4.4 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.4.3 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.4.2 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.4.1 spec/unit/analyzer/aggregate_analyzer_spec.rb
xcres-0.4.0 spec/unit/analyzer/aggregate_analyzer_spec.rb