Sha256: 66080dddbbb9d43d4506aa529a339c4afd8b5ade263a9d2d3560508e0c207706

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

require 'spec_helper'

RSpec.describe RockRMS::Response::AttributeValue, type: :model do
  let(:parsed) { JSON.parse(FixturesHelper.read('attribute_values.json')) }

  describe '.format' do
    subject(:result) { described_class.format(parsed) }

    context 'when response is array' do
      it 'returns an array' do
        expect(described_class.format([])).to be_a(Array)
      end
    end

    it 'has the correct number keys' do
      keys = result.first.keys
      expect(keys.count).to eq(12)
    end

    it 'translates keys' do
      result.zip(parsed) do |r, p|
        expect(r[:id]).to eq(p['Id'])
        expect(r[:guid]).to eq(p['Guid'])
        expect(r[:created_by_person_alias_id]).to eq(p['CreatedByPersonAliasId'])
        expect(r[:value]).to eq(p['Value'])
        expect(r[:value_as_number]).to eq(p['ValueAsNumeric'])
        expect(r[:entity_id]).to eq(p['EntityId'])
        expect(r[:attribute]).to eq({
          attribute_values: nil,
          attributes: nil,
          created_by_person_alias_id: nil,
          created_date_time: nil,
          description: nil,
          entity_type_id: 7,
          guid: "abcd",
          id: 22,
          key: "JobPulse",
          modified_date_time: nil,
          name: "Job Pulse"
        })
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rock_rms-9.9.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.8.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.7.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.6.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.5.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.4.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.3.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.2.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.1.0 spec/rock_rms/response/attribute_value_spec.rb
rock_rms-9.0.0 spec/rock_rms/response/attribute_value_spec.rb