blacklight-spotlight 3.0.0.rc4 → 3.0.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (169) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/blacklight/close.svg +1 -0
  3. data/app/assets/images/blacklight/zoom_in.svg +1 -0
  4. data/app/assets/images/blacklight/zoom_out.svg +1 -0
  5. data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +8 -1
  6. data/app/assets/javascripts/spotlight/admin/catalog_edit.js +13 -47
  7. data/app/assets/javascripts/spotlight/admin/exhibit_tag_autocomplete.js +37 -0
  8. data/app/assets/javascripts/spotlight/admin/{reindex_monitor.js → progress_monitor.js} +25 -4
  9. data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +1 -1
  10. data/app/assets/javascripts/spotlight/user/zpr_links.js.erb +29 -14
  11. data/app/assets/stylesheets/spotlight/_browse.scss +8 -0
  12. data/app/assets/stylesheets/spotlight/_catalog.scss +30 -4
  13. data/app/assets/stylesheets/spotlight/_exhibit_admin.scss +9 -0
  14. data/app/assets/stylesheets/spotlight/_modals.scss +3 -0
  15. data/app/assets/stylesheets/spotlight/_nestable.scss +8 -0
  16. data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
  17. data/app/assets/stylesheets/spotlight/_view_larger.scss +22 -0
  18. data/app/assets/stylesheets/spotlight/typeahead.css +23 -23
  19. data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +4 -2
  20. data/app/controllers/concerns/spotlight/catalog.rb +7 -1
  21. data/app/controllers/spotlight/browse_controller.rb +5 -0
  22. data/app/controllers/spotlight/bulk_actions_controller.rb +62 -0
  23. data/app/controllers/spotlight/bulk_updates_controller.rb +67 -0
  24. data/app/controllers/spotlight/catalog_controller.rb +5 -7
  25. data/app/controllers/spotlight/dashboards_controller.rb +2 -1
  26. data/app/controllers/spotlight/featured_images_controller.rb +1 -1
  27. data/app/controllers/spotlight/job_trackers_controller.rb +17 -0
  28. data/app/controllers/spotlight/tags_controller.rb +39 -5
  29. data/app/helpers/spotlight/application_helper.rb +1 -1
  30. data/app/helpers/spotlight/job_trackers_helper.rb +31 -0
  31. data/app/helpers/spotlight/pages_helper.rb +0 -7
  32. data/app/helpers/spotlight/roles_helper.rb +1 -1
  33. data/app/jobs/concerns/spotlight/gather_documents.rb +35 -0
  34. data/app/jobs/concerns/spotlight/job_tracking.rb +40 -23
  35. data/app/jobs/spotlight/add_tags_job.rb +31 -0
  36. data/app/jobs/spotlight/add_uploads_from_csv.rb +2 -4
  37. data/app/jobs/spotlight/change_visibility_job.rb +33 -0
  38. data/app/jobs/spotlight/process_bulk_updates_csv_job.rb +82 -0
  39. data/app/jobs/spotlight/reindex_exhibit_job.rb +5 -2
  40. data/app/jobs/spotlight/reindex_job.rb +35 -23
  41. data/app/jobs/spotlight/remove_tags_job.rb +31 -0
  42. data/app/jobs/spotlight/rename_sidecar_field_job.rb +1 -0
  43. data/app/jobs/spotlight/rename_tags_job.rb +33 -0
  44. data/app/models/concerns/spotlight/exhibit_analytics.rb +2 -6
  45. data/app/models/concerns/spotlight/exhibit_documents.rb +2 -2
  46. data/app/models/concerns/spotlight/resources/web.rb +1 -1
  47. data/app/models/concerns/spotlight/solr_document.rb +1 -1
  48. data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +2 -2
  49. data/app/models/concerns/spotlight/user.rb +5 -1
  50. data/app/models/sir_trevor_rails/blocks/uploaded_items_block.rb +4 -0
  51. data/app/models/spotlight/ability.rb +6 -2
  52. data/app/models/spotlight/attachment.rb +1 -1
  53. data/app/models/spotlight/{reindex_progress.rb → background_job_progress.rb} +8 -7
  54. data/app/models/spotlight/blacklight_configuration.rb +17 -6
  55. data/app/models/spotlight/bulk_update.rb +8 -0
  56. data/app/models/spotlight/exhibit.rb +2 -1
  57. data/app/models/spotlight/feature_page.rb +0 -2
  58. data/app/models/spotlight/featured_image.rb +7 -1
  59. data/app/models/spotlight/field_metadata.rb +4 -8
  60. data/app/models/spotlight/job_tracker.rb +11 -2
  61. data/app/models/spotlight/page.rb +1 -3
  62. data/app/models/spotlight/resource.rb +4 -4
  63. data/app/models/spotlight/resources/iiif_harvester.rb +2 -2
  64. data/app/models/spotlight/resources/iiif_service.rb +8 -1
  65. data/app/models/spotlight/resources/upload.rb +2 -2
  66. data/app/models/spotlight/role.rb +1 -2
  67. data/app/presenters/spotlight/iiif_manifest_presenter.rb +1 -1
  68. data/app/services/spotlight/bulk_updates_csv_template_service.rb +93 -0
  69. data/app/services/spotlight/etl/executor.rb +1 -3
  70. data/app/services/spotlight/iiif_resource_resolver.rb +1 -1
  71. data/app/uploaders/spotlight/bulk_updates_uploader.rb +7 -0
  72. data/app/uploaders/spotlight/featured_image_uploader.rb +1 -1
  73. data/app/views/catalog/_add_tags.html.erb +28 -0
  74. data/app/views/catalog/_bulk_actions.html.erb +12 -0
  75. data/app/views/catalog/_change_visibility.html.erb +35 -0
  76. data/app/views/catalog/_curator_actions.html.erb +3 -0
  77. data/app/views/catalog/_remove_tags.html.erb +37 -0
  78. data/app/views/spotlight/bulk_updates/_download.html.erb +23 -0
  79. data/app/views/spotlight/bulk_updates/_overview.html.erb +1 -0
  80. data/app/views/spotlight/bulk_updates/_progress_panel.html.erb +19 -0
  81. data/app/views/spotlight/bulk_updates/_upload.html.erb +12 -0
  82. data/app/views/spotlight/bulk_updates/edit.html.erb +37 -0
  83. data/app/views/spotlight/catalog/_admin_header.html.erb +1 -1
  84. data/app/views/spotlight/catalog/_edit_default.html.erb +2 -2
  85. data/app/views/spotlight/catalog/_reindex_progress_panel.html.erb +1 -1
  86. data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
  87. data/app/views/spotlight/custom_search_fields/_form.html.erb +1 -1
  88. data/app/views/spotlight/dashboards/_reindexing_activity.html.erb +1 -1
  89. data/app/views/spotlight/exhibits/_exhibit_card.html.erb +1 -1
  90. data/app/views/spotlight/job_trackers/show.html.erb +79 -0
  91. data/app/views/spotlight/pages/_form.html.erb +2 -2
  92. data/app/views/spotlight/resources/_form.html.erb +1 -1
  93. data/app/views/spotlight/resources/csv_upload/_form.html.erb +1 -1
  94. data/app/views/spotlight/resources/iiif/_form.html.erb +1 -1
  95. data/app/views/spotlight/resources/json_upload/_form.html.erb +2 -2
  96. data/app/views/spotlight/resources/upload/_form.html.erb +1 -1
  97. data/app/views/spotlight/shared/_curation_sidebar.html.erb +3 -0
  98. data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +3 -3
  99. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +3 -3
  100. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
  101. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
  102. data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +2 -2
  103. data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +4 -0
  104. data/app/views/spotlight/tags/_tag.html.erb +24 -0
  105. data/app/views/spotlight/tags/index.html.erb +12 -16
  106. data/app/views/spotlight/translations/show.yaml.yamlbuilder +6 -0
  107. data/config/i18n-tasks.yml +1 -0
  108. data/config/locales/spotlight.en.yml +169 -10
  109. data/config/routes.rb +28 -1
  110. data/db/migrate/20210126123041_create_events.rb +1 -1
  111. data/db/migrate/20210305070001_remove_class_from_sirtrevor_image_blocks.rb +20 -0
  112. data/db/migrate/20210305171150_create_bulk_updates.rb +9 -0
  113. data/lib/generators/spotlight/templates/config/initializers/riiif.rb +7 -5
  114. data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +1 -1
  115. data/lib/generators/spotlight/templates/solr/config/schema.xml +1 -1
  116. data/lib/migration/iiif.rb +3 -3
  117. data/lib/spotlight/engine.rb +14 -0
  118. data/lib/spotlight/version.rb +1 -1
  119. data/spec/controllers/spotlight/bulk_actions_controller_spec.rb +124 -0
  120. data/spec/controllers/spotlight/bulk_updates_controller_spec.rb +77 -0
  121. data/spec/controllers/spotlight/catalog_controller_spec.rb +12 -12
  122. data/spec/controllers/spotlight/featured_images_controller_spec.rb +3 -3
  123. data/spec/controllers/spotlight/job_trackers_controller_spec.rb +37 -0
  124. data/spec/controllers/spotlight/tags_controller_spec.rb +5 -1
  125. data/spec/examples.txt +1495 -1443
  126. data/spec/factories/bulk_updates.rb +15 -0
  127. data/spec/factories/exhibits.rb +4 -0
  128. data/spec/factories/job_trackers.rb +2 -0
  129. data/spec/factories/users.rb +27 -8
  130. data/spec/features/add_items_spec.rb +1 -1
  131. data/spec/features/bulk_actions_spec.rb +72 -0
  132. data/spec/features/catalog_spec.rb +1 -0
  133. data/spec/features/import_exhibit_spec.rb +5 -1
  134. data/spec/features/javascript/blocks/solr_documents_block_spec.rb +3 -3
  135. data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +27 -1
  136. data/spec/features/site_users_management_spec.rb +4 -4
  137. data/spec/fixtures/bulk-update-template.csv +57 -0
  138. data/spec/fixtures/updated-bulk-update-template-w-tags.csv +4 -0
  139. data/spec/fixtures/updated-bulk-update-template.csv +4 -0
  140. data/spec/helpers/spotlight/application_helper_spec.rb +0 -1
  141. data/spec/helpers/spotlight/pages_helper_spec.rb +0 -15
  142. data/spec/helpers/spotlight/roles_helper_spec.rb +1 -1
  143. data/spec/i18n_spec.rb +1 -0
  144. data/spec/jobs/spotlight/add_tags_job_spec.rb +34 -0
  145. data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +4 -1
  146. data/spec/jobs/spotlight/change_visibility_job_spec.rb +30 -0
  147. data/spec/jobs/spotlight/process_bulk_updates_csv_job_spec.rb +78 -0
  148. data/spec/jobs/spotlight/reindex_job_spec.rb +4 -1
  149. data/spec/jobs/spotlight/remove_tags_job_spec.rb +39 -0
  150. data/spec/lib/migration/iiif_spec.rb +1 -1
  151. data/spec/models/spotlight/ability_spec.rb +27 -0
  152. data/spec/models/spotlight/{reindex_progress_spec.rb → background_job_progress_spec.rb} +15 -2
  153. data/spec/models/spotlight/blacklight_configuration_spec.rb +8 -3
  154. data/spec/models/spotlight/exhibit_spec.rb +1 -1
  155. data/spec/models/spotlight/featured_image_spec.rb +1 -1
  156. data/spec/models/spotlight/resource_spec.rb +23 -0
  157. data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +10 -0
  158. data/spec/services/spotlight/bulk_updates_csv_template_service_spec.rb +26 -0
  159. data/spec/test_app_templates/Gemfile.extra +1 -0
  160. data/spec/uploaders/spotlight/featured_image_uploader_spec.rb +2 -2
  161. data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +1 -1
  162. data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +2 -0
  163. data/spec/views/spotlight/job_trackers/show.html.erb_spec.rb +65 -0
  164. data/spec/views/spotlight/tags/index.html.erb_spec.rb +5 -2
  165. metadata +80 -17
  166. data/app/assets/images/blacklight/add_circle.svg +0 -1
  167. data/app/assets/images/blacklight/custom_fullscreen.svg +0 -1
  168. data/app/assets/images/blacklight/remove_circle.svg +0 -1
  169. data/app/assets/images/blacklight/resize_small.svg +0 -1
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ describe Spotlight::ChangeVisibilityJob do
4
+ subject { described_class.new(solr_params: solr_params, exhibit: exhibit, visibility: visibility) }
5
+
6
+ let(:solr_params) { { q: 'map' } }
7
+ let(:exhibit) { FactoryBot.create(:exhibit) }
8
+ let(:visibility) { 'private' }
9
+
10
+ before do
11
+ allow(Spotlight::Engine.config).to receive_messages(bulk_actions_batch_size: 5)
12
+ end
13
+
14
+ it 'sets the items based off of the visibility' do
15
+ subject.perform_now
16
+ response = exhibit.blacklight_config.repository.search(solr_params.merge('rows' => 999_999_999))
17
+ expect(response.total).to eq 55
18
+ expect(Spotlight::JobTracker.last).to have_attributes(
19
+ status: 'completed',
20
+ total: 55,
21
+ progress: 55,
22
+ job_class: 'Spotlight::ChangeVisibilityJob'
23
+ )
24
+ response.documents.each do |document|
25
+ expect(document.private?(exhibit)).to be true
26
+ document.make_public!(exhibit)
27
+ document.reindex
28
+ end
29
+ end
30
+ end
@@ -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
@@ -8,7 +8,6 @@ describe Spotlight::ReindexJob do
8
8
  let(:user) { FactoryBot.create(:user) }
