Sha256: a9c364b7412d81685647fdb6ab40286c6cca30850eef8f25493e6ca3788af087

Contents?: true

Size: 1.76 KB

Versions: 1

Compression:

Stored size: 1.76 KB

Contents

# Copyright:: (c) Autotelik Media Ltd 2015
# Author ::   Tom Statter
# License::   MIT
#
require File.dirname(__FILE__) + '/../spec_helper'

module DataShift

  describe 'Context Factory' do

    include_context 'ClearThenManageProject'

    # got burnt by other tests failing if run after this, we are caching stuff in this class
    # that perissts across tests - so ContextFactory design probably a code smell
    after(:all) do
      PopulatorFactory.clear_populators
    end

    let(:model_method) { project_collection.search('value_as_string') }

    let(:method_binding) { MethodBinding.new('column_for_value_as_string', 0, model_method) }

    let(:another_populator) do
      class AnotherPopulator
      end

      AnotherPopulator
    end

    context 'configuring' do
      it 'can be configured to provide a specific Populator per operator' do
        expect {
          PopulatorFactory.set_populator(method_binding, another_populator)
        }.to change(PopulatorFactory.populators, :size).by(1)
      end
    end

    context 'providing populators' do
      before(:each) do
        PopulatorFactory.clear_populators

        PopulatorFactory.set_populator(method_binding, another_populator)
      end

      it 'should provide a default Populator when none specifically defined' do

        mb = MethodBinding.new('value_as_boolean', 0, project_collection.search('value_as_boolean'))

        populator = PopulatorFactory.get_populator(mb)

        expect(populator).to be
        expect(populator).to be_a Populator
      end

      it 'should provide a specific Populator when one defined' do
        populator = PopulatorFactory.get_populator(method_binding)

        expect(populator).to_not be_nil
        expect(populator).to be_a AnotherPopulator
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datashift-0.40.1 spec/datashift/context_factory_spec.rb