Sha256: 8453657e9c3070c5a7360f72cb1d9409f7b13c80881a033b2f87d6a1d826c3ed

Contents?: true

Size: 1.62 KB

Versions: 10

Compression:

Stored size: 1.62 KB

Contents

require 'spec_helper'

describe Arpa::DataMappers::ActionMapper, type: :mapper, fast: true do
  let(:mapper) { Arpa::DataMappers::ActionMapper.instance }

  describe 'mapping to record instance' do
    let(:entity)          { Arpa::Entities::Action.new(name: 'index', resource_id: 1)}
    let(:record_instance) { mapper.map_to_record(entity) }

    it 'record_instance should be an instance of ActiveRecord::Base' do
      expect(record_instance).to be_a ActiveRecord::Base
    end

    it 'record_instance should fill the property :name from entity property' do
      expect(record_instance.name).to eql 'index'
    end

    it 'record_instance should fill the property :resource_id and :repository_resource_id from entity property' do
      expect(record_instance.resource_id).to be == 1
      expect(record_instance.repository_resource_id).to be == 1
    end

  end

  describe 'mapping to entity instance' do
    let(:record)          { create :repository_action, :index }
    let(:entity_instance) { mapper.map_to_entity(record) }

    it 'entity_instance should fill the property :name from record property' do
      expect(entity_instance.name).to eql 'index'
    end

    it 'entity_instance should fill the property :id from record property' do
      expect(entity_instance.id).to be == record.id
    end

    it 'entity_instance should fill the property :resource_id from record property' do
      expect(entity_instance.resource_id).to be == record.resource_id
    end

    it 'entity_instance should fill the property :resource from record property' do
      expect(entity_instance.resource).to be_an Arpa::Entities::Resource
    end
  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
arpa-0.2.0 spec/lib/arpa/data_mappers/action_mapper_spec.rb
arpa-0.1.0 spec/lib/arpa/data_mappers/action_mapper_spec.rb
arpa-0.0.9 spec/lib/arpa/data_mappers/action_mapper_spec.rb
arpa-0.0.8 spec/lib/ar/data_mappers/action_mapper_spec.rb
arpa-0.0.7 spec/lib/ar/data_mappers/action_mapper_spec.rb
arpa-0.0.6 spec/lib/ar/data_mappers/action_mapper_spec.rb
arpa-0.0.5 spec/lib/ar/data_mappers/action_mapper_spec.rb
arpa-0.0.4 spec/lib/ar/data_mappers/action_mapper_spec.rb
arpa-0.0.3 spec/lib/ar/data_mappers/action_mapper_spec.rb
arpa-0.0.2 spec/lib/ar/data_mappers/action_mapper_spec.rb