9
9
 
10
10
  before do
11
- ActiveJob::Base.queue_adapter = :test
12
11
  allow_any_instance_of(Spotlight::Resource).to receive(:reindex)
13
12
  end
14
13
 
@@ -19,6 +18,10 @@ describe Spotlight::ReindexJob do
19
18
  expect(resource).to receive(:reindex)
20
19
  subject.perform_now
21
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
22
25
  end
23
26
 
24
27
  describe 'validity' do
@@ -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 eq "http://test.host/images/#{updated_thumb.id}/info.json"
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
@@ -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
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- describe Spotlight::ReindexProgress, type: :model do
4
- subject(:progress) { described_class.new(exhibit) }
3
+ describe Spotlight::BackgroundJobProgress, type: :model do
4
+ subject(:progress) { described_class.new(exhibit, job_class: Spotlight::ReindexExhibitJob) }
5
5
 
6
6
  let(:exhibit) { FactoryBot.create(:exhibit) }
7
7
  let!(:job_tracker) do
@@ -44,6 +44,19 @@ describe Spotlight::ReindexProgress, type: :model do
44
44
  end
45
45
 
46
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
47
60
  before do
48
61
  FactoryBot.create(:job_tracker, on: job_tracker, resource: exhibit, data: { progress: 32, total: 32 }, status: 'completed')
