hyrax 5.0.0 → 5.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +7 -176
  3. data/.dassie/.env +8 -3
  4. data/.dassie/Gemfile +13 -2
  5. data/.dassie/app/controllers/hyrax/generic_work_resources_controller.rb +17 -0
  6. data/.dassie/app/controllers/hyrax/generic_works_controller.rb +7 -1
  7. data/.dassie/app/forms/generic_work_resource_form.rb +20 -0
  8. data/.dassie/app/indexers/generic_work_resource_indexer.rb +16 -0
  9. data/.dassie/app/models/admin_set_resource.rb +9 -0
  10. data/.dassie/app/models/collection_resource.rb +2 -0
  11. data/.dassie/app/models/file_set.rb +2 -0
  12. data/.dassie/app/models/generic_work_resource.rb +10 -0
  13. data/.dassie/app/views/hyrax/generic_work_resources/_generic_work_resource.html.erb +2 -0
  14. data/.dassie/config/analytics.yml +6 -1
  15. data/.dassie/config/application.rb +24 -0
  16. data/.dassie/config/initializers/hyrax.rb +13 -3
  17. data/.dassie/config/initializers/wings.rb +109 -0
  18. data/.dassie/config/metadata/generic_work_resource.yaml +22 -0
  19. data/.dassie/config/valkyrie_index.yml +4 -10
  20. data/.dassie/db/migrate/20240506070809_valkyrie_id_to_string.rb +5 -0
  21. data/.dassie/db/schema.rb +2 -2
  22. data/.dassie/spec/indexers/generic_work_resource_indexer_spec.rb +13 -0
  23. data/.dassie/spec/models/generic_work_resource_spec.rb +12 -0
  24. data/.dassie/spec/views/generic_work_resources/_generic_work_resource.html.erb_spec.rb +7 -0
  25. data/.dockerignore +6 -4
  26. data/.github/release.yml +3 -0
  27. data/.github/workflows/lint-build-test.yml +130 -0
  28. data/.github/workflows/test-results.yml +40 -0
  29. data/.koppie/.env +7 -5
  30. data/.koppie/Gemfile +12 -1
  31. data/.koppie/config/analytics.yml +6 -1
  32. data/.koppie/config/environments/test.rb +2 -0
  33. data/.koppie/config/initializers/1_valkyrie.rb +6 -2
  34. data/.koppie/config/solr.yml +1 -1
  35. data/.regen +1 -1
  36. data/.rubocop.yml +5 -0
  37. data/Dockerfile +16 -36
  38. data/Gemfile +2 -0
  39. data/app/assets/javascripts/hydra-editor/field_manager.es6 +187 -0
  40. data/app/assets/javascripts/hyrax/analytics_events.js +48 -24
  41. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +3 -0
  42. data/app/assets/javascripts/hyrax/collapse.js +4 -4
  43. data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +38 -5
  44. data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +2 -0
  45. data/app/assets/javascripts/hyrax/search.js +2 -3
  46. data/app/assets/javascripts/hyrax/select_work_type.es6 +3 -1
  47. data/app/assets/javascripts/hyrax/uploader.js +20 -18
  48. data/app/assets/javascripts/hyrax.js +1 -0
  49. data/app/assets/stylesheets/_bootstrap-default-overrides.scss +4 -0
  50. data/app/assets/stylesheets/hyrax/_card.scss +4 -0
  51. data/app/assets/stylesheets/hyrax/_catalog.scss +21 -0
  52. data/app/assets/stylesheets/hyrax/_collections.scss +1 -1
  53. data/app/assets/stylesheets/hyrax/_facets.scss +15 -3
  54. data/app/assets/stylesheets/hyrax/_featured.scss +4 -0
  55. data/app/assets/stylesheets/hyrax/_file_upload.scss +6 -0
  56. data/app/assets/stylesheets/hyrax/_form.scss +4 -0
  57. data/app/assets/stylesheets/hyrax/_forms.scss +2 -1
  58. data/app/assets/stylesheets/hyrax/_nestable.scss +9 -8
  59. data/app/assets/stylesheets/hyrax/_select_work_type.scss +12 -0
  60. data/app/assets/stylesheets/hyrax/_styles.scss +4 -0
  61. data/app/assets/stylesheets/hyrax/_work-show.scss +3 -0
  62. data/app/assets/stylesheets/hyrax/controlled_vocabulary.scss +2 -2
  63. data/app/controllers/concerns/hyrax/singular_subresource_controller.rb +7 -2
  64. data/app/controllers/concerns/hyrax/valkyrie_downloads_controller_behavior.rb +11 -2
  65. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +9 -2
  66. data/app/controllers/hyrax/admin/analytics/collection_reports_controller.rb +2 -2
  67. data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +7 -8
  68. data/app/controllers/hyrax/dashboard/collections_controller.rb +2 -1
  69. data/app/controllers/hyrax/downloads_controller.rb +24 -3
  70. data/app/controllers/hyrax/file_sets_controller.rb +33 -7
  71. data/app/controllers/hyrax/my/works_controller.rb +20 -0
  72. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +9 -2
  73. data/app/controllers/hyrax/stats_controller.rb +1 -1
  74. data/app/controllers/hyrax/uploads_controller.rb +28 -2
  75. data/app/forms/hyrax/forms/admin/appearance.rb +1 -1
  76. data/app/forms/hyrax/forms/admin/collection_type_form.rb +1 -7
  77. data/app/forms/hyrax/forms/pcdm_collection_form.rb +9 -0
  78. data/app/forms/hyrax/forms/work_embargo_form.rb +6 -0
  79. data/app/forms/hyrax/forms/work_lease_form.rb +6 -0
  80. data/app/indexers/concerns/hyrax/location_indexer.rb +2 -2
  81. data/app/indexers/hyrax/indexers/file_set_indexer.rb +4 -0
  82. data/app/indexers/hyrax/indexers/resource_indexer.rb +1 -0
  83. data/app/indexers/hyrax/valkyrie_indexer.rb +3 -5
  84. data/app/jobs/migrate_files_to_valkyrie_job.rb +109 -0
  85. data/app/jobs/migrate_resources_job.rb +34 -0
  86. data/app/jobs/valkyrie_create_derivatives_job.rb +2 -1
  87. data/app/models/admin_set.rb +1 -0
  88. data/app/models/collection.rb +13 -1
  89. data/app/models/concerns/hyrax/ar_resource.rb +104 -0
  90. data/app/models/concerns/hyrax/solr_document/ordered_members.rb +2 -1
  91. data/app/models/concerns/hyrax/solr_document_behavior.rb +13 -2
  92. data/app/models/concerns/hyrax/valkyrie_lazy_migration.rb +82 -0
  93. data/app/models/file_download_stat.rb +1 -1
  94. data/app/models/file_view_stat.rb +1 -1
  95. data/app/models/hyrax/collection_type.rb +12 -4
  96. data/app/models/hyrax/file_metadata.rb +19 -0
  97. data/app/models/hyrax/file_set.rb +25 -0
  98. data/app/models/hyrax/model_registry.rb +3 -4
  99. data/app/models/hyrax/resource.rb +5 -0
  100. data/app/models/hyrax/statistic.rb +12 -37
  101. data/app/presenters/hyrax/file_set_presenter.rb +2 -1
  102. data/app/presenters/hyrax/file_usage.rb +3 -3
  103. data/app/presenters/hyrax/iiif_manifest_presenter.rb +2 -1
  104. data/app/presenters/hyrax/member_presenter_factory.rb +7 -1
  105. data/app/presenters/hyrax/menu_presenter.rb +1 -1
  106. data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +2 -2
  107. data/app/presenters/hyrax/stats_usage_presenter.rb +2 -1
  108. data/app/presenters/hyrax/work_show_presenter.rb +15 -19
  109. data/app/presenters/hyrax/work_usage.rb +5 -2
  110. data/app/search_builders/hyrax/expired_embargo_search_builder.rb +7 -1
  111. data/app/search_builders/hyrax/expired_lease_search_builder.rb +7 -1
  112. data/app/search_builders/hyrax/filter_by_type.rb +1 -3
  113. data/app/search_builders/hyrax/valkyrie_abstract_type_relation.rb +7 -2
  114. data/app/services/hyrax/access_control_list.rb +1 -1
  115. data/app/services/hyrax/admin_set_create_service.rb +16 -5
  116. data/app/services/hyrax/admin_set_service.rb +2 -1
  117. data/app/services/hyrax/analytics/ga4/base.rb +96 -0
  118. data/app/services/hyrax/analytics/ga4/events.rb +25 -0
  119. data/app/services/hyrax/analytics/ga4/events_daily.rb +36 -0
  120. data/app/services/hyrax/analytics/ga4/visits.rb +33 -0
  121. data/app/services/hyrax/analytics/ga4/visits_daily.rb +24 -0
  122. data/app/services/hyrax/analytics/ga4.rb +204 -0
  123. data/app/services/hyrax/analytics/google.rb +16 -2
  124. data/app/services/hyrax/analytics/matomo.rb +16 -3
  125. data/app/services/hyrax/analytics/results.rb +6 -0
  126. data/app/services/hyrax/custom_queries/find_access_control.rb +1 -1
  127. data/app/services/hyrax/custom_queries/find_by_date_range.rb +6 -23
  128. data/app/services/hyrax/custom_queries/find_collections_by_type.rb +2 -2
  129. data/app/services/hyrax/custom_queries/find_count_by.rb +3 -31
  130. data/app/services/hyrax/custom_queries/find_file_metadata.rb +2 -2
  131. data/app/services/hyrax/custom_queries/find_models_by_access.rb +5 -27
  132. data/app/services/hyrax/embargo_manager.rb +2 -1
  133. data/app/services/hyrax/file_set_file_service.rb +10 -1
  134. data/app/services/hyrax/listeners/file_listener.rb +39 -0
  135. data/app/services/hyrax/listeners/file_metadata_listener.rb +0 -30
  136. data/app/services/hyrax/lock_manager.rb +7 -7
  137. data/app/services/hyrax/lockable.rb +4 -3
  138. data/app/services/hyrax/simple_schema_loader.rb +1 -1
  139. data/app/services/hyrax/solr_service.rb +22 -8
  140. data/app/services/hyrax/statistics/query_service.rb +1 -1
  141. data/app/services/hyrax/statistics/works/over_time.rb +1 -1
  142. data/app/services/hyrax/thumbnail_path_service.rb +2 -0
  143. data/app/services/hyrax/user_stat_importer.rb +5 -5
  144. data/app/services/hyrax/valkyrie_upload.rb +14 -9
  145. data/app/services/hyrax/versioning_service.rb +10 -2
  146. data/app/services/hyrax/work_query_service.rb +2 -2
  147. data/app/services/migrate_resource_service.rb +55 -0
  148. data/app/views/_controls.html.erb +5 -5
  149. data/app/views/_masthead.html.erb +1 -1
  150. data/app/views/catalog/_search_form.html.erb +9 -16
  151. data/app/views/catalog/_thumbnail_list_collection.html.erb +1 -1
  152. data/app/views/catalog/_thumbnail_list_default.html.erb +2 -2
  153. data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +4 -4
  154. data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +1 -1
  155. data/app/views/hyrax/admin/collection_types/_form.html.erb +4 -4
  156. data/app/views/hyrax/admin/collection_types/index.html.erb +1 -1
  157. data/app/views/hyrax/admin/features/index.html.erb +1 -1
  158. data/app/views/hyrax/base/_file_manager_actions.html.erb +1 -1
  159. data/app/views/hyrax/base/_file_manager_member.html.erb +7 -4
  160. data/app/views/hyrax/base/_file_manager_thumbnail.html.erb +1 -1
  161. data/app/views/hyrax/base/_form_files.html.erb +1 -1
  162. data/app/views/hyrax/base/_form_member_of_collections.html.erb +4 -0
  163. data/app/views/hyrax/base/_show_actions.html.erb +7 -8
  164. data/app/views/hyrax/base/_work_button_row.html.erb +1 -1
  165. data/app/views/hyrax/batch_select/_add_button.html.erb +1 -1
  166. data/app/views/hyrax/content_blocks/_form.html.erb +3 -3
  167. data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
  168. data/app/views/hyrax/dashboard/_user_activity.html.erb +2 -2
  169. data/app/views/hyrax/dashboard/collections/_form.html.erb +4 -4
  170. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +6 -4
  171. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +1 -1
  172. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
  173. data/app/views/hyrax/dashboard/show_admin.html.erb +18 -19
  174. data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +1 -1
  175. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +7 -7
  176. data/app/views/hyrax/file_sets/_actions.html.erb +9 -1
  177. data/app/views/hyrax/file_sets/_permission_form.html.erb +4 -2
  178. data/app/views/hyrax/file_sets/_show_actions.html.erb +1 -1
  179. data/app/views/hyrax/homepage/_featured.html.erb +1 -1
  180. data/app/views/hyrax/homepage/_recent_document.html.erb +2 -2
  181. data/app/views/hyrax/leases/_list_expired_active_leases.html.erb +6 -6
  182. data/app/views/hyrax/my/collections/_list_collections.html.erb +1 -1
  183. data/app/views/hyrax/my/collections/_tabs.html.erb +1 -1
  184. data/app/views/hyrax/pages/_form.html.erb +8 -8
  185. data/app/views/hyrax/transfers/_received.html.erb +1 -1
  186. data/app/views/hyrax/uploads/_js_templates.html.erb +9 -9
  187. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +3 -3
  188. data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +1 -1
  189. data/app/views/hyrax/uploads/create.json.jbuilder +2 -2
  190. data/app/views/hyrax/users/_activity_log.html.erb +15 -9
  191. data/app/views/hyrax/users/_user_row.html.erb +6 -3
  192. data/app/views/hyrax/users/_vitals.html.erb +3 -2
  193. data/app/views/layouts/_head_tag_content.html.erb +2 -0
  194. data/app/views/shared/_appearance_styles.html.erb +5 -1
  195. data/app/views/shared/_ga4.html.erb +11 -0
  196. data/app/views/shared/_select_work_type_modal.html.erb +10 -1
  197. data/bin/db-migrate-seed.sh +3 -3
  198. data/bin/dev-entrypoint.sh +7 -2
  199. data/bin/{db-wait.sh → service-wait.sh} +1 -1
  200. data/bin/worker-entrypoint.sh +8 -0
  201. data/chart/hyrax/Chart.yaml +1 -1
  202. data/chart/hyrax/templates/deployment-worker.yaml +2 -2
  203. data/chart/hyrax/templates/deployment.yaml +12 -0
  204. data/chart/hyrax/values.yaml +10 -0
  205. data/config/locales/hyrax.en.yml +4 -2
  206. data/config/metadata/basic_metadata.yaml +20 -0
  207. data/config/metadata/hyrax_internal_metadata.yaml +1 -1
  208. data/docker-compose-dassie.yml +167 -0
  209. data/docker-compose-koppie.yml +21 -36
  210. data/docker-compose-sirenia.yml +50 -44
  211. data/docker-compose.yml +2 -183
  212. data/documentation/developing-your-hyrax-based-app.md +4 -4
  213. data/hyrax.gemspec +7 -12
  214. data/lib/freyja/custom_query_container.rb +5 -0
  215. data/lib/freyja/metadata_adapter.rb +32 -0
  216. data/lib/freyja/persister.rb +42 -0
  217. data/lib/freyja/query_service.rb +20 -0
  218. data/lib/freyja/resource_factory.rb +8 -0
  219. data/lib/freyja.rb +14 -0
  220. data/lib/frigg/custom_query_container.rb +5 -0
  221. data/lib/frigg/metadata_adapter.rb +22 -0
  222. data/lib/frigg/persister.rb +33 -0
  223. data/lib/frigg/query_service.rb +15 -0
  224. data/lib/frigg.rb +13 -0
  225. data/lib/generators/hyrax/install_generator.rb +5 -0
  226. data/lib/generators/hyrax/templates/config/analytics.yml +6 -1
  227. data/lib/generators/hyrax/templates/config/initializers/1_valkyrie.rb +6 -2
  228. data/lib/generators/hyrax/templates/config/valkyrie_index.yml +1 -1
  229. data/lib/goddess/custom_query_container.rb +71 -0
  230. data/lib/goddess/metadata.rb +13 -0
  231. data/lib/goddess/query.rb +176 -0
  232. data/lib/hyrax/configuration.rb +83 -0
  233. data/lib/hyrax/engine.rb +2 -0
  234. data/lib/hyrax/form_fields.rb +1 -3
  235. data/lib/hyrax/name.rb +5 -0
  236. data/lib/hyrax/publisher.rb +11 -0
  237. data/lib/hyrax/rubocop/custom_cops.rb +30 -0
  238. data/lib/hyrax/specs/capybara.rb +10 -6
  239. data/{spec → lib/hyrax/specs/shared_specs}/factories/admin_sets.rb +2 -0
  240. data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_embargo.rb +4 -0
  241. data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_lease.rb +4 -0
  242. data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_work.rb +26 -1
  243. data/lib/hyrax/specs/shared_specs/hydra_works.rb +1 -1
  244. data/lib/hyrax/transactions/admin_set_destroy.rb +2 -1
  245. data/lib/hyrax/transactions/collection_destroy.rb +2 -1
  246. data/lib/hyrax/transactions/container.rb +9 -0
  247. data/lib/hyrax/transactions/steps/add_file_sets.rb +2 -1
  248. data/lib/hyrax/transactions/steps/delete_all_file_metadata.rb +4 -5
  249. data/lib/hyrax/transactions/steps/delete_permission_template.rb +30 -0
  250. data/lib/hyrax/transactions/steps/delete_resource.rb +1 -1
  251. data/lib/hyrax/transactions/steps/save_collection_logo.rb +2 -1
  252. data/lib/hyrax/valkyrie_can_can_adapter.rb +8 -1
  253. data/lib/hyrax/version.rb +1 -1
  254. data/lib/wings/active_fedora_converter.rb +13 -5
  255. data/lib/wings/converter_value_mapper.rb +1 -0
  256. data/lib/wings/services/custom_queries/find_collections_by_type.rb +2 -1
  257. data/lib/wings/services/custom_queries/find_file_metadata.rb +2 -2
  258. data/lib/wings/setup.rb +12 -3
  259. data/lib/wings/transformer_value_mapper.rb +5 -1
  260. data/lib/wings/valkyrie/persister.rb +3 -1
  261. data/template.rb +1 -1
  262. metadata +118 -94
  263. data/.koppie/scripts/db-migrate-seed.sh +0 -9
  264. data/.koppie/scripts/entrypoint.sh +0 -10
  265. data/spec/support/book_resource.rb +0 -36
  266. data/spec/support/can_can_overrides.rb +0 -43
  267. data/spec/support/clean_solr.rb +0 -7
  268. data/spec/support/controller_level_helpers.rb +0 -27
  269. data/spec/support/factory_helpers.rb +0 -94
  270. data/spec/support/fakes/fake_actor.rb +0 -22
  271. data/spec/support/fakes/fake_authority.rb +0 -14
  272. data/spec/support/fakes/fake_search_builder_scope.rb +0 -44
  273. data/spec/support/fakes/indexing_adapter.rb +0 -17
  274. data/spec/support/fakes/test_hydra_group_service.rb +0 -55
  275. data/spec/support/features/batch_edit_actions.rb +0 -37
  276. data/spec/support/features/session_helpers.rb +0 -15
  277. data/spec/support/features/workflow.rb +0 -10
  278. data/spec/support/features.rb +0 -11
  279. data/spec/support/form_with_validations.rb +0 -15
  280. data/spec/support/input_support.rb +0 -12
  281. data/spec/support/logging_formatter.rb +0 -67
  282. data/spec/support/matchers/api_responses.rb +0 -27
  283. data/spec/support/matchers/collection_type_property_matchers.rb +0 -30
  284. data/spec/support/matchers/embargo.rb +0 -9
  285. data/spec/support/matchers/lease.rb +0 -9
  286. data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +0 -12
  287. data/spec/support/matchers/pcdm_matchers.rb +0 -34
  288. data/spec/support/matchers/permission.rb +0 -31
  289. data/spec/support/matchers/response_matchers.rb +0 -8
  290. data/spec/support/optional_example.rb +0 -17
  291. data/spec/support/rake.rb +0 -42
  292. data/spec/support/selectors.rb +0 -112
  293. data/spec/support/shared_examples_for_collection_presenter.rb +0 -44
  294. data/spec/support/simple_work.rb +0 -28
  295. data/spec/support/spec_statistic.rb +0 -24
  296. data/spec/support/speedup.rb +0 -7
  297. data/spec/support/statistic_helper.rb +0 -10
  298. data/spec/support/valkyrie_indexing.rb +0 -2
  299. data/spec/support/wings_models.rb +0 -9
  300. /data/{spec → lib/hyrax/specs/shared_specs}/factories/access_control.rb +0 -0
  301. /data/{spec → lib/hyrax/specs/shared_specs}/factories/admin_sets_lw.rb +0 -0
  302. /data/{spec → lib/hyrax/specs/shared_specs}/factories/administrative_sets.rb +0 -0
  303. /data/{spec → lib/hyrax/specs/shared_specs}/factories/api_items.rb +0 -0
  304. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collection_branding_infos.rb +0 -0
  305. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collection_type_participants.rb +0 -0
  306. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collection_types.rb +0 -0
  307. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collections.rb +0 -0
  308. /data/{spec → lib/hyrax/specs/shared_specs}/factories/collections_factory.rb +0 -0
  309. /data/{spec → lib/hyrax/specs/shared_specs}/factories/content_blocks.rb +0 -0
  310. /data/{spec → lib/hyrax/specs/shared_specs}/factories/counter_metrics.rb +0 -0
  311. /data/{spec → lib/hyrax/specs/shared_specs}/factories/featured_works.rb +0 -0
  312. /data/{spec → lib/hyrax/specs/shared_specs}/factories/file_sets.rb +0 -0
  313. /data/{spec → lib/hyrax/specs/shared_specs}/factories/generic_works.rb +0 -0
  314. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_collection.rb +0 -0
  315. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_default_admin_set.rb +0 -0
  316. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_file_metadata.rb +0 -0
  317. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_file_set.rb +0 -0
  318. /data/{spec → lib/hyrax/specs/shared_specs}/factories/hyrax_resource.rb +0 -0
  319. /data/{spec → lib/hyrax/specs/shared_specs}/factories/object_id.rb +0 -0
  320. /data/{spec → lib/hyrax/specs/shared_specs}/factories/operations.rb +0 -0
  321. /data/{spec → lib/hyrax/specs/shared_specs}/factories/permission.rb +0 -0
  322. /data/{spec → lib/hyrax/specs/shared_specs}/factories/permission_template_accesses.rb +0 -0
  323. /data/{spec → lib/hyrax/specs/shared_specs}/factories/permission_templates.rb +0 -0
  324. /data/{spec → lib/hyrax/specs/shared_specs}/factories/proxy_deposit_requests.rb +0 -0
  325. /data/{spec → lib/hyrax/specs/shared_specs}/factories/single_use_links.rb +0 -0
  326. /data/{spec → lib/hyrax/specs/shared_specs}/factories/sipity_entities.rb +0 -0
  327. /data/{spec → lib/hyrax/specs/shared_specs}/factories/uploaded_files.rb +0 -0
  328. /data/{spec → lib/hyrax/specs/shared_specs}/factories/users.rb +0 -0
  329. /data/{spec → lib/hyrax/specs/shared_specs}/factories/workflow_actions.rb +0 -0
  330. /data/{spec → lib/hyrax/specs/shared_specs}/factories/workflow_states.rb +0 -0
  331. /data/{spec → lib/hyrax/specs/shared_specs}/factories/workflows.rb +0 -0
