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,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ FactoryBot.define do
4
+ factory :bulk_update, class: 'Spotlight::BulkUpdate' do
5
+ file { Rack::Test::UploadedFile.new(File.expand_path(File.join('..', 'fixtures', 'updated-bulk-update-template.csv'), __dir__)) }
6
+
7
+ exhibit
8
+ end
9
+
10
+ factory :tagged_bulk_update, class: 'Spotlight::BulkUpdate' do
11
+ file { Rack::Test::UploadedFile.new(File.expand_path(File.join('..', 'fixtures', 'updated-bulk-update-template-w-tags.csv'), __dir__)) }
12
+
13
+ exhibit
14
+ end
15
+ end
@@ -10,4 +10,8 @@ FactoryBot.define do
10
10
  association :thumbnail, factory: :exhibit_thumbnail
11
11
  end
12
12
  end
13
+ factory :skinny_exhibit, class: 'Spotlight::Exhibit' do
14
+ sequence(:title) { |n| "Exhibit Title #{n}" }
15
+ published { true }
16
+ end
13
17
  end
@@ -3,6 +3,8 @@
3
3
  FactoryBot.define do
4
4
  factory :job_tracker, class: 'Spotlight::JobTracker' do
5
5
  user
6
+ on factory: :exhibit
7
+ resource factory: :exhibit
6
8
  created_at { Time.zone.parse('2017-01-05 23:00:00') }
7
9
  updated_at { Time.zone.parse('2017-01-05 23:05:00') }
8
10
  end
@@ -2,26 +2,45 @@
2
2
 
3
3
  FactoryBot.define do
4
4
  factory :user do
5
- transient do
6
- exhibit { FactoryBot.create(:exhibit) }
7
- end
8
5
  sequence(:email) { |n| "user#{n}@example.com" }
9
6
  password { 'insecure' }
10
-
11
7
  factory :site_admin do
12
8
  after(:create) do |user, _evaluator|
13
9
  user.roles.create role: 'admin', resource: Spotlight::Site.instance
14
10
  end
15
11
  end
16
12
 
17
- factory :exhibit_admin do
13
+ factory :named_exhibit_roles do
14
+ transient do
15
+ exhibit { FactoryBot.create(:exhibit) }
16
+ role { nil }
17
+ end
18
+
18
19
  after(:create) do |user, evaluator|
19
- user.roles.create role: 'admin', resource: evaluator.exhibit
20
+ user.roles.create role: evaluator.role, resource: evaluator.exhibit if evaluator.role
21
+ end
22
+
23
+ factory :exhibit_admin do
24
+ transient do
25
+ role { 'admin' }
26
+ end
27
+ end
28
+
29
+ factory :exhibit_curator do
30
+ transient do
31
+ role { 'curator' }
32
+ end
20
33
  end
21
34
  end
22
- factory :exhibit_curator do
35
+
36
+ trait :with_exhibit_role do
37
+ transient do
38
+ exhibit { FactoryBot.create(:exhibit) }
39
+ role { nil }
40
+ end
41
+
23
42
  after(:create) do |user, evaluator|
24
- user.roles.create role: 'curator', resource: evaluator.exhibit
43
+ user.roles.create role: evaluator.role, resource: evaluator.exhibit if evaluator.role
25
44
  end
26
45
  end
27
46
 
@@ -85,7 +85,7 @@ describe 'Uploading a non-repository item', type: :feature do
85
85
  end
86
86
 
87
87
  context 'as an site administrator' do
88
- let(:user) { FactoryBot.create(:site_admin, exhibit: exhibit) }
88
+ let(:user) { FactoryBot.create(:site_admin) }
89
89
 
90
90
  it 'displays the JSON upload form' do
91
91
  visit spotlight.new_exhibit_resource_path(exhibit)
