Sha256: d9e6afcc5594353bb435059bc30682b6768c3f68c663e9020b482ee5415d6c26

Contents?: true

Size: 1.46 KB

Versions: 10

Compression:

Stored size: 1.46 KB

Contents

FactoryGirl.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

10 entries across 10 versions & 1 rubygems

Version Path
blacklight-spotlight-1.0.0 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-1.0.0.alpha2 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-1.0.0.alpha1 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.34.1 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.34.0 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.33.3 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.33.2 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.33.1 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.33.0 spec/factories/reindexing_log_entries.rb
blacklight-spotlight-0.32.0 spec/factories/reindexing_log_entries.rb