@@ -1,94 +0,0 @@
1
- # frozen_string_literal: true
2
- module Hyrax
3
- module FactoryHelpers
4
- module_function
5
-
6
- FIELDS = { mime_type: 'text/plain',
7
- content: 'content',
8
- file_size: [],
9
- format_label: [],
10
- height: [],
11
- width: [],
12
- filename: [],
13
- well_formed: [],
14
- page_count: [],
15
- file_title: [],
16
- last_modified: [],
17
- original_checksum: [],
18
- alpha_channels: [],
19
- digest: [],
20
- duration: [],
21
- sample_rate: [],
22
- versions: [] }.freeze
23
-
24
- def mock_file_factory(opts = {})
25
- fields = FIELDS.each_with_object({}) do |(name, default), hsh|
26
- hsh[name] = opts.fetch(name, default)
27
- end
28
-
29
- mock_model('MockOriginal', fields)
30
- end
31
-
32
- # as defined in Hyrax::FileMetadata
33
- HYRAX_FILE_METADATA_FIELDS = { file_identifier: '',
34
- alternate_ids: [],
35
- file_set_id: '',
36
- label: [''],
37
- original_filename: '',
38
- mime_type: 'text/plain',
39
- type: [],
40
- format_label: [],
41
- size: [],
42
- well_formed: [],
43
- valid: [],
44
- date_created: [],
45
- fits_version: [],
46
- exif_version: [],
47
- checksum: [],
48
- frame_rate: [],
49
- bit_rate: [],
50
- duration: [],
51
- sample_rate: [],
52
- height: [],
53
- width: [],
54
- bit_depth: [],
55
- channels: [],
56
- data_format: [],
57
- offset: [],
58
- file_title: [],
59
- creator: [],
60
- page_count: [],
61
- language: [],
62
- word_count: [],
63
- character_count: [],
64
- line_count: [],
65
- character_set: [],
66
- markup_basis: [],
67
- markup_language: [],
68
- paragraph_count: [],
69
- table_count: [],
70
- graphics_count: [],
71
- byte_order: [],
72
- compression: [],
73
- color_space: [],
74
- profile_name: [],
75
- profile_version: [],
76
- orientation: [],
77
- color_map: [],
78
- image_producer: [],
79
- capture_device: [],
80
- scanning_software: [],
81
- gps_timestamp: [],
82
- latitude: [],
83
- longitude: [],
84
- aspect_ratio: [] }.freeze
85
-
86
- def mock_file_metadata_factory(opts = {})
87
- fields = HYRAX_FILE_METADATA_FIELDS.each_with_object({}) do |(name, default), hsh|
88
- hsh[name] = opts.fetch(name, default)
89
- end
90
-
91
- mock_model('MockFileMetadata', fields)
92
- end
93
- end
94
- end
@@ -1,22 +0,0 @@
1
- # frozen_string_literal: true
2
- class FakeActor < Hyrax::Actors::AbstractActor
3
- attr_accessor :created, :destroyed, :updated
4
-
5
- def create(env)
6
- self.created = env
7
-
8
- true
9
- end
10
-
11
- def destroy(env)
12
- self.destroyed = env
13
-
14
- true
15
- end
16
-
17
- def update(env)
18
- self.updated = env
19
-
20
- true
21
- end
22
- end
@@ -1,14 +0,0 @@
1
- # frozen_string_literal: true
2
- class FakeAuthority
3
- def initialize(map)
4
- @map = map
5
- end
6
-
7
- def all
8
- @map
9
- end
10
-
11
- def find(id)
12
- @map.detect { |item| item[:id] == id }
13
- end
14
- end
@@ -1,44 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- ##
4
- # +Blacklight::SearchBuilder+ requires a 'scope' object, which its documentation
5
- # describes as "the scope where the filter methods reside in."
6
- #
7
- # Often (usually?) this is a Controller with:
8
- # - +#blacklight_config+
9
- # - +#current_ability+
10
- # - +#current_user+
11
- # - +#params+
12
- # - +#repository+
13
- # - +#search_state_class+
14
- #
15
- # This provides a fake scope with more control than a generic RSpec double.
16
- class FakeSearchBuilderScope
17
- ##
18
- # @!attribute [r] blacklight_config
19
- # @return [Blacklight::Configuration]
20
- # @!attribute [r] current_ability
21
- # @return [::Ability]
22
- # @!attribute [r] current_user
23
- # @return [::User, nil]
24
- # @!attribute [r] params
25
- # @return [Hash]
26
- # @!attribute [r] repository
27
- # @return [Blacklight::AbstractRepository]
28
- # @!attribute [r] search_state_class
29
- # @return [Blacklight::SearchState, nil]
30
- attr_reader :blacklight_config, :current_ability, :current_user, :params, :repository, :search_state_class
31
-
32
- ##
33
- # @param [Blacklight::Configuration] blacklight_config
34
- # @param [::Ability, nil] current_ability
35
- # @param [::User, nil] current_user
36
- def initialize(blacklight_config: CatalogController.blacklight_config, current_ability: nil, current_user: nil, params: {}, search_state_class: nil)
37
- @blacklight_config = blacklight_config
38
- @current_user = current_user
39
- @current_ability = current_ability || ::Ability.new(current_user)
40
- @params = params
41
- @repository = Blacklight::Solr::Repository.new(blacklight_config)
42
- @search_state_class = search_state_class
43
- end
44
- end
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
- class FakeIndexingAdapter
3
- attr_reader :deleted_resources, :saved_resources
4
-
5
- def initialize
6
- @deleted_resources = []
7
- @saved_resources = []
8
- end
9
-
10
- def save(resource:)
11
- @saved_resources << resource
12
- end
13
-
14
- def delete(resource:)
15
- @deleted_resources << resource
16
- end
17
- end
@@ -1,55 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- ##
4
- # A fake group service implementation for use in test suites as a drop-in
5
- # replacement for `RoleMapper` or the `hydra-role-management` gem, allowing
6
- # dynamic group assignment backed by in-memory data structures.
7
- #
8
- # @example setup the group service for an rspec test suite
9
- # config.before(:suite) do
10
- # ::User.group_service = TestHydraGroupService.new
11
- # end
12
- #
13
- # @example adding a user to a group
14
- # ::User.group_service.add(user: my_user, groups: ['a_group'])
15
- #
16
- # @example clearing the user -> group map
17
- # ::User.group_service.clear
18
- #
19
- # @see Hydra::User.group_service
20
- class TestHydraGroupService
21
- ##
22
- # @param group_map [Hash{String, Array<String>}] map user keys to group names
23
- def initialize(group_map: {})
24
- @group_map = group_map
25
- end
26
-
27
- ##
28
- # @param user [::User]
29
- # @param groups [Array<String>, String]
30
- #
31
- # @return [void]
32
- def add(user:, groups:)
33
- @group_map[user.user_key] = fetch_groups(user: user) + Array(groups)
34
- end
35
-
36
- ##
37
- # @return [void]
38
- def clear
39
- @group_map = {}
40
- end
41
-
42
- ##
43
- # @param user [::User]
44
- #
45
- # @return [Array<String>]
46
- def fetch_groups(user:)
47
- @group_map.fetch(user.user_key) { [] }
48
- end
49
-
50
- ##
51
- # @return [Array<String>] a list of all known group names
52
- def role_names
53
- @group_map.values.flatten.uniq
54
- end
55
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
- def batch_edit_fields
3
- # skipping based_near because it's a select2 field, which is hard to test via capybara
4
- [
5
- "creator", "contributor", "description", "keyword", "publisher", "date_created",
6
- "subject", "language", "identifier", "related_url"
7
- ]
8
- end
9
-
10
- def fill_in_batch_edit_fields_and_verify!
11
- batch_edit_fields.each do |field_id|
12
- within "#form_#{field_id}" do
13
- batch_edit_expand(field_id)
14
- page.find("##{expected_element_text}_#{field_id}") # Ensuring that the element is on the page before we fill it
15
- fill_in "#{expected_element_text}_#{field_id}", with: "NEW #{field_id}"
16
-
17
- find("##{field_id}_save").click
18
-
19
- ajax_wait(15)
20
- # This was `expect(page).to have_content 'Changes Saved'`, however in debugging,
21
- # the `have_content` check was ignoring the `within` scoping and finding
22
- # "Changes Saved" for other field areas
23
- find('.status', text: 'Changes Saved')
24
- end
25
- end
26
- end
27
-
28
- def batch_edit_expand(field)
29
- find("#expand_link_#{field}").click
30
- yield if block_given?
31
- end
32
-
33
- def ajax_wait(s)
34
- Timeout.timeout(s) do
35
- loop until page.evaluate_script("jQuery.active").zero?
36
- end
37
- end
@@ -1,15 +0,0 @@
1
- # frozen_string_literal: true
2
- # spec/support/features/session_helpers.rb
3
- module Features
4
- module SessionHelpers
5
- def sign_in(who = :user)
6
- logout
7
- user = who.is_a?(User) ? who : build(:user).tap(&:save!)
8
- visit new_user_session_path
9
- fill_in 'Email', with: user.email
10
- fill_in 'Password', with: user.password
11
- click_button 'Log in'
12
- expect(page).not_to have_text 'Invalid email or password.'
13
- end
14
- end
15
- end
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
- def ensure_deposit_available_for(user)
3
- template = create(:permission_template, with_admin_set: true, with_workflows: true)
4
- # Grant the user access to deposit into an admin set.
5
- create(:permission_template_access,
6
- :deposit,
7
- permission_template: template,
8
- agent_type: 'user',
9
- agent_id: user.user_key)
10
- end
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
- # spec/support/features.rb
3
- require File.expand_path('../features/session_helpers', __FILE__)
4
- require File.expand_path('../features/workflow', __FILE__)
5
- require File.expand_path('../features/batch_edit_actions', __FILE__)
6
- require File.expand_path('../selectors', __FILE__)
7
- require File.expand_path('../statistic_helper', __FILE__)
8
-
9
- RSpec.configure do |config|
10
- config.include Features::SessionHelpers, type: :feature
11
- end
@@ -1,15 +0,0 @@
1
- # frozen_string_literal: true
2
- module Hyrax
3
- module Test
4
- class FormWithValidations < Hyrax::Forms::ResourceForm
5
- property :title
6
-
7
- validates :title, presence: true
8
-
9
- # Added to comply with Hyrax::Forms::FailedSubmissionFormWrapper
10
- def permitted_params
11
- { title: [] }
12
- end
13
- end
14
- end
15
- end
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
- module InputSupport
3
- extend ActiveSupport::Concern
4
-
5
- include RSpec::Rails::HelperExampleGroup
6
-
7
- def input_for(object, attribute_name, options = {})
8
- helper.simple_form_for object, url: '' do |f|
9
- f.input attribute_name, options
10
- end
11
- end
12
- end
@@ -1,67 +0,0 @@
1
- # frozen_string_literal: true
2
- RSpec::Support.require_rspec_core "formatters/base_text_formatter"
3
- class LoggingFormatter < RSpec::Core::Formatters::ProgressFormatter
4
- RSpec::Core::Formatters.register self, :example_started, :example_passed, :dump_profile
5
- def initialize(output)
6
- @profile = []
7
- reset!
8
- ActiveSupport::Notifications.subscribe("http.ldp", method(:record_request))
9
- super
10
- end
11
-
12
- def record_request(*_unused, data)
13
- @request_count += 1
14
- @request_count_by_name[data[:name]] += 1
15
- end
16
-
17
- def example_passed(passed)
18
- super
19
- @profile << { description: passed.example.full_description,
20
- count: @request_count,
21
- location: passed.example.location,
22
- count_by_name: @request_count_by_name }
23
- end
24
-
25
- def example_started(_passed)
26
- reset!
27
- end
28
-
29
- def reset!
30
- @request_count = 0
31
- @request_count_by_name = { 'HEAD' => 0,
32
- 'GET' => 0,
33
- 'POST' => 0,
34
- 'DELETE' => 0,
35
- 'PUT' => 0,
36
- 'PATCH' => 0 }
37
- end
38
-
39
- def dump_profile(profile)
40
- dump_most_ldp_exampes(profile)
41
- output.puts ""
42
- dump_slowest_examples(profile)
43
- end
44
-
45
- private
46
-
47
- def dump_most_ldp_exampes(_prof)
48
- output.puts "Examples with the most LDP requests"
49
- top = @profile.sort_by { |hash| hash[:count] }.last(10)
50
- top.each do |hash|
51
- result = hash[:count_by_name].select { |_, v| v.positive? }
52
- next if result.empty?
53
- output.puts " #{hash[:description]}"
54
- output.puts " #{hash[:location]}"
55
- output.puts " Total LDP: #{hash[:count]} #{result}"
56
- end
57
- end
58
-
59
- def dump_slowest_examples(profile)
60
- output.puts "Slowest examples"
61
- profile.slowest_examples.each do |slowest_example|
62
- output.puts " #{slowest_example.full_description}"
63
- output.puts " #{slowest_example.location}"
64
- output.puts " #{slowest_example.execution_result.run_time} seconds"
65
- end
66
- end
67
- end
@@ -1,27 +0,0 @@
1
- # frozen_string_literal: true
2
- # RSpec matchers for API default JSON responses.
3
- # Creates a matcher like respond_forbidden or respond_not_found corresponding to each of the Api::V1.default_responses
4
- # Accepts optional overrides to the expected response body.
5
- # @example Override the description expected in the JSON body of a :forbidden response
6
- # expect(response).to respond_forbidden(description:"You can't create for that identity")
7
- ::Hyrax::API.default_responses.each_pair do |response_type, default_response_body|
8
- RSpec::Matchers.define "respond_#{response_type}".to_sym do |expectation_options|
9
- match do |response|
10
- @expected_response_body = expectation_options.nil? ? default_response_body : default_response_body.merge(expectation_options)
11
- expect(response.body).not_to be_empty
12
- json = JSON.parse(response.body)
13
- expect(response.code).to eq(@expected_response_body[:code].to_s)
14
- @expected_response_body.each_pair do |key, value|
15
- expect(json[key.to_s]).to eq(value.as_json)
16
- end
17
- end
18
-
19
- failure_message do |actual|
20
- "expected #{default_response_body[:code]} status code. Got #{actual.code} status code.\n" \
21
- "expected an Authentication Required response like this:\n" \
22
- " #{@expected_response_body.to_json} \ngot\n #{actual.body}\n" \
23
- "To override expectations about the response body, provide a Hash of overrides in " \
24
- "your call to :respond_#{response_type} "
25
- end
26
- end
27
- end
@@ -1,30 +0,0 @@
1
- # frozen_string_literal: true
2
- RSpec::Matchers.define :require_membership do
3
- match do |actual|
4
- actual&.require_membership?
5
- end
6
- end
7
-
8
- RSpec::Matchers.define :allow_multiple_membership do
9
- match do |actual|
10
- actual&.allow_multiple_membership?
11
- end
12
- end
13
-
14
- RSpec::Matchers.define :assign_visibility do
15
- match do |actual|
16
- actual&.assigns_visibility?
17
- end
18
- end
19
-
20
- RSpec::Matchers.define :assign_workflow do
21
- match do |actual|
22
- actual&.assigns_workflow?
23
- end
24
- end
25
-
26
- RSpec::Matchers.define :have_collections do
27
- match do |actual|
28
- actual&.collections&.any?
29
- end
30
- end
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec::Matchers.define :be_an_embargo_matching do |embargo_args|
4
- match do |embargo|
5
- (embargo.visibility_after_embargo == embargo_args[:after]) &&
6
- (embargo.visibility_during_embargo == embargo_args[:during]) &&
7
- embargo.embargo_release_date.to_s.start_with?(embargo_args[:release_date][0..9])
8
- end
9
- end
@@ -1,9 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec::Matchers.define :be_a_lease_matching do |lease_args|
4
- match do |lease|
5
- (lease.visibility_after_lease == lease_args[:after]) &&
6
- (lease.visibility_during_lease == lease_args[:during]) &&
7
- lease.lease_expiration_date.to_s.start_with?(lease_args[:release_date][0..9])
8
- end
9
- end
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
- module Hyrax::Matchers
3
- class MatchValkyrieIdsWithActiveFedoraIds < RSpec::Matchers::BuiltIn::ContainExactly
4
- def match_when_sorted?
5
- values_match?(safe_sort(expected), safe_sort(actual.map(&:id)))
6
- end
7
- end
8
-
9
- def match_valkyrie_ids_with_active_fedora_ids(expected_fedora_ids)
10
- MatchValkyrieIdsWithActiveFedoraIds.new(expected_fedora_ids)
11
- end
12
- end
@@ -1,34 +0,0 @@
1
- # frozen_string_literal: true
2
- RSpec::Matchers.define :have_file_set_members do |*expected_file_sets|
3
- match do |actual_work|
4
- actual_file_sets = Hyrax.custom_queries.find_child_file_sets(resource: actual_work)
5
-
6
- expect(actual_file_sets).to contain_exactly(*expected_file_sets)
7
- end
8
- end
9
-
10
- RSpec::Matchers.define :have_attached_files do |*expected_files|
11
- match do |actual_file_set|
12
- @actual_files = Hyrax.custom_queries.find_files(file_set: actual_file_set)
13
-
14
- (expected_files.empty? && @actual_files.any?) ||
15
- values_match?(expected_files, @actual_files)
16
- end
17
-
18
- failure_message_for_should do |actual_file_set|
19
- if expected_files.empty?
20
- "Expected #{actual_file_set} to have at least one file.\n" \
21
- "Found #{@actual_files}."
22
- else
23
- "Expected #{actual_file_set} to have files: #{expected_files}\n" \
24
- "Found #{@actual_files}."
25
- end
26
- end
27
- end
28
-
29
- RSpec::Matchers.define :be_a_resource_with_permissions do |*expected_permissions|
30
- match do |actual_resource|
31
- expect(Hyrax::AccessControlList.new(resource: actual_resource).permissions)
32
- .to include(*expected_permissions)
33
- end
34
- end
@@ -1,31 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- RSpec::Matchers.define :grant_permission do |acl_type|
4
- match do |permission|
5
- access_match = permission.access == acl_type.to_s
6
-
7
- agent_match =
8
- if user_id
9
- permission.type == 'person' &&
10
- permission.agent.first.id.include?(user_id.to_s)
11
- elsif group_id
12
- permission.type == 'group' &&
13
- permission.agent.first.id.include?(group_id.to_s)
14
- else
15
- true
16
- end
17
-
18
- target_match =
19
- if access_to_id
20
- permission.access_to_id == access_to_id.to_s
21
- else
22
- true
23
- end
24
-
25
- return access_match && agent_match && target_match
26
- end
27
-
28
- chain :on, :access_to_id
29
- chain :to_user, :user_id
30
- chain :to_group, :group_id
31
- end
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
- RSpec::Matchers.define :fail_redirect_and_flash do |path, flash_message|
3
- match do |response|
4
- expect(response.status).to eq 302
5
- expect(response).to redirect_to(path)
6
- expect(flash[:alert]).to eq flash_message
7
- end
8
- end
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
- module OptionalExample
3
- RSpec.configure do |config|
4
- config.after do |example|
5
- if example.metadata[:optional] && (RSpec::Core::Pending::PendingExampleFixedError === example.display_exception) # rubocop:disable Style/CaseEquality
6
- ex = example.display_exception
7
- example.display_exception = nil
8
- example.execution_result.pending_exception = ex
9
- end
10
- end
11
- end
12
-
13
- def optional(message)
14
- RSpec.current_example.metadata[:optional] = true
15
- pending(message)
16
- end
17
- end
data/spec/support/rake.rb DELETED
@@ -1,42 +0,0 @@
1
- # frozen_string_literal: true
2
- require 'rake'
3
-
4
- module RakeHelper
5
- def load_rake_environment(files)
6
- @rake = Rake::Application.new
7
- Rake.application = @rake
8
- Rake::Task.define_task(:environment)
9
- files.each { |file| load file }
10
- end
11
-
12
- def run_task(task, arg = nil)
13
- capture_stdout_stderr do
14
- @rake[task].invoke(arg)
15
- end
16
- end
17
-
18
- # saves original $stdout in variable
19
- # set $stdout as local instance of StringIO
20
- # yields to code execution
21
- # returns the local instance of StringIO
22
- # resets $stdout to original value
23
- def capture_stdout_stderr
24
- out = StringIO.new
25
- err = StringIO.new
26
- $stdout = out
27
- $stderr = err
28
- begin
29
- yield
30
- rescue SystemExit => e
31
- puts "error = #{e.inspect}"
32
- end
33
- "Output: #{out.string}\n Errors:#{err.string}"
34
- ensure
35
- $stdout = STDOUT
36
- $stdout = STDERR
37
- end
38
-
39
- RSpec.configure do |config|
40
- config.include RakeHelper
41
- end
42
- end