@@ -0,0 +1,72 @@
1
+ # frozen_string_literal: true
2
+
3
+ describe 'Bulk actions', type: :feature do
4
+ let(:exhibit) { FactoryBot.create(:exhibit) }
5
+ let(:curator) { FactoryBot.create(:exhibit_curator, exhibit: exhibit) }
6
+
7
+ before do
8
+ login_as curator
9
+ d = SolrDocument.new(id: 'dq287tq6352')
10
+ exhibit.tag(d.sidecar(exhibit), with: ['foo'], on: :tags)
11
+ d.make_private! exhibit
12
+ d.reindex
13
+ Blacklight.default_index.connection.commit
14
+ end
15
+
16
+ after do
17
+ d = SolrDocument.new(id: 'dq287tq6352')
18
+ exhibit.tag(d.sidecar(exhibit), with: [], on: :tags)
19
+ exhibit.owned_tags.destroy_all
20
+ d.make_public! exhibit
21
+ d.reindex
22
+ Blacklight.default_index.connection.commit
23
+ end
24
+
25
+ it 'setting item visibility', js: true do
26
+ visit spotlight.search_exhibit_catalog_path(exhibit, { q: 'dq287tq6352' })
27
+
28
+ click_button 'Bulk actions'
29
+ click_link 'Change item visibility'
30
+ expect(page).to have_css 'h4', text: 'Change item visibility', visible: true
31
+ choose 'Private'
32
+ accept_confirm 'All items in the result set will be updated. Are you sure?' do
33
+ click_button 'Change'
34
+ end
35
+ expect(page).to have_css '.alert', text: 'Visibility of 1 item is being updated.'
36
+ expect(SolrDocument.new(id: 'dq287tq6352').private?(exhibit)).to be true
37
+ end
38
+
39
+ it 'adding tags', js: true do
40
+ visit spotlight.search_exhibit_catalog_path(exhibit, { q: 'dq287tq6352' })
41
+
42
+ click_button 'Bulk actions'
43
+ click_link 'Add tags'
44
+ expect(page).to have_css 'h4', text: 'Add tags', visible: true
45
+ within '#add-tags-modal' do
46
+ find('[data-autocomplete-fetched="true"]', visible: false)
47
+ find('.tt-input').set('good,stuff')
48
+ end
49
+ accept_confirm 'All items in the result set will be updated. Are you sure?' do
50
+ click_button 'Add'
51
+ end
52
+ expect(page).to have_css '.alert', text: 'Tags are being added for 1 item.'
53
+ expect(SolrDocument.new(id: 'dq287tq6352').sidecar(exhibit).all_tags_list).to include('foo', 'good', 'stuff')
54
+ end
55
+
56
+ it 'removing tags', js: true do
57
+ visit spotlight.search_exhibit_catalog_path(exhibit, { q: 'dq287tq6352' })
58
+
59
+ click_button 'Bulk actions'
60
+ click_link 'Remove tags'
61
+ expect(page).to have_css 'h4', text: 'Remove tags', visible: true
62
+ within '#remove-tags-modal' do
63
+ find('[data-autocomplete-fetched="true"]', visible: false)
64
+ find('.tt-input').set('foo')
65
+ end
66
+ accept_confirm 'All items in the result set will be updated. Are you sure?' do
67
+ click_button 'Remove'
68
+ end
69
+ expect(page).to have_css '.alert', text: 'Tags are being removed for 1 item.'
70
+ expect(SolrDocument.new(id: 'dq287tq6352').sidecar(exhibit).all_tags_list).to eq []
71
+ end
72
+ end
@@ -30,6 +30,7 @@ describe 'Catalog', type: :feature do
30
30
  it 'has breadcrumbs' do
31
31
  visit spotlight.search_exhibit_catalog_path(exhibit, q: 'xyz')
32
32
  expect(page).to have_breadcrumbs 'Home', 'Search results'
33
+ expect(page).to have_selector '.breadcrumb-item.active', text: 'Search results'
33
34
  end
34
35
 
35
36
  describe 'Non-spotlight #show' do
@@ -6,7 +6,11 @@ describe 'Allow exhibit admins to import and export content from an exhibit', ty
6
6
  let(:exhibit) { FactoryBot.create(:exhibit) }
7
7
  let(:user) { FactoryBot.create(:exhibit_admin, exhibit: exhibit) }
8
8
 
9
- before { login_as user }
9
+ before do
10
+ allow(Spotlight::ReindexExhibitJob).to receive(:perform_later).and_return(true) if Rails.version < '6'
11
+
12
+ login_as user
13
+ end
10
14
 
