Sha256: 94e27f7794cf796d6f46a57117f4da279128973662966cb65d23281fdcfaf1c7

Contents?: true

Size: 1.54 KB

Versions: 11

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

FactoryBot.define do
  factory :unstarted_reindexing_log_entry, class: 'Spotlight::ReindexingLogEntry' do
    items_reindexed_count { 15 }
    job_status { 'unstarted' }
    exhibit
    user
  end

  factory :reindexing_log_entry, class: 'Spotlight::ReindexingLogEntry' do
    items_reindexed_count { 10 }
    start_time { Time.zone.parse('2017-01-05 23:00:00') }
    end_time { Time.zone.parse('2017-01-05 23:05:00') }
    job_status { 'succeeded' }
    exhibit
    user
  end

  factory :reindexing_log_entry_no_user, class: 'Spotlight::ReindexingLogEntry' do
    items_reindexed_count { 10 }
    start_time { Time.zone.parse('2017-01-05 23:00:00') }
    end_time { Time.zone.parse('2017-01-05 23:05:00') }
    job_status { 'succeeded' }
    exhibit
  end

  factory :in_progress_reindexing_log_entry, class: 'Spotlight::ReindexingLogEntry' do
    items_reindexed_count { 100 }
    start_time { Time.zone.now - 300 }
    end_time { nil }
    job_status { 'in_progress' }
    exhibit
    user
  end

  factory :recent_reindexing_log_entry, class: 'Spotlight::ReindexingLogEntry' do
    sequence(:items_reindexed_count)
    start_time { Time.zone.now - 86_400 }
    end_time { Time.zone.now - 86_100 }
    job_status { 'succeeded' }
    exhibit
    user
  end

  factory :failed_reindexing_log_entry, class: 'Spotlight::ReindexingLogEntry' do
    items_reindexed_count { 10 }
    start_time { Time.zone.parse('2017-01-10 23:00:00') }
    end_time { Time.zone.parse('2017-01-10 23:05:00') }
    job_status { 'failed' }
    exhibit
    user
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
blacklight-spotlight-3.0.0.rc3 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.rc2 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.rc1 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.10 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.9 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.8 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.7 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.6 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.5 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.4 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-3.0.0.alpha.3 spec/factories/reindexing_log_entries.rb