49
62
  FactoryBot.create(:job_tracker, on: job_tracker, resource: exhibit, data: { progress: 16, total: 50 }, status: 'in_progress')
@@ -449,11 +449,16 @@ describe Spotlight::BlacklightConfiguration, type: :model do
449
449
 
450
450
  expect(subject.blacklight_config.per_page).to eq [10, 50]
451
451
  end
452
+ end
452
453
 
453
- it 'prepends the default per page' do
454
- blacklight_config.per_page = [1, 10, 50, 100]
454
+ describe '#default_per_page' do
455
+ it 'is the first per page option by default' do
456
+ expect(subject.blacklight_config.default_per_page).to eq 10
457
+ end
458
+
459
+ it "is set from the model's default_per_page" do
455
460
  subject.default_per_page = 50
456
- expect(subject.blacklight_config.per_page.first).to eq 50
461
+ expect(subject.blacklight_config.default_per_page).to eq 50
457
462
  end
458
463
  end
459
464
 
@@ -329,7 +329,7 @@ describe Spotlight::Exhibit, type: :model do
329
329
  describe '#reindex_progress' do
330
330
  it 'returns the latest log entry that is not unstarted' do
331
331
  reindex_progress = subject.reindex_progress
332
- expect(reindex_progress).to be_a Spotlight::ReindexProgress
332
+ expect(reindex_progress).to be_a Spotlight::BackgroundJobProgress
333
333
  end
