blacklight-spotlight 3.0.0.alpha.10 → 3.0.0.rc5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
- data/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
- data/app/assets/images/blacklight/close.svg +1 -0
- data/app/assets/images/blacklight/zoom_in.svg +1 -0
- data/app/assets/images/blacklight/zoom_out.svg +1 -0
- data/app/assets/javascripts/spotlight/admin/{add_new_page_button.js → add_new_button.js} +7 -0
- data/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +4 -4
- data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
- data/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +8 -1
- data/app/assets/javascripts/spotlight/admin/catalog_edit.js +13 -47
- data/app/assets/javascripts/spotlight/admin/crop.es6 +6 -0
- data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
- data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
- data/app/assets/javascripts/spotlight/admin/index.js +0 -2
- data/app/assets/javascripts/spotlight/admin/{reindex_monitor.js → progress_monitor.js} +26 -4
- data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
- data/app/assets/javascripts/spotlight/admin/sir-trevor/block_controls.js +21 -12
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +9 -2
- data/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
- data/app/assets/javascripts/spotlight/user/index.js +1 -0
- data/app/assets/javascripts/spotlight/user/zpr_links.js.erb +29 -14
- data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
- data/app/assets/stylesheets/spotlight/_browse.scss +8 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +34 -8
- data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +211 -83
- data/app/assets/stylesheets/spotlight/_item_text_block.scss +6 -0
- data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
- data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
- data/app/assets/stylesheets/spotlight/_pages.scss +9 -4
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +5 -2
- data/app/assets/stylesheets/spotlight/_spotlight.scss +4 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +6 -0
- data/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
- data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +92 -0
- data/app/assets/stylesheets/spotlight/typeahead.css +23 -23
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +5 -4
- data/app/controllers/concerns/spotlight/catalog.rb +7 -1
- data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
- data/app/controllers/spotlight/appearances_controller.rb +0 -13
- data/app/controllers/spotlight/browse_controller.rb +12 -3
- data/app/controllers/spotlight/bulk_actions_controller.rb +62 -0
- data/app/controllers/spotlight/bulk_updates_controller.rb +67 -0
- data/app/controllers/spotlight/catalog_controller.rb +10 -9
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/dashboards_controller.rb +2 -1
- data/app/controllers/spotlight/exhibits_controller.rb +1 -1
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/groups_controller.rb +80 -0
- data/app/controllers/spotlight/job_trackers_controller.rb +17 -0
- data/app/controllers/spotlight/pages_controller.rb +5 -8
- data/app/controllers/spotlight/resources/csv_upload_controller.rb +1 -1
- data/app/controllers/spotlight/searches_controller.rb +4 -17
- data/app/controllers/spotlight/tags_controller.rb +39 -5
- data/app/helpers/spotlight/application_helper.rb +21 -2
- data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
- data/app/helpers/spotlight/job_trackers_helper.rb +31 -0
- data/app/helpers/spotlight/main_app_helpers.rb +1 -1
- data/app/helpers/spotlight/pages_helper.rb +1 -8
- data/app/helpers/spotlight/roles_helper.rb +1 -1
- data/app/jobs/concerns/spotlight/gather_documents.rb +35 -0
- data/app/jobs/concerns/spotlight/job_tracking.rb +64 -0
- data/app/jobs/concerns/spotlight/limit_concurrency.rb +33 -0
- data/app/jobs/spotlight/add_tags_job.rb +31 -0
- data/app/jobs/spotlight/add_uploads_from_csv.rb +32 -6
- data/app/jobs/spotlight/application_job.rb +8 -0
- data/app/jobs/spotlight/change_visibility_job.rb +33 -0
- data/app/jobs/spotlight/cleanup_job_trackers_job.rb +13 -0
- data/app/jobs/spotlight/default_thumbnail_job.rb +1 -3
- data/app/jobs/spotlight/process_bulk_updates_csv_job.rb +82 -0
- data/app/jobs/spotlight/reindex_exhibit_job.rb +39 -0
- data/app/jobs/spotlight/reindex_job.rb +64 -44
- data/app/jobs/spotlight/remove_tags_job.rb +31 -0
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -2
- data/app/jobs/spotlight/rename_tags_job.rb +33 -0
- data/app/jobs/spotlight/update_job_trackers_job.rb +20 -0
- data/app/mailers/spotlight/indexing_complete_mailer.rb +3 -2
- data/app/models/concerns/spotlight/exhibit_analytics.rb +2 -6
- data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
- data/app/models/concerns/spotlight/exhibit_documents.rb +2 -2
- data/app/models/concerns/spotlight/resources/web.rb +1 -1
- data/app/models/concerns/spotlight/solr_document.rb +1 -1
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +2 -2
- data/app/models/concerns/spotlight/user.rb +7 -2
- data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
- data/app/models/sir_trevor_rails/blocks/uploaded_items_block.rb +4 -0
- data/app/models/spotlight/ability.rb +8 -2
- data/app/models/spotlight/about_page.rb +1 -1
- data/app/models/spotlight/attachment.rb +1 -1
- data/app/models/spotlight/background_job_progress.rb +96 -0
- data/app/models/spotlight/blacklight_configuration.rb +19 -7
- data/app/models/spotlight/bulk_update.rb +8 -0
- data/app/models/spotlight/contact.rb +1 -1
- data/app/models/spotlight/custom_field.rb +3 -3
- data/app/models/spotlight/event.rb +13 -0
- data/app/models/spotlight/exhibit.rb +15 -12
- data/app/models/spotlight/feature_page.rb +1 -3
- data/app/models/spotlight/featured_image.rb +9 -3
- data/app/models/spotlight/field_metadata.rb +4 -8
- data/app/models/spotlight/group.rb +22 -0
- data/app/models/spotlight/group_member.rb +11 -0
- data/app/models/spotlight/home_page.rb +1 -1
- data/app/models/spotlight/job_tracker.rb +114 -0
- data/app/models/spotlight/page.rb +3 -5
- data/app/models/spotlight/page_configurations.rb +6 -0
- data/app/models/spotlight/page_content.rb +2 -0
- data/app/models/spotlight/resource.rb +28 -62
- data/app/models/spotlight/resources/csv_upload.rb +2 -1
- data/app/models/spotlight/resources/iiif_harvester.rb +12 -3
- data/app/models/spotlight/resources/iiif_manifest.rb +11 -7
- data/app/models/spotlight/resources/iiif_service.rb +9 -2
- data/app/models/spotlight/resources/json_upload.rb +12 -0
- data/app/models/spotlight/resources/upload.rb +25 -2
- data/app/models/spotlight/role.rb +1 -2
- data/app/models/spotlight/search.rb +5 -0
- data/app/models/spotlight/solr_document_sidecar.rb +2 -1
- data/app/presenters/spotlight/iiif_manifest_presenter.rb +1 -1
- data/app/services/spotlight/bulk_updates_csv_template_service.rb +93 -0
- data/app/services/spotlight/etl.rb +7 -0
- data/app/services/spotlight/etl/context.rb +52 -0
- data/app/services/spotlight/etl/executor.rb +192 -0
- data/app/services/spotlight/etl/loaders.rb +12 -0
- data/app/services/spotlight/etl/pipeline.rb +81 -0
- data/app/services/spotlight/etl/solr_loader.rb +96 -0
- data/app/services/spotlight/etl/sources.rb +25 -0
- data/app/services/spotlight/etl/step.rb +82 -0
- data/app/services/spotlight/etl/transforms.rb +64 -0
- data/app/services/spotlight/exhibit_import_export_service.rb +50 -22
- data/app/services/spotlight/iiif_resource_resolver.rb +1 -1
- data/app/services/spotlight/validity_checker.rb +5 -5
- data/app/uploaders/spotlight/bulk_updates_uploader.rb +7 -0
- data/app/uploaders/spotlight/featured_image_uploader.rb +1 -1
- data/app/values/custom_field_name.rb +1 -0
- data/app/views/catalog/_add_tags.html.erb +28 -0
- data/app/views/catalog/_bulk_actions.html.erb +12 -0
- data/app/views/catalog/_change_visibility.html.erb +35 -0
- data/app/views/catalog/_curator_actions.html.erb +3 -0
- data/app/views/catalog/_remove_tags.html.erb +37 -0
- data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/browse/_search.html.erb +2 -1
- data/app/views/spotlight/browse/index.html.erb +13 -0
- data/app/views/spotlight/bulk_updates/_download.html.erb +23 -0
- data/app/views/spotlight/bulk_updates/_overview.html.erb +1 -0
- data/app/views/spotlight/bulk_updates/_progress_panel.html.erb +19 -0
- data/app/views/spotlight/bulk_updates/_upload.html.erb +12 -0
- data/app/views/spotlight/bulk_updates/edit.html.erb +37 -0
- data/app/views/spotlight/catalog/_admin_header.html.erb +1 -1
- data/app/views/spotlight/catalog/_document.html.erb +2 -4
- data/app/views/spotlight/catalog/_edit_default.html.erb +2 -2
- data/app/views/spotlight/catalog/_reindex_progress_panel.html.erb +1 -1
- data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
- data/app/views/spotlight/contacts/_form.html.erb +1 -1
- data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
- data/app/views/spotlight/custom_search_fields/_form.html.erb +1 -1
- data/app/views/spotlight/dashboards/_reindexing_activity.html.erb +6 -6
- data/app/views/spotlight/exhibits/_exhibit_card.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
- data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
- data/app/views/spotlight/indexing_complete_mailer/documents_indexed.html.erb +9 -0
- data/app/views/spotlight/job_trackers/show.html.erb +79 -0
- data/app/views/spotlight/pages/_form.html.erb +3 -3
- data/app/views/spotlight/resources/_form.html.erb +1 -1
- data/app/views/spotlight/resources/csv_upload/_form.html.erb +1 -1
- data/app/views/spotlight/resources/iiif/_form.html.erb +1 -1
- data/app/views/spotlight/resources/json_upload/_form.html.erb +2 -2
- data/app/views/spotlight/resources/upload/_form.html.erb +1 -1
- data/app/views/spotlight/searches/_form.html.erb +12 -0
- data/app/views/spotlight/searches/_group.html.erb +27 -0
- data/app/views/spotlight/searches/index.html.erb +58 -17
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -0
- data/app/views/spotlight/shared/_honeypot_field.html.erb +4 -0
- data/app/views/spotlight/shared/_locale_picker.html.erb +1 -1
- data/app/views/spotlight/shared/_report_a_problem.html.erb +7 -10
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +45 -0
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +3 -3
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +4 -0
- data/app/views/spotlight/tags/_tag.html.erb +24 -0
- data/app/views/spotlight/tags/index.html.erb +12 -16
- data/app/views/spotlight/translations/_groups.html.erb +34 -0
- data/app/views/spotlight/translations/_import.html.erb +5 -5
- data/app/views/spotlight/translations/edit.html.erb +6 -0
- data/app/views/spotlight/translations/show.yaml.yamlbuilder +6 -0
- data/config/i18n-tasks.yml +8 -0
- data/config/locales/spotlight.ar.yml +32 -18
- data/config/locales/spotlight.en.yml +296 -93
- data/config/routes.rb +38 -1
- data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
- data/db/migrate/20210122082032_create_job_trackers.rb +22 -0
- data/db/migrate/20210126123041_create_events.rb +15 -0
- data/db/migrate/20210305070001_remove_class_from_sirtrevor_image_blocks.rb +20 -0
- data/db/migrate/20210305171150_create_bulk_updates.rb +9 -0
- data/lib/generators/spotlight/install_generator.rb +23 -2
- data/lib/generators/spotlight/scaffold_resource_generator.rb +5 -13
- data/lib/generators/spotlight/templates/config/initializers/riiif.rb +7 -5
- data/lib/generators/spotlight/templates/config/initializers/sir_trevor_rails.rb +10 -0
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +3 -1
- data/lib/generators/spotlight/templates/solr/config/schema.xml +1 -1
- data/lib/migration/iiif.rb +3 -3
- data/lib/spotlight/engine.rb +29 -4
- data/lib/spotlight/upload_field_config.rb +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/browse_controller_spec.rb +24 -1
- data/spec/controllers/spotlight/bulk_actions_controller_spec.rb +124 -0
- data/spec/controllers/spotlight/bulk_updates_controller_spec.rb +77 -0
- data/spec/controllers/spotlight/catalog_controller_spec.rb +15 -13
- data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
- data/spec/controllers/spotlight/featured_images_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
- data/spec/controllers/spotlight/resources/csv_upload_controller_spec.rb +4 -4
- data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
- data/spec/controllers/spotlight/tags_controller_spec.rb +5 -1
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
- data/spec/examples.txt +1500 -125
- data/spec/factories/bulk_updates.rb +15 -0
- data/spec/factories/exhibits.rb +4 -0
- data/spec/factories/group.rb +17 -0
- data/spec/factories/job_trackers.rb +11 -0
- data/spec/factories/searches.rb +11 -1
- data/spec/factories/users.rb +27 -8
- data/spec/features/add_contacts_spec.rb +1 -1
- data/spec/features/add_items_spec.rb +10 -5
- data/spec/features/browse_category_admin_spec.rb +39 -7
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/bulk_actions_spec.rb +72 -0
- data/spec/features/catalog_spec.rb +3 -2
- data/spec/features/create_exhibit_spec.rb +5 -4
- data/spec/features/dashboard_spec.rb +7 -7
- data/spec/features/edit_search_fields_spec.rb +2 -2
- data/spec/features/exhibits/administration_spec.rb +3 -3
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
- data/spec/features/exhibits/language_create_edit_spec.rb +3 -3
- data/spec/features/exhibits/translation_editing_spec.rb +55 -6
- data/spec/features/home_page_spec.rb +5 -5
- data/spec/features/import_exhibit_spec.rb +5 -1
- data/spec/features/item_admin_spec.rb +4 -4
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +3 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +3 -3
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +27 -1
- data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
- data/spec/features/javascript/edit_in_place_spec.rb +3 -3
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +1 -1
- data/spec/features/report_a_problem_spec.rb +6 -5
- data/spec/features/site_users_management_spec.rb +5 -5
- data/spec/fixtures/bulk-update-template.csv +57 -0
- data/spec/fixtures/updated-bulk-update-template-w-tags.csv +4 -0
- data/spec/fixtures/updated-bulk-update-template.csv +4 -0
- data/spec/helpers/spotlight/application_helper_spec.rb +0 -1
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +10 -17
- data/spec/helpers/spotlight/roles_helper_spec.rb +1 -1
- data/spec/i18n_spec.rb +1 -0
- data/spec/jobs/spotlight/add_tags_job_spec.rb +34 -0
- data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +16 -1
- data/spec/jobs/spotlight/change_visibility_job_spec.rb +30 -0
- data/spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb +78 -0
- data/spec/jobs/spotlight/reindex_exhibit_job_spec.rb +43 -0
- data/spec/jobs/spotlight/reindex_job_spec.rb +34 -60
- data/spec/jobs/spotlight/remove_tags_job_spec.rb +39 -0
- data/spec/lib/migration/iiif_spec.rb +1 -1
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +11 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/solr_document_spec.rb +2 -3
- data/spec/models/spotlight/ability_spec.rb +27 -0
- data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -0
- data/spec/models/spotlight/background_job_progress_spec.rb +137 -0
- data/spec/models/spotlight/blacklight_configuration_spec.rb +8 -3
- data/spec/models/spotlight/exhibit_spec.rb +13 -59
- data/spec/models/spotlight/featured_image_spec.rb +1 -2
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/main_navigation_spec.rb +1 -1
- data/spec/models/spotlight/resource_spec.rb +89 -87
- data/spec/models/spotlight/resources/iiif_harvester_spec.rb +9 -10
- data/spec/models/spotlight/role_spec.rb +3 -3
- data/spec/models/spotlight/search_spec.rb +30 -3
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +10 -0
- data/spec/models/spotlight/solr_document_sidecar_spec.rb +1 -0
- data/spec/services/spotlight/bulk_updates_csv_template_service_spec.rb +26 -0
- data/spec/services/spotlight/etl/context_spec.rb +66 -0
- data/spec/services/spotlight/etl/executor_spec.rb +149 -0
- data/spec/services/spotlight/etl/pipeline_spec.rb +22 -0
- data/spec/services/spotlight/etl/solr_loader_spec.rb +76 -0
- data/spec/services/spotlight/etl/step_spec.rb +70 -0
- data/spec/services/spotlight/exhibit_import_export_service_spec.rb +62 -3
- data/spec/services/spotlight/iiif_resource_resolver_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -6
- data/spec/support/features/test_features_helpers.rb +15 -0
- data/spec/test_app_templates/Gemfile.extra +2 -3
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +30 -25
- data/spec/views/spotlight/job_trackers/show.html.erb_spec.rb +65 -0
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -3
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -2
- data/vendor/assets/javascripts/leaflet-iiif.js +46 -21
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +511 -296
- data/app/assets/images/blacklight/add_circle.svg +0 -1
- data/app/assets/images/blacklight/custom_fullscreen.svg +0 -1
- data/app/assets/images/blacklight/remove_circle.svg +0 -1
- data/app/assets/images/blacklight/resize_small.svg +0 -1
- data/app/models/concerns/spotlight/resources/open_graph.rb +0 -36
- data/app/models/spotlight/reindex_progress.rb +0 -78
- data/app/models/spotlight/reindexing_log_entry.rb +0 -42
- data/app/services/spotlight/resources/iiif_builder.rb +0 -19
- data/app/services/spotlight/solr_document_builder.rb +0 -76
- data/app/services/spotlight/upload_solr_document_builder.rb +0 -57
- data/spec/factories/reindexing_log_entries.rb +0 -54
- data/spec/models/spotlight/reindex_progress_spec.rb +0 -122
- data/spec/models/spotlight/reindexing_log_entry_spec.rb +0 -129
- data/spec/models/spotlight/resources/open_graph_spec.rb +0 -65
- data/spec/services/spotlight/solr_document_builder_spec.rb +0 -66
- data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
@@ -0,0 +1,78 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
def tag_names(exhibit, id)
|
4
|
+
exhibit.blacklight_config.repository.find(id).documents.first.sidecar(exhibit).taggings.includes(:tag).map { |tagging| tagging&.tag&.name }
|
5
|
+
end
|
6
|
+
|
7
|
+
describe Spotlight::ProcessBulkUpdatesCsvJob do
|
8
|
+
subject { described_class.new(exhibit, bulk_update) }
|
9
|
+
|
10
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
11
|
+
|
12
|
+
describe 'visibility' do
|
13
|
+
let(:bulk_update) { FactoryBot.create(:bulk_update, exhibit: exhibit) }
|
14
|
+
|
15
|
+
it 'is updated' do
|
16
|
+
allow(SolrDocument.index.connection).to receive(:update).and_call_original
|
17
|
+
expect(exhibit.blacklight_config.repository.find('dq287tq6352').documents.first).not_to be_private(exhibit)
|
18
|
+
|
19
|
+
subject.perform_now
|
20
|
+
|
21
|
+
expect(exhibit.blacklight_config.repository.find('dq287tq6352').documents.first).to be_private(exhibit)
|
22
|
+
expect(SolrDocument.index.connection).to have_received(:update)
|
23
|
+
end
|
24
|
+
|
25
|
+
context 'with a row that does not change visibility' do
|
26
|
+
before do
|
27
|
+
sidecar = exhibit.solr_document_sidecars.find_or_create_by(document_type: 'SolrDocument', document_id: 'dq287tq6352')
|
28
|
+
sidecar.private!
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'does not update solr' do
|
32
|
+
allow(SolrDocument.index.connection).to receive(:update)
|
33
|
+
|
34
|
+
subject.perform_now
|
35
|
+
|
36
|
+
expect(SolrDocument.index.connection).not_to have_received(:update)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'tags' do
|
42
|
+
let(:bulk_update) { FactoryBot.create(:tagged_bulk_update, exhibit: exhibit) }
|
43
|
+
|
44
|
+
before do
|
45
|
+
document = exhibit.blacklight_config.repository.find('cz507zk0531').documents.first
|
46
|
+
exhibit.tag(document.sidecar(exhibit), with: 'CSV Tag1', on: :tags)
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'are added/removed' do
|
50
|
+
allow(SolrDocument.index.connection).to receive(:update).and_call_original
|
51
|
+
expect(tag_names(exhibit, 'bm387cy2596')).to be_empty
|
52
|
+
expect(tag_names(exhibit, 'cz507zk0531')).to eq(['CSV Tag1'])
|
53
|
+
expect(tag_names(exhibit, 'dq287tq6352')).to be_empty
|
54
|
+
subject.perform_now
|
55
|
+
expect(tag_names(exhibit, 'bm387cy2596')).to eq(['CSV Tag1', 'CSV Tag2'])
|
56
|
+
expect(tag_names(exhibit, 'cz507zk0531')).to eq(['CSV Tag2'])
|
57
|
+
expect(tag_names(exhibit, 'dq287tq6352')).to eq(['CSV Tag1', 'CSV Tag2'])
|
58
|
+
|
59
|
+
# 3 updates plus the final commit
|
60
|
+
expect(SolrDocument.index.connection).to have_received(:update).exactly(4).times
|
61
|
+
end
|
62
|
+
|
63
|
+
context 'with a row that does not change visibility' do
|
64
|
+
before do
|
65
|
+
# set up the documents to match what's the in the spreadsheet already
|
66
|
+
subject.perform_now
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'does not update solr' do
|
70
|
+
allow(SolrDocument.index.connection).to receive(:update)
|
71
|
+
|
72
|
+
subject.perform_now
|
73
|
+
|
74
|
+
expect(SolrDocument.index.connection).not_to have_received(:update)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe Spotlight::ReindexExhibitJob do
|
4
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
5
|
+
|
6
|
+
before do
|
7
|
+
FactoryBot.create_list(:resource, 10, exhibit: exhibit)
|
8
|
+
allow(Spotlight::ReindexJob).to receive(:perform_now)
|
9
|
+
allow(Spotlight::ReindexJob).to receive(:perform_later)
|
10
|
+
end
|
11
|
+
|
12
|
+
context 'with a single batch' do
|
13
|
+
it 'runs the index job inline' do
|
14
|
+
described_class.perform_now(exhibit, batch_count: 1)
|
15
|
+
|
16
|
+
expect(Spotlight::ReindexJob).to have_received(:perform_now).once.with(exhibit, anything)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context 'with a fixed batch count' do
|
21
|
+
it 'enqueues that number of batches' do
|
22
|
+
described_class.perform_now(exhibit, batch_count: 2)
|
23
|
+
|
24
|
+
expect(Spotlight::ReindexJob).to have_received(:perform_later).twice.with(exhibit, hash_including(:start, :finish))
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
context 'with a dynamically generated batch count' do
|
29
|
+
it 'enqueues the right number of batches' do
|
30
|
+
described_class.perform_now(exhibit, batch_count: nil, batch_size: 2)
|
31
|
+
|
32
|
+
expect(Spotlight::ReindexJob).to have_received(:perform_later).exactly(5).times.with(exhibit, hash_including(:start, :finish))
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
context 'with a dynamically generated batch size' do
|
37
|
+
it 'figues out that number of batches' do
|
38
|
+
described_class.perform_now(exhibit, batch_count: nil, batch_size: nil)
|
39
|
+
|
40
|
+
expect(Spotlight::ReindexJob).to have_received(:perform_later).exactly(3).times.with(exhibit, hash_including(:start, :finish))
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
@@ -4,67 +4,13 @@ describe Spotlight::ReindexJob do
|
|
4
4
|
include ActiveJob::TestHelper
|
5
5
|
|
6
6
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
7
|
-
let(:resource) { FactoryBot.create(:resource) }
|
7
|
+
let(:resource) { FactoryBot.create(:resource, exhibit: exhibit) }
|
8
8
|
let(:user) { FactoryBot.create(:user) }
|
9
|
-
let(:log_entry) { Spotlight::ReindexingLogEntry.create(exhibit: exhibit, user: user) }
|
10
9
|
|
11
10
|
before do
|
12
|
-
ActiveJob::Base.queue_adapter = :test
|
13
11
|
allow_any_instance_of(Spotlight::Resource).to receive(:reindex)
|
14
12
|
end
|
15
13
|
|
16
|
-
context 'with an exhibit' do
|
17
|
-
subject { described_class.new(exhibit) }
|
18
|
-
|
19
|
-
before do
|
20
|
-
exhibit.resources << resource
|
21
|
-
exhibit.save
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'attempts to reindex every resource in the exhibit' do
|
25
|
-
# ActiveJob will reload the collection, so we go through a little trouble:
|
26
|
-
expect_any_instance_of(Spotlight::Resource).to receive(:reindex) do |thingy|
|
27
|
-
expect(exhibit.resources).to include thingy
|
28
|
-
end
|
29
|
-
|
30
|
-
subject.perform_now
|
31
|
-
end
|
32
|
-
|
33
|
-
context 'with a log_entry' do
|
34
|
-
subject { described_class.new(exhibit, log_entry) }
|
35
|
-
|
36
|
-
it 'marks the log entry as started' do
|
37
|
-
expect(log_entry).to receive(:in_progress!)
|
38
|
-
subject.perform_now
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'marks the log entry as successful if there is no error' do
|
42
|
-
expect(log_entry).to receive(:succeeded!)
|
43
|
-
subject.perform_now
|
44
|
-
end
|
45
|
-
|
46
|
-
it 'marks the log entry as failed if there is an error' do
|
47
|
-
unexpected_error = StandardError.new
|
48
|
-
# it'd be more realistic to raise on resource#reindex, but that's already stubbed above, so this'll have to do
|
49
|
-
expect(subject).to receive(:perform).with(exhibit, log_entry).and_raise unexpected_error
|
50
|
-
expect(log_entry).to receive(:failed!)
|
51
|
-
expect { subject.perform_now }.to raise_error unexpected_error
|
52
|
-
end
|
53
|
-
|
54
|
-
it 'updates the items_reindexed_estimate field on the log entry' do
|
55
|
-
expect(log_entry).to receive(:update).with(items_reindexed_estimate: 1)
|
56
|
-
subject.perform_now
|
57
|
-
end
|
58
|
-
|
59
|
-
it 'passes log_entry to the resource.reindex call' do
|
60
|
-
# ActiveJob will reload the collection, so we go through a little trouble:
|
61
|
-
expect_any_instance_of(Spotlight::Resource).to receive(:reindex).with(log_entry).exactly(:once)
|
62
|
-
# expect(resource).to receive(:reindex).with(log_entry)
|
63
|
-
subject.perform_now
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
14
|
context 'with a resource' do
|
69
15
|
subject { described_class.new(resource) }
|
70
16
|
|
@@ -72,34 +18,62 @@ describe Spotlight::ReindexJob do
|
|
72
18
|
expect(resource).to receive(:reindex)
|
73
19
|
subject.perform_now
|
74
20
|
end
|
21
|
+
|
22
|
+
it 'adds some job tracking events' do
|
23
|
+
expect { subject.perform_now }.to change(Spotlight::Event, :count).by(1)
|
24
|
+
end
|
75
25
|
end
|
76
26
|
|
77
27
|
describe 'validity' do
|
78
|
-
subject { described_class.new(resource,
|
28
|
+
subject { described_class.new(resource, 'validity_token' => 'xyz') }
|
79
29
|
|
80
30
|
let(:mock_checker) { instance_double(Spotlight::ValidityChecker) }
|
81
31
|
|
82
32
|
before do
|
83
33
|
allow(described_class).to receive(:validity_checker).and_return(mock_checker)
|
84
|
-
allow(mock_checker).to receive(:mint).with(
|
34
|
+
allow(mock_checker).to receive(:mint).with(anything).and_return('xyz')
|
85
35
|
end
|
86
36
|
|
87
37
|
it 'mints a new validity token' do
|
88
|
-
expect { described_class.perform_later(resource) }.to have_enqueued_job(described_class).with(resource,
|
38
|
+
expect { described_class.perform_later(resource) }.to have_enqueued_job(described_class).with(resource, 'validity_token' => 'xyz')
|
89
39
|
end
|
90
40
|
|
91
41
|
it 'does nothing if the token is no longer valid' do
|
92
|
-
allow(mock_checker).to receive(:check).with(
|
42
|
+
allow(mock_checker).to receive(:check).with(subject, validity_token: 'xyz').and_return(false)
|
93
43
|
expect(resource).not_to receive(:reindex)
|
94
44
|
|
95
45
|
subject.perform_now
|
96
46
|
end
|
97
47
|
|
98
48
|
it 'indexes the resource if the token is valid' do
|
99
|
-
allow(mock_checker).to receive(:check).with(
|
49
|
+
allow(mock_checker).to receive(:check).with(subject, validity_token: 'xyz').and_return(true)
|
100
50
|
expect(resource).to receive(:reindex)
|
101
51
|
|
102
52
|
subject.perform_now
|
103
53
|
end
|
104
54
|
end
|
55
|
+
|
56
|
+
context 'with start and finish' do
|
57
|
+
it 'indexes the resources within that page' do
|
58
|
+
count = 0
|
59
|
+
allow_any_instance_of(Spotlight::Resource).to receive(:reindex) do
|
60
|
+
count += 1
|
61
|
+
end
|
62
|
+
|
63
|
+
described_class.perform_now(exhibit, start: 0, finish: resource.id)
|
64
|
+
|
65
|
+
expect(count).to eq 1
|
66
|
+
end
|
67
|
+
|
68
|
+
it 'does not index resources off that page' do
|
69
|
+
count = 0
|
70
|
+
allow_any_instance_of(Spotlight::Resource).to receive(:reindex) do
|
71
|
+
count += 1
|
72
|
+
end
|
73
|
+
|
74
|
+
described_class.perform_now(exhibit, start: resource.id + 1, finish: resource.id + 500)
|
75
|
+
|
76
|
+
expect(count).to eq 0
|
77
|
+
end
|
78
|
+
end
|
105
79
|
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe Spotlight::RemoveTagsJob do
|
4
|
+
subject { described_class.new(solr_params: solr_params, exhibit: exhibit, tags: tags) }
|
5
|
+
|
6
|
+
let(:solr_params) { { q: 'map' } }
|
7
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
8
|
+
let(:tags) { %w[hello world] }
|
9
|
+
|
10
|
+
before do
|
11
|
+
allow(Spotlight::Engine.config).to receive_messages(bulk_actions_batch_size: 5)
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'removes tags from SolrDocumentSidecar objects' do
|
15
|
+
response = exhibit.blacklight_config.repository.search(solr_params.merge('rows' => 999_999_999))
|
16
|
+
expect(response.total).to eq 55
|
17
|
+
response.documents.each do |document|
|
18
|
+
exhibit.tag(document.sidecar(exhibit), with: %w[hello world], on: :tags)
|
19
|
+
document.reindex
|
20
|
+
end
|
21
|
+
subject.perform_now
|
22
|
+
response = exhibit.blacklight_config.repository.search(solr_params.merge('rows' => 999_999_999))
|
23
|
+
expect(response.total).to eq 55
|
24
|
+
expect(Spotlight::JobTracker.last).to have_attributes(
|
25
|
+
status: 'completed',
|
26
|
+
total: 55,
|
27
|
+
progress: 55,
|
28
|
+
job_class: 'Spotlight::RemoveTagsJob'
|
29
|
+
)
|
30
|
+
response.documents.each do |document|
|
31
|
+
expect(document.sidecar(exhibit).all_tags_list).to eq []
|
32
|
+
end
|
33
|
+
exhibit.owned_tags.destroy_all
|
34
|
+
response.documents.each do |document|
|
35
|
+
document.sidecar(exhibit).destroy
|
36
|
+
document.reindex
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -26,7 +26,7 @@ RSpec.describe Migration::IIIF do
|
|
26
26
|
context "when it's any FeaturedImage" do
|
27
27
|
it 'updates the iiif_tilesource attribute based on the given host and image resource' do
|
28
28
|
instance.run
|
29
|
-
expect(updated_thumb.iiif_tilesource).to
|
29
|
+
expect(updated_thumb.iiif_tilesource).to match %r{http://test.host/images/#{updated_thumb.id}-.*/info.json}
|
30
30
|
end
|
31
31
|
|
32
32
|
it 'returns a nil region if one was not set' do
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
describe Spotlight::IndexingCompleteMailer do
|
4
|
-
subject { described_class.documents_indexed [1, 2, 3], exhibit, user }
|
4
|
+
subject { described_class.documents_indexed [1, 2, 3], exhibit, user, indexed_count: 3 }
|
5
5
|
|
6
6
|
let(:user) { double(email: 'test@example.com') }
|
7
7
|
let(:exhibit) { double(title: 'Exhibit title') }
|
@@ -29,4 +29,14 @@ describe Spotlight::IndexingCompleteMailer do
|
|
29
29
|
it 'includes the exhibit title' do
|
30
30
|
expect(subject.body.encoded).to match exhibit.title
|
31
31
|
end
|
32
|
+
|
33
|
+
context 'with errors' do
|
34
|
+
subject { described_class.documents_indexed [], exhibit, user, indexed_count: 0, errors: { 1 => ['missing title'], 20 => ['whatever'] } }
|
35
|
+
|
36
|
+
it 'includes some errors' do
|
37
|
+
expect(subject.body.encoded).to match 'Errors'
|
38
|
+
expect(subject.body.encoded).to match 'Row 1: missing title'
|
39
|
+
expect(subject.body.encoded).to match 'Row 20: whatever'
|
40
|
+
end
|
41
|
+
end
|
32
42
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe SirTrevorRails::Blocks::BrowseGroupCategoriesBlock do
|
4
|
+
subject { described_class.new({ type: '', data: block_data }, page) }
|
5
|
+
|
6
|
+
let!(:exhibit) { FactoryBot.create(:exhibit) }
|
7
|
+
let!(:page) { FactoryBot.create(:feature_page, exhibit: exhibit) }
|
8
|
+
let!(:group1) { FactoryBot.create(:group, exhibit: exhibit, title: 'abc123', published: true) }
|
9
|
+
let!(:group2) { FactoryBot.create(:group, exhibit: exhibit, title: 'xyz321', published: true) }
|
10
|
+
|
11
|
+
let(:block_data) { {} }
|
12
|
+
|
13
|
+
describe '#groups' do
|
14
|
+
it 'is the array of items with display set to true' do
|
15
|
+
block_data[:item] = {
|
16
|
+
'0': { id: 'abc123', display: 'true', weight: '2' },
|
17
|
+
'1': { id: 'xyz321', display: 'true', weight: '1' }
|
18
|
+
}
|
19
|
+
expect(subject.groups.length).to eq 2
|
20
|
+
expect(subject.groups.first.title).to eq 'xyz321'
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
describe '#groups?' do
|
25
|
+
it 'is the array of items with display set to true' do
|
26
|
+
block_data[:item] = {}
|
27
|
+
expect(subject.be_groups).to be_falsy
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
describe '#display_item_counts?' do
|
32
|
+
it do
|
33
|
+
expect(subject).not_to be_display_item_counts
|
34
|
+
end
|
35
|
+
|
36
|
+
it do
|
37
|
+
block_data['display-item-counts'] = 'true'
|
38
|
+
expect(subject).to be_display_item_counts
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -4,14 +4,13 @@ describe SolrDocument, type: :model do
|
|
4
4
|
subject { document }
|
5
5
|
|
6
6
|
let(:document) { described_class.new(id: 'abcd123') }
|
7
|
+
let(:exhibit_alt) { FactoryBot.create(:exhibit) }
|
8
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
7
9
|
|
8
10
|
before do
|
9
11
|
allow(subject).to receive_messages(reindex: nil)
|
10
12
|
end
|
11
13
|
|
12
|
-
let(:exhibit_alt) { FactoryBot.create(:exhibit) }
|
13
|
-
let(:exhibit) { FactoryBot.create(:exhibit) }
|
14
|
-
|
15
14
|
its(:to_key) { is_expected.to eq ['abcd123'] }
|
16
15
|
its(:persisted?) { is_expected.to be_truthy }
|
17
16
|
|
@@ -80,6 +80,7 @@ describe Spotlight::Ability, type: :model do
|
|
80
80
|
it { is_expected.to be_able_to(:destroy, translation) }
|
81
81
|
|
82
82
|
it { is_expected.to be_able_to(:tag, exhibit) }
|
83
|
+
it { is_expected.to be_able_to(:bulk_update, exhibit) }
|
83
84
|
|
84
85
|
it { is_expected.to be_able_to(:edit, contact) }
|
85
86
|
it { is_expected.to be_able_to(:new, contact) }
|
@@ -88,4 +89,30 @@ describe Spotlight::Ability, type: :model do
|
|
88
89
|
it { is_expected.not_to be_able_to(:manage, language) }
|
89
90
|
it { is_expected.to be_able_to(:read, language) }
|
90
91
|
end
|
92
|
+
|
93
|
+
context 'with an unpublished exhibit' do
|
94
|
+
before do
|
95
|
+
exhibit.update(published: false)
|
96
|
+
end
|
97
|
+
|
98
|
+
context 'with a user with a viewer role' do
|
99
|
+
let(:user) { FactoryBot.create(:user, :with_exhibit_role, role: 'viewer', exhibit: exhibit) }
|
100
|
+
|
101
|
+
it { is_expected.not_to be_able_to(:create, exhibit) }
|
102
|
+
it { is_expected.to be_able_to(:read, exhibit) }
|
103
|
+
it { is_expected.to be_able_to(:read, page) }
|
104
|
+
it { is_expected.not_to be_able_to(:create, Spotlight::Page.new(exhibit: exhibit)) }
|
105
|
+
it { is_expected.to be_able_to(:read, search) }
|
106
|
+
it { is_expected.to be_able_to(:read, public_language) }
|
107
|
+
it { is_expected.not_to be_able_to(:read, language) }
|
108
|
+
it { is_expected.not_to be_able_to(:read, unpublished_search) }
|
109
|
+
it { is_expected.not_to be_able_to(:tag, exhibit) }
|
110
|
+
end
|
111
|
+
|
112
|
+
context 'with an anonymous user' do
|
113
|
+
let(:user) { FactoryBot.create(:exhibit_visitor) }
|
114
|
+
|
115
|
+
it { is_expected.not_to be_able_to(:read, exhibit) }
|
116
|
+
end
|
117
|
+
end
|
91
118
|
end
|
@@ -0,0 +1,137 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe Spotlight::BackgroundJobProgress, type: :model do
|
4
|
+
subject(:progress) { described_class.new(exhibit, job_class: Spotlight::ReindexExhibitJob) }
|
5
|
+
|
6
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
7
|
+
let!(:job_tracker) do
|
8
|
+
FactoryBot.create(
|
9
|
+
:job_tracker,
|
10
|
+
resource: exhibit,
|
11
|
+
on: exhibit,
|
12
|
+
job_class: 'Spotlight::ReindexExhibitJob',
|
13
|
+
updated_at: Time.zone.now,
|
14
|
+
**job_tracker_args
|
15
|
+
)
|
16
|
+
end
|
17
|
+
let(:job_tracker_args) { {} }
|
18
|
+
|
19
|
+
context 'with a completed job' do
|
20
|
+
let(:job_tracker_args) { { status: 'completed', data: { progress: 50, total: 50 } } }
|
21
|
+
|
22
|
+
it 'reports on reindexing progress' do
|
23
|
+
expect(progress.as_json).to include(
|
24
|
+
completed: 50,
|
25
|
+
total: 50,
|
26
|
+
finished: true,
|
27
|
+
errored: false,
|
28
|
+
recently_in_progress: true
|
29
|
+
)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
context 'with a failed job' do
|
34
|
+
let(:job_tracker_args) { { status: 'failed', data: { progress: 32, total: 50 } } }
|
35
|
+
|
36
|
+
it 'reports on reindexing progress' do
|
37
|
+
expect(progress.as_json).to include(
|
38
|
+
completed: 32,
|
39
|
+
total: 50,
|
40
|
+
finished: true,
|
41
|
+
errored: true
|
42
|
+
)
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
context 'with an in-progress job' do
|
47
|
+
let(:job_tracker_args) { { status: 'in_progress', data: { progress: 32, total: 50 } } }
|
48
|
+
|
49
|
+
it 'reports on reindexing progress' do
|
50
|
+
expect(progress.as_json).to include(
|
51
|
+
completed: 32,
|
52
|
+
total: 50,
|
53
|
+
finished: false,
|
54
|
+
errored: false
|
55
|
+
)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
context 'with an in-progress job with subtasks' do
|
60
|
+
before do
|
61
|
+
FactoryBot.create(:job_tracker, on: job_tracker, resource: exhibit, data: { progress: 32, total: 32 }, status: 'completed')
|
62
|
+
FactoryBot.create(:job_tracker, on: job_tracker, resource: exhibit, data: { progress: 16, total: 50 }, status: 'in_progress')
|
63
|
+
end
|
64
|
+
|
65
|
+
let(:job_tracker_args) { { status: 'in_progress' } }
|
66
|
+
|
67
|
+
it 'harvests total and completed data from the child jobs' do
|
68
|
+
expect(progress.as_json).to include(
|
69
|
+
completed: 48,
|
70
|
+
total: 82
|
71
|
+
)
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'is not completed until all the child jobs are finished' do
|
75
|
+
job_tracker.update(status: 'failed')
|
76
|
+
|
77
|
+
expect(progress.as_json).to include(
|
78
|
+
finished: false,
|
79
|
+
errored: true
|
80
|
+
)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
context 'with no job' do
|
85
|
+
before do
|
86
|
+
job_tracker.delete
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'reports on reindexing progress' do
|
90
|
+
expect(progress.as_json).to include(
|
91
|
+
completed: 0,
|
92
|
+
total: 0,
|
93
|
+
finished: false,
|
94
|
+
errored: false,
|
95
|
+
recently_in_progress: false
|
96
|
+
)
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
context 'with multiple job trackers' do
|
101
|
+
let(:job_tracker_args) { { status: 'in_progress' } }
|
102
|
+
|
103
|
+
before do
|
104
|
+
FactoryBot.create(
|
105
|
+
:job_tracker,
|
106
|
+
resource: exhibit,
|
107
|
+
on: exhibit,
|
108
|
+
job_class: 'Spotlight::ReindexExhibitJob',
|
109
|
+
updated_at: Time.zone.now,
|
110
|
+
status: 'completed'
|
111
|
+
)
|
112
|
+
end
|
113
|
+
|
114
|
+
it 'uses the currently in-progress tracker' do
|
115
|
+
expect(progress.as_json).to include(finished: false)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
context 'with multiple in-progress trackers' do
|
120
|
+
let(:job_tracker_args) { { status: 'in_progress' } }
|
121
|
+
|
122
|
+
before do
|
123
|
+
FactoryBot.create(
|
124
|
+
:job_tracker,
|
125
|
+
resource: exhibit,
|
126
|
+
on: exhibit,
|
127
|
+
job_class: 'Spotlight::ReindexExhibitJob',
|
128
|
+
updated_at: Time.zone.now - 5.years,
|
129
|
+
status: 'in_progress'
|
130
|
+
)
|
131
|
+
end
|
132
|
+
|
133
|
+
it 'uses the most recently updated tracker' do
|
134
|
+
expect(Time.zone.parse(progress.as_json[:updated_at]).year).to eq job_tracker.updated_at.year
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|