Sha256: 15168ae1841e7677d80c097924c9481814c66be12481f4e14f22b422b0365826
Contents?: true
Size: 1.58 KB
Versions: 7
Compression:
Stored size: 1.58 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe Blacklight::Document::CacheKey do let(:attributes) { {} } let(:subject) { SolrDocument.new(attributes) } it 'SolrDocument includes the module' do expect(subject.class).to include(Blacklight::Document::CacheKey) end describe 'new record' do before do allow(subject).to receive_messages(new_record?: true) end it 'provides an acceptable cache key' do expect(subject.cache_key).to eq 'solr_documents/new' end end describe 'with version' do let(:attributes) { { id: '12345', _version_: '1497353774427013120' } } it 'provides a cache key with the id and version' do expect(subject.cache_key).to eq 'solr_documents/12345-1497353774427013120' end describe 'as array' do let(:attributes) { { id: '12345', _version_: ['1234', '4321'] } } it 'provides a cache key with the id and joined version array' do expect(subject.cache_key).to eq 'solr_documents/12345-12344321' end end end describe 'without version' do let(:attributes) { { id: '12345' } } it 'provides a cache key with just the id' do expect(subject.cache_key).to eq 'solr_documents/12345' end end describe '#cache_version_key' do let(:attributes) { { id: '12345', another_version_field: '1497353774427013120' } } before do allow(subject).to receive_messages(cache_version_key: :another_version_field) end it 'provides a cache key with the defined field' do expect(subject.cache_key).to eq 'solr_documents/12345-1497353774427013120' end end end
Version data entries
7 entries across 7 versions & 1 rubygems