334
334
  end
335
335
 
@@ -41,7 +41,7 @@ describe Spotlight::FeaturedImage do
41
41
  end
42
42
 
43
43
  it 'points at the RIIIF endpoint' do
44
- expect(subject.iiif_url).to match(%r{^/images/\d+/})
44
+ expect(subject.iiif_url).to match(%r{^/images/\d+-.+/})
45
45
  end
46
46
  end
47
47
  end
@@ -22,6 +22,12 @@ describe Spotlight::Resource, type: :model do
22
22
  subject.save_and_index
23
23
  end
24
24
 
25
+ it 'passes through reindexing options' do
26
+ expect(subject).to receive(:save).and_return(true)
27
+ expect(subject).to receive(:reindex_later).with(a: 1)
28
+ subject.save_and_index(reindex_options: { a: 1 })
29
+ end
30
+
25
31
  context 'if the save fails' do
26
32
  it 'does not reindex' do
27
33
  expect(subject).to receive(:save).and_return(false)
@@ -31,6 +37,23 @@ describe Spotlight::Resource, type: :model do
31
37
  end
32
38
  end
33
39
 
40
+ describe '#reindex_later' do
41
+ around do |block|
42
+ old = ActiveJob::Base.queue_adapter
43
+ begin
44
+ ActiveJob::Base.queue_adapter = :test
45
+
46
+ block.call
47
+ ensure
48
+ ActiveJob::Base.queue_adapter = old
49
+ end
50
+ end
51
+
52
+ it 'passes through reindexing options' do
53
+ expect { subject.reindex_later(whatever: true) }.to have_enqueued_job(Spotlight::ReindexJob).with(subject, whatever: true, 'validity_token' => nil)
54
+ end
55
+ end
56
+
34
57
  describe '#reindex' do