11
15
  pending 'should allow admins to export content from an exhibit' do
12
16
  pending(%(There's not really any good way to test the contents of a
@@ -142,14 +142,14 @@ describe 'Solr Document Block', feature: true, versioning: true, default_max_wai
142
142
  it 'allows you to optionally display a ZPR link with the image', js: true do
143
143
  fill_in_solr_document_block_typeahead_field with: 'gk446cj2442'
144
144
 
145
- check 'Display ZPR link'
145
+ check 'Offer "View larger" option'
146
146
  # this seems silly, but also seems to help with the flappy-ness of this spec
147
- expect(find_field('Display ZPR link', checked: true)).to be_checked
147
+ expect(find_field('Offer "View larger" option', checked: true)).to be_checked
148
148
 
149
149
  save_page
150
150
 
151
151
  within '.contents' do
152
- click_button 'Show in ZPR viewer'
152
+ click_button 'View [World map] larger'
153
153
  end
154
154
 
155
155
  within '.modal-content' do
@@ -54,7 +54,7 @@ describe 'Uploaded Items Block', feature: true, js: true, versioning: true do
54
54
  attach_file('uploaded_item_url', fixture_file2)
55
55
 
56
56
  # This line blocks until the javascript has added the file to the page:
57
- expect(find('#st-block-3_display-checkbox_2')).to be_present
57
+ expect(find('input[name="item[file_0][display]"]')).to be_present
58
58
 
59
59
  # Uncheck the first checkbox
60
60
  all('input[type="checkbox"]').first.click
@@ -65,4 +65,30 @@ describe 'Uploaded Items Block', feature: true, js: true, versioning: true do
65
65
  expect(page).to have_css('img[alt=""]', count: 1)
66
66
  end
67
67
  end
68
+
69
+ it 'may have ZPR links' do
70
+ attach_file('uploaded_item_url', fixture_file1)
71
+ attach_file('uploaded_item_url', fixture_file2)
72
+
73
+ check 'Offer "View larger" option'
74
+ # this seems silly, but also seems to help with the flappy-ness of this spec
75
+ expect(find_field('Offer "View larger" option', checked: true)).to be_checked
76
+
77
+ save_page
78
+
79
+ within('.uploaded-items-block') do
80
+ expect(page).to have_button('View larger', count: 2)
81
+ end
82
+
83
+ within first('.contents') do
84
+ data = find('button')['data-iiif-tilesource']
85
+ expect(data).to be_present
86
+ expect(JSON.parse(data).with_indifferent_access).to include type: 'image', url: end_with('800x600.png')
87
+ click_button 'View larger'
88
+ end
89
+
90
+ within '.modal-content' do
91
+ expect(page).to have_css('#osd-modal-container')
92
+ end
93
+ end
68
94
  end
@@ -42,15 +42,15 @@ describe 'Site users management', js: true do
42
42
 
43
43
  click_button 'Add role'
44
44
 
45
- expect(page).to have_css(:td, text: 'not-an-admin@example.com')
45
+ expect(page).to have_css('td', text: 'not-an-admin@example.com')
46
46
 
47
- expect(page).to have_css(:a, text: 'Remove from admin role', count: 2)
47
+ expect(page).to have_css('a', text: 'Remove from admin role', count: 2)
48
48
  within(all('table tbody tr:not([data-edit-for])').last) do
49
49
  click_link 'Remove from admin role'
50
50
  end
51
51
 
52
52
  expect(page).to have_content 'User removed from site adminstrator role'
53
- expect(page).to have_css(:a, text: 'Remove from admin role', count: 0)
53
+ expect(page).to have_css('a', text: 'Remove from admin role', count: 0)
54
54
  end
55
55
 
56
56
  it 'sends an invitation email to users who do not exist' do
@@ -69,6 +69,6 @@ describe 'Site users management', js: true do
69
69
 
70
70
  expect(page).to have_css('td', text: user.email)
71
71
  # There is just our admin user so no button
72
- expect(page).to have_css(:a, text: 'Remove from admin role', count: 0)
72
+ expect(page).to have_css('a', text: 'Remove from admin role', count: 0)
73
73
  end
74
74
  end
@@ -0,0 +1,57 @@
1
+ Item ID,Item Title,Visibility
2
+ bm387cy2596,L'AMERIQVE,true
3
+ cz507zk0531,NEW MEXICO,true
4
+ dq287tq6352,L'AMERIQUE,false
5
+ ds525vw8509,"Mappa mondo and Figura prima del capitolo IV., ossia della divisione della terra",true
6
+ dx157dh4345,KAART der REYZE van drie Schepen naar het ZUYDLAND in de Jaaren 1721 en 1722,true
7
+ dy396mt9665,a Map of the Middle Part of AMERICA,true
8
+ fh912bx9878,[Americas],true
9
+ gk446cj2442,[World map],true
10
+ gt736xf9712,HEMISPHERE OCCIDENTAL DU GLOBE TERRESTRE contenant L'AMERIQUE SEPTENT.LE et L'AMERIQUE M.LE et P.tie des TERRES ARCTIQUES et ANTARCTIQUES Subdivisées en leurs Regions.,true
11
+ gv664gb7394,SITVS TERRÆ CIRCVLIS COELESTIBVS CIRCVNDATÆ.,true
12
+ gw298sq0504,"PLANISPHÆRIVM BRAHEVM, Sive Structura MVNDI TOTIVS, EX HYPOTHESI TYCHONIS BRAHEI IN PLANO DELINEATA. [Amstelodami : Apud Joannem Janssonium, 1660].",true
13
+ jp266yb7109,AMERICA,false
14
+ jr961xz9944,AMERICA SEPTENTRIONALIS,true
15
+ jy409qg0248,Novissima et Accuratissima TOTIUS AMERICÆ DESCRIPTIO.,true
16
+ kw406zk5778,[America],true
17
+ kw703rh2327,"Mappe-monde pour connoitre les progŕes & les conquestes les plus remarquables des Provinces-Vnies, ainsy que celles des Compagnies d'Orient et d'Occident et les païs quelles possédent dans l'un et dans l'autre hemisphere and Atlas historique, ou, nouvelle introduction à l’histoire, à la chronologie & à la géographie ancienne & moderne",true
18
+ mw236cd6430,"AMERIQUE SEPTENTRIONALE divisée en ses principales parties, ou sont distingués les vns des autres LES ESTATS suivant qu'ils appartiennent presentemet aux FRANÇOIS, CASTILLANS, ANGLOIS, SUEDOIS, DANOIS, HOLLANDOIS. Tirée des Relations de toutes ces Nations Par le Sr. Sanson, Geographe Ordinaire du Roy",true
19
+ np731wc7689,L'AMERIQUE | Suivant les dernieres | Observations de l'Acade= | mie Royale des Sciences Seventh of 18 States,true
20
+ nq874ts4848,"Introduction a la Geographie Avec une Description Historique Sur Touttes les parties de la Terre
21
+ Title page",true
22
+ nr766vt0518,GEOGRAPHISCHE UNIVERSAL - ZEIG UND SCHLAG-UHR : WEERELD-BEELDIGH WYS EN SLAG WERK,true
23
+ nz081wv9348,AMERIQUE SEPTENTRIONALE Par N. Sanson Geographe Ord.re du Roy. Reveue et changée en plusieurs endroits suivant les Memoires les plus recents augmentée et corrigée en cette seconde edition,true
24
+ pm812zf5263,AMERICÆ,true
25
+ ps921pn8250,PLANISPHERE URANO-GEOGRAPHIQUE c'estadire LES SPHERES CELESTE et TERRESTRE mises en plan.,false
26
+ pt603pv6417,"A Map of the WORLD with the Ships DUKE & DUTCHESS Tract Round it, from 1708 to 1711. Second of 2 States",true
27
+ qb677kc3995,L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES,true
28
+ qt469cf8909,"Pascaart vertoonende de Zeecusten van Chili, Peru, Hispania, Nova, Nova Granada, en California.",true
29
+ rc221bv1386,[Armenian map of the world],true
30
+ rj993fh5469,"A New Map of the World Shewing the Course of Sr. Francis Drake, William Shouten and Capt. William Dampiers Voyages Round it.",true
31
+ rx614sw9194,AMERICÆ nova discriptio.,true
32
+ rz043dh7915,MAR DEL ZUR HISPANIS MARE PACIFICUM.,true
33
+ rz818vx8201,'t Noorder deel van WEST-INDIEN,true
34
+ sb904gg2771,Planisphaerium terrestre cum utroque coelesti hemisphaerio ... = Vlakke ared-kloot met het beide hemelsch half-rond,true
35
+ sd345mz1879,A MAP of AMERICA from the latest and best Observations,true
36
+ sn161bw2027,"Pas-caart van Zuyd-Zee, tusschen California en ilhas de Ladrones and La Atlas del mundo o el mundo aguado",true
37
+ sn343fc0807,AMERICQVE SEPTENTRIONALE,true
38
+ sp821gh4463,[World],true
39
+ sw106rc9347,AMERIQUE SEPTENTRIONALE,true
40
+ sx619yv5558,"Recentissima NOVI ORBIS, Sive AMERICÆ SEPTENTRIONALIS et MERIDIONALIS TABULA",true
41
+ tg729zw9405,NOVA TOTIVS AMERICÆ DESCRIPTIO.,true
42
+ vb000vb1451,AMERICA,true
43
+ vw323gf4937,AMERICA with those known parts in that unknowne worlde both people and manner of buildings Discribed and inlarged by I.S.Ano.1626,false
44
+ vy180gj7659,L'AMERIQUE Suivant les dernieres observations de l'Acad. Royale des Sciences.,true
45
+ wb806ct0449,A Generall Chart of the | SOUTH SEA | from the River of Plate to | Dampiers Streights on ye Coast | of NEW GUINEA,true
46
+ wt855xd4818,CONTINENT ARCTIQVE,true
47
+ xd327cm9378,"Mapa mundi, con los meridianos, y paralelos, iguales como los del globo tere- y arreglado a las mejores, y ultimas relaciones",true
48
+ yh941cp6284,Orbis terrarum tabula recens emendata et in lucem edita,true
49
+ ym733yc1437,"[Maps of the world] and A new and universal dictionary of arts and sciences: ... With an introductory preface, ... And illustrated with a great number of copper-plates, engraven by the best hands",true
50
+ yn959jw9550,A New Map of North AMERICA According to the Newest Observations.,true
51
+ ys360dp2191,TYPUS SELENOGRAPHICUS LUNÆ PHASES ET ASPECTUS VARIOS ADUMBRANS.,true
52
+ zn001wm6450,L'AMERIQVE autrement Le NOVVEAV MONDE et INDES OCCIDENTALES,true
53
+ zn845sh3664,PLANISPHERE REPRESENTANT TOUTE L'ETENDUE DU MONDE. DANS L'ORDRE QU'ON A SUIVI DANS CE LIVRE. NB. LES CHIFFRES SE RAPORTENT AUX CARTES ET AUX PAGES DES DESCRIPTIONS.,true
54
+ zq083qg2931,[Pacific Ocean],true
55
+ zr014mj0786,A New and Exact Map of ASIA According to the Best Observations,true
56
+ zs247rr8237,"AMERIQUE SEPTENTRIONALE divisée en ses principales parties, ou sont distingués les vns des autres LES ESTATS suivant qu'ils appartiennent presentemet aux FRANÇOIS, CASTILLANS, ANGLOIS, SUEDOIS, DANOIS, HOLLANDOIS. Tirée des Relations de toutes ces Nations Par le Sr. Sanson, Geographe Ordinaire du Roy",true
57
+ zv316zr9542,AMERIQUE SEPTENTRIONALE,false
@@ -0,0 +1,4 @@
1
+ Item ID,Item Title,Visibility,Tag: CSV Tag1,Tag: CSV Tag2,Tag: CSV DoesntExist
2
+ bm387cy2596,L'AMERIQVE,true,true,true,false
3
+ cz507zk0531,NEW MEXICO,true,false,true,false
4
+ dq287tq6352,L'AMERIQUE,true,true,true,false
@@ -0,0 +1,4 @@
1
+ Item ID,Item Title,Visibility
2
+ bm387cy2596,L'AMERIQVE,true
3
+ cz507zk0531,NEW MEXICO,true
4
+ dq287tq6352,L'AMERIQUE,false
@@ -66,7 +66,6 @@ describe Spotlight::ApplicationHelper, type: :helper do
66
66
  end
67
67
 
68
68
  it 'is a url for a search with the given tag facet' do
69
- allow(SolrDocument).to receive_messages(solr_field_for_tagger: :exhibit_tags)
70
69
  expected = spotlight.search_exhibit_catalog_path(exhibit_id: helper.current_exhibit, f: { exhibit_tags: ['tag_value'] })
71
70
  expect(helper.url_to_tag_facet('tag_value')).to eq expected
72
71
  end
@@ -12,21 +12,6 @@ describe Spotlight::PagesHelper, type: :helper do
12
12
  allow(helper).to receive_messages(blacklight_config: blacklight_config)
13
13
  end
14
14
 
15
- describe 'available_index_fields' do
16
- before do
17
- blacklight_config.index.title_field = :title_field
18
- blacklight_config.add_index_field 'x', label: 'X'
19
- end
20
-
21
- it 'lists the configured index fields' do
22
- expect(helper.available_index_fields).to include key: 'x', label: 'X'
23
- end
24
-
25
- it 'adds the title field if necessary' do
26
- expect(helper.available_index_fields).to include key: :title_field, label: 'Title'
27
- end
28
- end
29
-
30
15
  describe 'disable_save_pages_button?' do
31
16
  it 'returns true if there are no pages and we are on the about pages page' do
32
17
  expect(helper).to receive(:page_collection_name).and_return('about_pages')
@@ -2,6 +2,6 @@
2
2
 
3
3
  describe Spotlight::RolesHelper, type: :helper do
4
4
  it 'is a list of options' do
5
- expect(helper.roles_for_select).to eq('Admin' => 'admin', 'Curator' => 'curator')
5
+ expect(helper.roles_for_select).to eq('Admin' => 'admin', 'Curator' => 'curator', 'Viewer' => 'viewer')
6
6
  end
7
7
  end
data/spec/i18n_spec.rb CHANGED
@@ -13,6 +13,7 @@ RSpec.describe 'I18n' do
13
13
  end
14
14
 
15
15
  it 'does not have unused keys' do
16
+ puts unused_keys.inspect
16
17
  expect(unused_keys).to be_empty,
17
18
  "#{unused_keys.leaves.count} unused i18n keys, run `i18n-tasks unused' to show them"
18
19
  end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ describe Spotlight::AddTagsJob 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) { 'hello,world' }
9
+
10
+ before do
11
+ allow(Spotlight::Engine.config).to receive_messages(bulk_actions_batch_size: 5)
12
+ end
13
+
14
+ it 'adds tags to SolrDocumentSidecar objects' 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::AddTagsJob'
23
+ )
24
+ response.documents.each do |document|
25
+ expect(document.sidecar(exhibit).all_tags_list).to include('hello', 'world')
26
+ exhibit.tag(document.sidecar(exhibit), with: [], on: :tags)
27
+ end
28
+ exhibit.owned_tags.destroy_all
29
+ response.documents.each do |document|
30
+ document.sidecar(exhibit).destroy
31
+ document.reindex
32
+ end
33
+ end
34
+ end
@@ -48,7 +48,10 @@ describe Spotlight::AddUploadsFromCsv do
48
48
  expect(Spotlight::IndexingCompleteMailer).to have_received(:documents_indexed).with(
49
49
  data, exhibit, user,
50
50
  indexed_count: 1,
51
- errors: { 1 => array_including(match(/relative URI: x/)), 2 => array_including(match(/Upload is invalid/)) }
51
+ errors: {
52
+ 1 => array_including(match(Regexp.union(/relative URI: x/, /URI scheme '' not in whitelist:/))),
53
+ 2 => array_including(match(/Upload is invalid/))
54
+ }
52
55
  )
53
56
  end
54
57
  end