35
58
  before do
36
59
  # sneak some data into the pipeline
@@ -37,6 +37,16 @@ describe Spotlight::SolrDocument::AtomicUpdates, type: :model do
37
37
  subject.reindex
38
38
  end
39
39
 
40
+ it 'update parameters can be specified to modify commitWithin' do
41
+ expected = {
42
+ params: { commitWithin: 5001 },
43
+ data: [{ id: 'doc_id', a: { set: 1 }, b: { set: 2 }, timestamp: { set: nil } }].to_json,
44
+ headers: { 'Content-Type' => 'application/json' }
45
+ }
46
+ expect(blacklight_solr).to receive(:update).with(expected)
47
+ subject.reindex(update_params: { commitWithin: 5001 })
48
+ end
49
+
40
50
  it 'cowardlies refuse to index a document if the only value is an id' do
41
51
  allow(subject).to receive_messages(to_solr: { id: 'doc_id' }, timestamp: { set: nil })
42
52
  expect(blacklight_solr).not_to receive(:update)
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+
5
+ RSpec.describe Spotlight::BulkUpdatesCsvTemplateService do
6
+ subject(:service) { described_class.new(exhibit: exhibit) }
7
+
8
+ let(:exhibit) { FactoryBot.create(:exhibit) }
9
+ let!(:tag1) { FactoryBot.create(:tagging, tagger: exhibit, taggable: exhibit) }
10
+ let!(:tag2) { FactoryBot.create(:tagging, tagger: exhibit, taggable: exhibit) }
11
+
12
+ describe '#template' do
13
+ let(:view_context) { double('ViewContext', document_presenter: double('DocumentPresenter', heading: 'Document Title')) }
14
+
15
+ it 'has a row for every document (+ the header)' do
16
+ template = CSV.parse(service.template(view_context: view_context).to_a.join)
17
+ expect(template).to have_at_least(56).items
18
+ expect(template[0].join(',')).to match(/Item ID,Item Title,Visibility,Tag: tagging\d,Tag: tagging\d/)
19
+ end
20
+
21
+ it 'only has requested columns' do
22
+ template = CSV.parse(service.template(view_context: view_context, tags: false).to_a.join)
23
+ expect(template[0].join(',')).to eq 'Item ID,Item Title,Visibility'
24
+ end
25
+ end
26
+ end
@@ -1 +1,2 @@
1
1
  gem 'sprockets', '< 4' if ENV['RAILS_VERSION'] && ENV['RAILS_VERSION'] < '6'
2
+ gem 'view_component', '!= 2.26.0'
@@ -5,9 +5,9 @@ describe Spotlight::FeaturedImageUploader do
5
5
 
6
6
  let(:mounter) { FactoryBot.create(:featured_image) }
7
7
 
8
- describe '#extension_whitelist' do
8
+ describe '#extension_allowlist' do
9
9
  it 'is the configured array of approved extension to be uploaded' do
10
- expect(featured_image_uploader.extension_whitelist).to eq Spotlight::Engine.config.allowed_upload_extensions
10
+ expect(featured_image_uploader.extension_allowlist).to eq Spotlight::Engine.config.allowed_upload_extensions
11
11
  end
12
12
  end
13
13
 
@@ -25,7 +25,7 @@ describe 'spotlight/catalog/_edit_default.html.erb', type: :view do
25
25
  it 'has a edit tag form' do
26
26
  render
27
27
  expect(rendered).to have_field 'solr_document_exhibit_tag_list'
28
- expect(rendered).to have_selector '#solr_document_exhibit_tag_list[@data-autocomplete_url="autocomplete-path.json"]'
28
+ expect(rendered).to have_selector '#solr_document_exhibit_tag_list[@data-autocomplete-url="autocomplete-path.json"]'
29
29
  end
30
30
 
31
31
  it 'does not have special metadata editing fields for non-uploaded resources' do
@@ -2,9 +2,11 @@
2
2
 
3
3
  describe 'spotlight/dashboards/_reindexing_activity.html.erb', type: :view do
4
4
  let(:p) { 'spotlight/dashboards/reindexing_activity' }
5
+ let(:exhibit) { FactoryBot.build(:exhibit) }
5
6
 
6
7
  before do
7
8
  assign(:recent_reindexing, recent_reindexing)
9
+ allow(view).to receive(:current_exhibit).and_return(exhibit)
8
10
  end
9
11
 
10
12
  context 'the reindexing log is empty' do
@@ -0,0 +1,65 @@
1
+ # frozen_string_literal: true
2
+
3
+ describe 'spotlight/job_trackers/show', type: :view do
4
+ let(:exhibit) { FactoryBot.create(:exhibit) }
5
+ let(:job_tracker) { FactoryBot.create(:job_tracker, job_class: 'Spotlight::ReindexExhibitJob', on: exhibit, user: user) }
6
+ let(:user) { FactoryBot.create(:user) }
7
+
8
+ before do
9
+ assign(:exhibit, exhibit)
10
+ assign(:job_tracker, job_tracker)
11
+
12
+ allow(view).to receive_messages(current_exhibit: exhibit)
13
+ end
14
+
15
+ it 'displays the type of job' do
16
+ render
17
+ expect(rendered).to have_selector 'h2', text: 'Spotlight::ReindexExhibitJob'
18
+ end
19
+
20
+ it 'displays the job status for enqueued jobs' do
21
+ job_tracker.update(status: 'enqueued')
22
+ render
23
+ expect(rendered).to have_content '⏱'
24
+ end
25
+
26
+ it 'displays the job status for failed jobs' do
27
+ job_tracker.update(status: 'failed')
28
+ render
29
+ expect(rendered).to have_content '🟥'
30
+ expect(rendered).to have_content 'job failed'
31
+ end
32
+
33
+ it 'displays the job status for successful jobs' do
34
+ job_tracker.update(status: 'completed')
35
+ render
36
+ expect(rendered).to have_content '✅'
37
+ expect(rendered).to have_content 'job completed'
38
+ end
39
+
40
+ it 'display job started events' do
41
+ render
42
+ expect(rendered).to have_selector 'tr', text: '1 job started', normalize_ws: true
43
+ end
44
+
45
+ it 'records who started the job' do
46
+ render
47
+ expect(rendered).to have_selector 'tr', text: "2 job created by #{user.email}", normalize_ws: true
48
+ end
49
+
50
+ it 'displays logged messages' do
51
+ job_tracker.events.create(data: { message: 'this is a useful log message' })
52
+ job_tracker.events.create(data: { message: 'and so is this' })
53
+
54
+ render
55
+ expect(rendered).to have_selector 'tr', text: 'this is a useful log message'
56
+ expect(rendered).to have_selector 'tr', text: 'and so is this'
57
+ end
58
+
59
+ it 'displays job progress information' do
60
+ allow(job_tracker).to receive_messages(progress: 37, total: 51)
61
+
62
+ render
63
+ expect(rendered).to have_content 'processed 37 / 51'
64
+ end
65
+ end