hyrax 3.0.0.pre.beta2 → 3.0.0.pre.beta3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (441) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +118 -181
  3. data/.gitignore +3 -0
  4. data/.regen +1 -0
  5. data/.rubocop_fixme.yml +1 -1
  6. data/README.md +11 -15
  7. data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
  8. data/app/actors/hyrax/actors/add_to_work_actor.rb +28 -5
  9. data/app/actors/hyrax/actors/apply_order_actor.rb +2 -2
  10. data/app/actors/hyrax/actors/attach_members_actor.rb +50 -28
  11. data/app/actors/hyrax/actors/base_actor.rb +17 -2
  12. data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +1 -1
  13. data/app/actors/hyrax/actors/collections_membership_actor.rb +2 -8
  14. data/app/actors/hyrax/actors/create_with_files_actor.rb +16 -6
  15. data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +2 -2
  16. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +2 -1
  17. data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +8 -6
  18. data/app/actors/hyrax/actors/environment.rb +8 -16
  19. data/app/actors/hyrax/actors/file_actor.rb +75 -13
  20. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +6 -8
  21. data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
  22. data/app/assets/javascripts/hyrax/collections.js +5 -4
  23. data/app/assets/javascripts/hyrax/nav_safety.js +4 -2
  24. data/app/assets/javascripts/hyrax/proxy_rights.js +8 -0
  25. data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +1 -15
  26. data/app/assets/stylesheets/hyrax/_collections.scss +1 -1
  27. data/app/assets/stylesheets/hyrax/_home-page.scss +6 -0
  28. data/app/assets/stylesheets/hyrax/_users.scss +11 -0
  29. data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
  30. data/app/controllers/concerns/hyrax/breadcrumbs.rb +2 -0
  31. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
  32. data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +2 -1
  33. data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +2 -1
  34. data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +2 -1
  35. data/app/controllers/hyrax/batch_edits_controller.rb +3 -3
  36. data/app/controllers/hyrax/dashboard/collections_controller.rb +16 -5
  37. data/app/controllers/hyrax/dashboard_controller.rb +9 -0
  38. data/app/controllers/hyrax/depositors_controller.rb +4 -6
  39. data/app/controllers/hyrax/downloads_controller.rb +1 -1
  40. data/app/controllers/hyrax/file_sets_controller.rb +3 -2
  41. data/app/controllers/hyrax/homepage_controller.rb +1 -1
  42. data/app/controllers/hyrax/my/works_controller.rb +2 -2
  43. data/app/controllers/hyrax/my_controller.rb +2 -2
  44. data/app/controllers/hyrax/permissions_controller.rb +1 -1
  45. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +1 -1
  46. data/app/controllers/hyrax/workflow_actions_controller.rb +1 -1
  47. data/app/forms/hyrax/forms/admin_set_form.rb +8 -0
  48. data/app/forms/hyrax/forms/batch_edit_form.rb +1 -1
  49. data/app/forms/hyrax/forms/collection_form.rb +34 -3
  50. data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
  51. data/app/forms/hyrax/forms/work_form.rb +34 -7
  52. data/app/forms/hyrax/forms/workflow_responsibility_form.rb +0 -4
  53. data/app/helpers/hyrax/hyrax_helper_behavior.rb +3 -4
  54. data/app/helpers/hyrax/iiif_helper.rb +8 -0
  55. data/app/indexers/hyrax/admin_set_indexer.rb +1 -1
  56. data/app/indexers/hyrax/basic_metadata_indexer.rb +1 -1
  57. data/app/indexers/hyrax/collection_indexer.rb +2 -2
  58. data/app/indexers/hyrax/file_set_indexer.rb +7 -0
  59. data/app/indexers/hyrax/indexes_workflow.rb +3 -5
  60. data/app/indexers/hyrax/valkyrie_indexers/base_indexer.rb +19 -0
  61. data/app/indexers/hyrax/work_indexer.rb +1 -1
  62. data/app/jobs/attach_files_to_work_job.rb +9 -1
  63. data/app/jobs/characterize_job.rb +20 -5
  64. data/app/jobs/import_url_job.rb +9 -16
  65. data/app/jobs/ingest_local_file_job.rb +4 -0
  66. data/app/jobs/visibility_copy_job.rb +3 -17
  67. data/app/models/admin_set.rb +5 -0
  68. data/app/models/concerns/hyrax/ability.rb +3 -3
  69. data/app/models/concerns/hyrax/basic_metadata.rb +6 -2
  70. data/app/models/concerns/hyrax/collection_behavior.rb +22 -12
  71. data/app/models/concerns/hyrax/collection_nesting.rb +1 -1
  72. data/app/models/concerns/hyrax/file_set/characterization.rb +8 -1
  73. data/app/models/concerns/hyrax/file_set/querying.rb +1 -1
  74. data/app/models/concerns/hyrax/file_set_behavior.rb +1 -1
  75. data/app/models/concerns/hyrax/human_readable_type.rb +2 -2
  76. data/app/models/concerns/hyrax/solr_document/characterization.rb +27 -23
  77. data/app/models/concerns/hyrax/solr_document/metadata.rb +37 -39
  78. data/app/models/concerns/hyrax/solr_document_behavior.rb +4 -8
  79. data/app/models/concerns/hyrax/virus_check.rb +20 -0
  80. data/app/models/concerns/hyrax/work_behavior.rb +3 -1
  81. data/app/models/file_download_stat.rb +2 -1
  82. data/app/models/hyrax/active_job_proxy.rb +43 -0
  83. data/app/models/hyrax/embargo.rb +21 -0
  84. data/app/models/hyrax/file_metadata.rb +109 -0
  85. data/app/models/hyrax/lease.rb +21 -0
  86. data/app/models/hyrax/permission_template.rb +8 -8
  87. data/app/models/hyrax/resource.rb +31 -0
  88. data/app/models/hyrax/statistic.rb +5 -1
  89. data/app/models/hyrax/uploaded_file.rb +0 -2
  90. data/app/models/hyrax/virus_scanner.rb +56 -0
  91. data/app/models/job_io_wrapper.rb +24 -9
  92. data/app/models/proxy_deposit_request.rb +1 -1
  93. data/app/models/solr_hit.rb +23 -0
  94. data/app/presenters/hyrax/admin_set_presenter.rb +1 -1
  95. data/app/presenters/hyrax/characterization_behavior.rb +2 -2
  96. data/app/presenters/hyrax/displays_image.rb +25 -7
  97. data/app/presenters/hyrax/file_set_presenter.rb +3 -3
  98. data/app/presenters/hyrax/member_presenter_factory.rb +9 -9
  99. data/app/presenters/hyrax/presenter_factory.rb +1 -4
  100. data/app/presenters/hyrax/trophy_presenter.rb +1 -1
  101. data/app/presenters/hyrax/work_show_presenter.rb +3 -3
  102. data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +1 -1
  103. data/app/search_builders/hyrax/catalog_search_builder.rb +1 -1
  104. data/app/search_builders/hyrax/collection_search_builder.rb +1 -1
  105. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +2 -2
  106. data/app/search_builders/hyrax/deposit_search_builder.rb +1 -1
  107. data/app/search_builders/hyrax/my/find_works_search_builder.rb +5 -9
  108. data/app/search_builders/hyrax/my/highlights_search_builder.rb +1 -3
  109. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +1 -1
  110. data/app/search_builders/hyrax/parent_collection_search_builder.rb +1 -1
  111. data/app/services/hyrax/adapters/nesting_index_adapter.rb +6 -6
  112. data/app/services/hyrax/admin_set_service.rb +3 -11
  113. data/app/services/hyrax/analytics.rb +6 -6
  114. data/app/services/hyrax/collection_types/permissions_service.rb +5 -5
  115. data/app/services/hyrax/collections/permissions_service.rb +2 -2
  116. data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +39 -0
  117. data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +39 -0
  118. data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +39 -0
  119. data/app/services/hyrax/custom_queries/wings.rb +34 -0
  120. data/app/services/hyrax/database_migrator.rb +1 -0
  121. data/app/services/hyrax/derivative_path.rb +1 -1
  122. data/app/services/hyrax/embargo_manager.rb +100 -0
  123. data/app/services/hyrax/file_set_csv_service.rb +2 -0
  124. data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
  125. data/app/services/hyrax/graph_exporter.rb +1 -1
  126. data/app/services/hyrax/lease_manager.rb +71 -0
  127. data/app/services/hyrax/persist_directly_contained_output_file_service.rb +1 -1
  128. data/app/services/hyrax/query_service.rb +0 -0
  129. data/app/services/hyrax/resource_visibility_propagator.rb +50 -0
  130. data/app/services/hyrax/solr_query_builder_service.rb +71 -0
  131. data/app/services/hyrax/solr_service.rb +144 -0
  132. data/app/services/hyrax/statistics/file_sets/by_format.rb +1 -1
  133. data/app/services/hyrax/statistics/term_query.rb +7 -12
  134. data/app/services/hyrax/statistics/works/by_resource_type.rb +1 -1
  135. data/app/services/hyrax/thumbnail_path_service.rb +4 -3
  136. data/app/services/hyrax/versioning_service.rb +74 -19
  137. data/app/services/hyrax/virus_checker_service.rb +52 -0
  138. data/app/services/hyrax/visibility_intention_applicator.rb +43 -0
  139. data/app/services/hyrax/visibility_map.rb +65 -0
  140. data/app/services/hyrax/visibility_propagator.rb +19 -0
  141. data/app/services/hyrax/visibility_reader.rb +43 -0
  142. data/app/services/hyrax/visibility_writer.rb +43 -0
  143. data/app/services/hyrax/work_query_service.rb +3 -3
  144. data/app/services/hyrax/workflow/deposited_notification.rb +1 -1
  145. data/app/services/hyrax/works/migration_service.rb +33 -0
  146. data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
  147. data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +2 -1
  148. data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
  149. data/app/views/hyrax/base/_attribute_rows.html.erb +2 -0
  150. data/app/views/hyrax/base/_attributes.html.erb +3 -3
  151. data/app/views/hyrax/base/_citations.html.erb +4 -4
  152. data/app/views/hyrax/base/_file_manager_actions.html.erb +2 -2
  153. data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +2 -2
  154. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +1 -1
  155. data/app/views/hyrax/base/_form_files.html.erb +11 -9
  156. data/app/views/hyrax/base/_form_member_of_collections.html.erb +1 -1
  157. data/app/views/hyrax/base/_form_permission.html.erb +1 -2
  158. data/app/views/hyrax/base/_form_progress.html.erb +2 -2
  159. data/app/views/hyrax/base/_form_share.html.erb +8 -11
  160. data/app/views/hyrax/base/_show_actions.html.erb +3 -3
  161. data/app/views/hyrax/base/_social_media.html.erb +0 -13
  162. data/app/views/hyrax/base/_work_button_row.html.erb +7 -7
  163. data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
  164. data/app/views/hyrax/base/file_manager.html.erb +2 -2
  165. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +5 -2
  166. data/app/views/hyrax/base/inspect_work.html.erb +13 -13
  167. data/app/views/hyrax/base/unauthorized.html.erb +4 -4
  168. data/app/views/hyrax/batch_edits/_check_all.html.erb +1 -1
  169. data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
  170. data/app/views/hyrax/batch_edits/edit.html.erb +11 -11
  171. data/app/views/hyrax/citations/work.html.erb +1 -1
  172. data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
  173. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +4 -4
  174. data/app/views/hyrax/dashboard/collections/_form.html.erb +6 -5
  175. data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +10 -10
  176. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +5 -5
  177. data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +1 -1
  178. data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +6 -6
  179. data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
  180. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +3 -3
  181. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +2 -3
  182. data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
  183. data/app/views/hyrax/dashboard/collections/edit.html.erb +2 -2
  184. data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
  185. data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +2 -0
  186. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +4 -1
  187. data/app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb +3 -0
  188. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +2 -0
  189. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +2 -0
  190. data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
  191. data/app/views/hyrax/dashboard/works/_list_works.html.erb +1 -1
  192. data/app/views/hyrax/depositors/_modal_proxy_deny.html.erb +14 -0
  193. data/app/views/hyrax/depositors/index.html.erb +3 -0
  194. data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
  195. data/app/views/hyrax/file_sets/_actions.html.erb +1 -1
  196. data/app/views/hyrax/file_sets/_asset_deleted_flash.html.erb +1 -1
  197. data/app/views/hyrax/file_sets/_asset_saved_flash.html.erb +5 -6
  198. data/app/views/hyrax/file_sets/_asset_updated_flash.html.erb +2 -1
  199. data/app/views/hyrax/file_sets/_descriptions.html.erb +2 -2
  200. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +3 -3
  201. data/app/views/hyrax/file_sets/_form.html.erb +1 -1
  202. data/app/views/hyrax/file_sets/_permission.html.erb +2 -1
  203. data/app/views/hyrax/file_sets/_permission_form.html.erb +9 -9
  204. data/app/views/hyrax/file_sets/_show_actions.html.erb +4 -4
  205. data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
  206. data/app/views/hyrax/file_sets/_versioning.html.erb +3 -3
  207. data/app/views/hyrax/file_sets/edit.html.erb +4 -3
  208. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
  209. data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
  210. data/app/views/hyrax/file_sets/proxy.html.erb +2 -2
  211. data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
  212. data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
  213. data/app/views/hyrax/my/collections/index.html.erb +1 -1
  214. data/app/views/hyrax/my/index.html.erb +1 -1
  215. data/app/views/hyrax/my/works/_default_group.html.erb +4 -4
  216. data/app/views/hyrax/my/works/_list_works.html.erb +3 -3
  217. data/app/views/hyrax/my/works/index.html.erb +1 -1
  218. data/app/views/hyrax/notifications/index.html.erb +1 -1
  219. data/app/views/hyrax/operations/index.html.erb +4 -4
  220. data/app/views/hyrax/pages/_form.html.erb +61 -60
  221. data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
  222. data/app/views/hyrax/single_use_links_viewer/single_use_error.html.erb +3 -7
  223. data/app/views/hyrax/static/mendeley.html.erb +2 -4
  224. data/app/views/hyrax/static/zotero.html.erb +2 -4
  225. data/app/views/hyrax/transfers/_received.html.erb +10 -10
  226. data/app/views/hyrax/transfers/_sent.html.erb +6 -6
  227. data/app/views/hyrax/uploads/_js_templates.html.erb +7 -7
  228. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +8 -8
  229. data/app/views/hyrax/users/_activity_log.html.erb +25 -22
  230. data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
  231. data/app/views/hyrax/users/_proxies.html.erb +1 -1
  232. data/app/views/hyrax/users/_search_form.html.erb +3 -3
  233. data/app/views/hyrax/users/_vitals.html.erb +1 -1
  234. data/app/views/hyrax/users/index.html.erb +6 -6
  235. data/app/views/records/edit_fields/_abstract.html.erb +5 -0
  236. data/app/views/records/edit_fields/_access_right.html.erb +5 -0
  237. data/app/views/records/edit_fields/_alt_title.html.erb +3 -0
  238. data/app/views/records/edit_fields/_title.html.erb +1 -0
  239. data/app/views/records/show_fields/_based_near.html.erb +1 -1
  240. data/app/views/records/show_fields/_creator.html.erb +1 -1
  241. data/app/views/records/show_fields/_keyword.html.erb +1 -1
  242. data/app/views/records/show_fields/_language.html.erb +1 -1
  243. data/app/views/records/show_fields/_publisher.html.erb +1 -1
  244. data/app/views/records/show_fields/_resource_type.html.erb +1 -1
  245. data/app/views/records/show_fields/_subject.html.erb +1 -1
  246. data/config/initializers/indexing_adapter_initializer.rb +16 -0
  247. data/config/initializers/samvera-nesting_indexer_initializer.rb +3 -3
  248. data/config/locales/hyrax.de.yml +303 -24
  249. data/config/locales/hyrax.en.yml +279 -0
  250. data/config/locales/hyrax.es.yml +284 -5
  251. data/config/locales/hyrax.fr.yml +280 -1
  252. data/config/locales/hyrax.it.yml +279 -0
  253. data/config/locales/hyrax.pt-BR.yml +279 -0
  254. data/config/locales/hyrax.zh.yml +279 -0
  255. data/hyrax.gemspec +10 -11
  256. data/lib/generators/hyrax/config_generator.rb +6 -0
  257. data/lib/generators/hyrax/install_generator.rb +5 -0
  258. data/lib/generators/hyrax/riiif_generator.rb +2 -2
  259. data/lib/generators/hyrax/templates/catalog_controller.rb +71 -71
  260. data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
  261. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +11 -1
  262. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +3 -3
  263. data/lib/generators/hyrax/templates/config/solr_wrapper_valkyrie_test.yml +7 -0
  264. data/lib/generators/hyrax/templates/config/valkyrie_index.yml +12 -0
  265. data/lib/generators/hyrax/templates/package.json +17 -0
  266. data/lib/generators/hyrax/templates/uv-config.json +3 -0
  267. data/lib/generators/hyrax/templates/uv.html +87 -0
  268. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +0 -1
  269. data/lib/hyrax.rb +17 -1
  270. data/lib/hyrax/configuration.rb +34 -20
  271. data/lib/hyrax/engine.rb +12 -10
  272. data/lib/hyrax/errors.rb +4 -0
  273. data/lib/hyrax/transactions/container.rb +13 -0
  274. data/lib/hyrax/transactions/create_work.rb +11 -0
  275. data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +32 -0
  276. data/lib/hyrax/transactions/steps/apply_permission_template.rb +2 -1
  277. data/lib/hyrax/transactions/steps/apply_visibility.rb +39 -0
  278. data/lib/hyrax/version.rb +1 -1
  279. data/lib/tasks/migrate.rake +6 -0
  280. data/lib/tasks/universal_viewer.rake +15 -0
  281. data/lib/valkyrie/indexing/solr/indexing_adapter.rb +102 -0
  282. data/lib/valkyrie/indexing_adapter.rb +29 -0
  283. data/lib/wings.rb +13 -4
  284. data/lib/wings/active_fedora_converter.rb +129 -15
  285. data/lib/wings/converter_value_mapper.rb +111 -0
  286. data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +27 -0
  287. data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +27 -0
  288. data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +172 -0
  289. data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +30 -0
  290. data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +30 -0
  291. data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +59 -0
  292. data/lib/wings/hydra/works/services/add_file_metadata_to_file_set.rb +113 -0
  293. data/lib/wings/model_transformer.rb +172 -47
  294. data/lib/wings/models/concerns/collection_behavior.rb +38 -0
  295. data/lib/wings/models/multi_checksum.rb +18 -0
  296. data/lib/wings/services/file_metadata_builder.rb +81 -0
  297. data/lib/wings/services/id_converter_service.rb +14 -0
  298. data/lib/wings/{value_mapper.rb → transformer_value_mapper.rb} +24 -5
  299. data/lib/wings/valkyrie/persister.rb +47 -24
  300. data/lib/wings/valkyrie/query_service.rb +141 -6
  301. data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
  302. data/spec/abilities/proxies_and_transfer_abilities_spec.rb +50 -10
  303. data/spec/actors/hyrax/actors/active_fedora_to_valkyrie_spec.rb +70 -0
  304. data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +55 -10
  305. data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +14 -0
  306. data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +22 -30
  307. data/spec/actors/hyrax/actors/file_actor_spec.rb +200 -84
  308. data/spec/actors/hyrax/actors/file_set_actor_spec.rb +1 -1
  309. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +2 -6
  310. data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +1 -1
  311. data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +1 -1
  312. data/spec/actors/hyrax/actors/valkyrie_to_active_fedora_spec.rb +70 -0
  313. data/spec/controllers/catalog_controller_spec.rb +2 -2
  314. data/spec/controllers/hyrax/api/items_controller_spec.rb +9 -15
  315. data/spec/controllers/hyrax/collections_controller_spec.rb +6 -2
  316. data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +53 -4
  317. data/spec/controllers/hyrax/depositors_controller_spec.rb +3 -3
  318. data/spec/controllers/hyrax/downloads_controller_spec.rb +11 -2
  319. data/spec/controllers/hyrax/file_sets_controller_spec.rb +40 -2
  320. data/spec/controllers/hyrax/generic_works_controller_spec.rb +13 -3
  321. data/spec/controllers/hyrax/homepage_controller_spec.rb +3 -3
  322. data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +1 -2
  323. data/spec/factories/admin_sets_lw.rb +1 -1
  324. data/spec/factories/collections.rb +1 -1
  325. data/spec/factories/hyrax_embargo.rb +16 -0
  326. data/spec/factories/hyrax_lease.rb +16 -0
  327. data/spec/factories/hyrax_resource.rb +16 -0
  328. data/spec/factory_tests/adminsets_factory_spec.rb +4 -4
  329. data/spec/factory_tests/collections_factory_spec.rb +3 -3
  330. data/spec/features/actor_stack_spec.rb +64 -0
  331. data/spec/features/batch_create_spec.rb +1 -2
  332. data/spec/features/collection_multi_membership_spec.rb +1 -0
  333. data/spec/features/collection_spec.rb +2 -2
  334. data/spec/features/collection_type_spec.rb +1 -0
  335. data/spec/features/create_work_spec.rb +15 -6
  336. data/spec/features/dashboard/collection_spec.rb +103 -14
  337. data/spec/features/edit_content_block_admin_spec.rb +3 -3
  338. data/spec/features/edit_pages_admin.spec.rb +62 -0
  339. data/spec/features/proxy_spec.rb +21 -0
  340. data/spec/features/static_pages_spec.rb +1 -1
  341. data/spec/features/work_show_spec.rb +7 -3
  342. data/spec/fixtures/sample-file.pdf +0 -0
  343. data/spec/fixtures/updated-file.txt +1 -0
  344. data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +5 -2
  345. data/spec/forms/hyrax/forms/collection_form_spec.rb +5 -2
  346. data/spec/forms/hyrax/forms/work_form_spec.rb +18 -5
  347. data/spec/forms/hyrax/generic_work_form_spec.rb +4 -4
  348. data/spec/helpers/hyrax/collections_helper_spec.rb +8 -8
  349. data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +7 -8
  350. data/spec/helpers/hyrax/iiif_helper_spec.rb +16 -0
  351. data/spec/helpers/hyrax_helper_spec.rb +4 -4
  352. data/spec/hyrax/transactions/create_work_spec.rb +68 -0
  353. data/spec/hyrax/transactions/steps/apply_collection_permission_template_spec.rb +59 -0
  354. data/spec/hyrax/transactions/steps/apply_visibility_spec.rb +82 -0
  355. data/spec/indexers/hyrax/admin_set_indexer_spec.rb +15 -0
  356. data/spec/indexers/hyrax/file_set_indexer_spec.rb +26 -1
  357. data/spec/indexers/hyrax/valkyrie_indexers/base_indexer_spec.rb +16 -0
  358. data/spec/jobs/import_url_job_spec.rb +49 -2
  359. data/spec/jobs/ingest_local_file_job_spec.rb +25 -1
  360. data/spec/jobs/visibility_copy_job_spec.rb +46 -0
  361. data/spec/lib/hyrax/configuration_spec.rb +17 -11
  362. data/spec/lib/hyrax/redis_event_store_spec.rb +1 -1
  363. data/spec/matcher_tests/match_valkyrie_ids_with_af_ids_spec.rb +40 -0
  364. data/spec/models/file_set_spec.rb +4 -3
  365. data/spec/models/hyrax/embargo_spec.rb +27 -0
  366. data/spec/models/hyrax/file_metadata_spec.rb +110 -0
  367. data/spec/models/hyrax/lease_spec.rb +25 -0
  368. data/spec/models/hyrax/permission_template_spec.rb +2 -2
  369. data/spec/models/hyrax/resource_spec.rb +60 -0
  370. data/spec/models/hyrax/virus_scanner_spec.rb +50 -0
  371. data/spec/models/job_io_wrapper_spec.rb +63 -0
  372. data/spec/models/solr_hit_spec.rb +9 -0
  373. data/spec/models/user_spec.rb +1 -1
  374. data/spec/presenters/hyrax/file_set_presenter_spec.rb +11 -7
  375. data/spec/presenters/hyrax/presenter_factory_spec.rb +2 -2
  376. data/spec/presenters/hyrax/work_show_presenter_spec.rb +1 -1
  377. data/spec/requests/riiif_spec.rb +2 -2
  378. data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +3 -3
  379. data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +5 -6
  380. data/spec/services/hyrax/admin_set_service_spec.rb +2 -2
  381. data/spec/services/hyrax/custom_queries/navigators/child_collections_navigator_spec.rb +41 -0
  382. data/spec/services/hyrax/custom_queries/navigators/child_filesets_navigator_spec.rb +41 -0
  383. data/spec/services/hyrax/custom_queries/navigators/child_works_navigator_spec.rb +79 -0
  384. data/spec/services/hyrax/custom_queries/wings.rb +52 -0
  385. data/spec/services/hyrax/embargo_manager_spec.rb +123 -0
  386. data/spec/services/hyrax/embargo_service_spec.rb +2 -2
  387. data/spec/services/hyrax/file_set_visibility_propagator_spec.rb +59 -0
  388. data/spec/services/hyrax/resource_visibility_propagator_spec.rb +71 -0
  389. data/spec/services/hyrax/solr_query_builder_service_spec.rb +17 -0
  390. data/spec/services/hyrax/solr_service_spec.rb +218 -0
  391. data/spec/services/hyrax/thumbnail_path_service_spec.rb +6 -0
  392. data/spec/services/hyrax/versioning_service_spec.rb +35 -15
  393. data/spec/services/hyrax/visibility_intention_applicator_spec.rb +69 -0
  394. data/spec/services/hyrax/visibility_reader_spec.rb +38 -0
  395. data/spec/services/hyrax/visibility_writer_spec.rb +47 -0
  396. data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -13
  397. data/spec/services/hyrax/works/migration_service_spec.rb +29 -0
  398. data/spec/spec_helper.rb +24 -23
  399. data/spec/support/clean_solr.rb +7 -0
  400. data/spec/support/create_for_repository.rb +25 -0
  401. data/spec/support/factory_helpers.rb +3 -1
  402. data/spec/support/fakes/fake_actor.rb +21 -0
  403. data/spec/support/matchers/embargo.rb +9 -0
  404. data/spec/support/matchers/lease.rb +9 -0
  405. data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +11 -0
  406. data/spec/support/matchers/permission.rb +22 -0
  407. data/spec/support/valkyrie_indexing.rb +1 -0
  408. data/spec/test_app_templates/Gemfile.extra +0 -2
  409. data/spec/test_app_templates/lib/generators/test_app_generator.rb +5 -6
  410. data/spec/valkyrie/indexing/solr/indexing_adapter_spec.rb +41 -0
  411. data/spec/valkyrie/indexing_adapter_spec.rb +25 -0
  412. data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +1 -1
  413. data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +0 -1
  414. data/spec/views/hyrax/base/show.html.erb_spec.rb +2 -2
  415. data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
  416. data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +39 -0
  417. data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
  418. data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +1 -0
  419. data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +2 -2
  420. data/spec/views/records/edit_fields/_alt_title.html.erb_spec.rb +26 -0
  421. data/spec/views/records/edit_fields/_title.html.erb_spec.rb +24 -0
  422. data/spec/wings/active_fedora_converter_spec.rb +136 -1
  423. data/spec/wings/converter_value_mapper_spec.rb +23 -0
  424. data/spec/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior_spec.rb +41 -0
  425. data/spec/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior_spec.rb +19 -0
  426. data/spec/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior_spec.rb +442 -0
  427. data/spec/wings/hydra/works/models/concerns/collection_valkyrie_behavior_spec.rb +22 -0
  428. data/spec/wings/hydra/works/models/concerns/file_set_valkyrie_behavior_spec.rb +90 -0
  429. data/spec/wings/hydra/works/models/concerns/work_valkyrie_behavior_spec.rb +218 -0
  430. data/spec/wings/model_transformer_spec.rb +167 -112
  431. data/spec/wings/models/concerns/collection_behavior_spec.rb +120 -0
  432. data/spec/wings/services/file_metadata_builder_spec.rb +39 -0
  433. data/spec/wings/services/id_converter_service_spec.rb +24 -0
  434. data/spec/wings/{value_mapper_spec.rb → transformer_value_mapper_spec.rb} +2 -2
  435. data/spec/wings/valkyrie/persister_spec.rb +544 -53
  436. data/spec/wings/valkyrie/query_service_spec.rb +381 -4
  437. data/spec/wings_helper.rb +4 -0
  438. data/template.rb +1 -1
  439. metadata +205 -49
  440. data/.travis.yml +0 -36
  441. data/lib/wings/resource_factory.rb +0 -8
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+ require 'spec_helper'
3
+ require 'wings/converter_value_mapper'
4
+
5
+ RSpec.describe Wings::ConverterValueMapper do
6
+ subject(:mapper) { described_class.for(value) }
7
+ let(:value) { 'a value' }
8
+
9
+ describe '.for' do
10
+ it 'returns a value mapper' do
11
+ expect(described_class.for(value)).to be_a described_class
12
+ end
13
+ end
14
+
15
+ describe '.result' do
16
+ it 'returns the value by default' do
17
+ expect(mapper.result).to eq value
18
+ end
19
+
20
+ context 'with a NestedResourceArray value'
21
+ context 'with a NestedResource value'
22
+ end
23
+ end
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+ require 'wings_helper'
3
+ require 'wings/model_transformer'
4
+
5
+ RSpec.describe Wings::Pcdm::CollectionValkyrieBehavior, :clean_repo do
6
+ subject(:factory) { Wings::ModelTransformer.new(pcdm_object: pcdm_object) }
7
+
8
+ let(:collection1) { build(:public_collection_lw, id: 'col1', title: ['Collection 1']) }
9
+ let(:collection2) { build(:public_collection_lw, id: 'col2', title: ['Collection 2']) }
10
+ let(:collection3) { build(:public_collection_lw, id: 'col3', title: ['Collection 3']) }
11
+ let(:pcdm_object) { collection1 }
12
+ let(:resource) { subject.build }
13
+
14
+ before do
15
+ collection2.member_of_collections = [collection1]
16
+ collection2.save!
17
+ collection3.member_of_collections = [collection1]
18
+ collection3.save!
19
+ end
20
+
21
+ describe 'type check methods on valkyrie resource' do
22
+ it { expect(resource.pcdm_collection?).to be true }
23
+ it { expect(resource.pcdm_object?).to be false }
24
+ end
25
+
26
+ describe '#collection_ids' do
27
+ it { expect(resource.collection_ids).to eq([collection2.id, collection3.id]) }
28
+ end
29
+
30
+ describe '#collections' do
31
+ it { expect(resource.collections).to eq([collection2, collection3]) }
32
+ end
33
+
34
+ describe '#ordered_collection_ids' do
35
+ it { expect(resource.ordered_collection_ids).to eq([collection2.id, collection3.id]) }
36
+ end
37
+
38
+ describe '#ordered_collections' do
39
+ it { expect(resource.ordered_collections).to eq([collection2, collection3]) }
40
+ end
41
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+ require 'wings_helper'
3
+ require 'wings/model_transformer'
4
+
5
+ RSpec.describe Wings::Pcdm::ObjectValkyrieBehavior, :clean_repo do
6
+ subject(:factory) { Wings::ModelTransformer.new(pcdm_object: pcdm_object) }
7
+
8
+ let(:work1) { build(:work, id: 'wk1', title: ['Work 1']) }
9
+
10
+ describe 'type check methods on valkyrie resource' do
11
+ let(:pcdm_object) { work1 }
12
+ let(:resource) { subject.build }
13
+
14
+ it 'returns appropriate response from type check methods' do
15
+ expect(resource.pcdm_collection?).to be false
16
+ expect(resource.pcdm_object?).to be true
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,442 @@
1
+ # frozen_string_literal: true
2
+ require 'wings_helper'
3
+ require 'wings/model_transformer'
4
+
5
+ RSpec.describe Wings::Pcdm::PcdmValkyrieBehavior, :clean_repo do
6
+ subject(:factory) { Wings::ModelTransformer.new(pcdm_object: pcdm_object) }
7
+
8
+ let(:resource) { subject.build }
9
+
10
+ let(:collection1) { build(:public_collection_lw, id: 'col1', title: ['Collection 1']) }
11
+ let(:collection2) { build(:public_collection_lw, id: 'col2', title: ['Collection 2']) }
12
+ let(:collection3) { build(:public_collection_lw, id: 'col3', title: ['Collection 3']) }
13
+ let(:work1) { build(:work, id: 'wk1', title: ['Work 1']) }
14
+ let(:work2) { build(:work, id: 'wk2', title: ['Work 2']) }
15
+ let(:work3) { build(:work, id: 'wk3', title: ['Work 3']) }
16
+ let(:fileset1) { build(:file_set, id: 'fs1', title: ['Fileset 1']) }
17
+ let(:fileset2) { build(:file_set, id: 'fs2', title: ['Fileset 2']) }
18
+
19
+ describe '#parent_collections' do
20
+ let(:pcdm_object) { collection1 }
21
+ let(:child_collection_resource) { resource }
22
+
23
+ before do
24
+ collection1.member_of_collections = [collection2, collection3]
25
+ collection1.save!
26
+ end
27
+
28
+ context 'when valkyrie resources requested' do
29
+ it 'returns parent collections as valkyrie resources through pcdm_valkyrie_behavior' do
30
+ resources = child_collection_resource.parent_collections(valkyrie: true)
31
+ expect(resources.map(&:pcdm_collection?)).to all(be true)
32
+ expect(resources.map(&:id)).to match_valkyrie_ids_with_active_fedora_ids([collection2.id, collection3.id])
33
+ end
34
+ end
35
+ context 'when active fedora objects requested' do
36
+ it 'returns parent collections as active fedora objects through pcdm_valkyrie_behavior' do
37
+ af_objects = child_collection_resource.parent_collections(valkyrie: false)
38
+ expect(af_objects.map(&:pcdm_collection?)).to all(be true)
39
+ expect(af_objects.map(&:id)).to match_array [collection2.id, collection3.id]
40
+ end
41
+ end
42
+ context 'when return type is not specified' do
43
+ it 'returns parent collections as active fedora objects through pcdm_valkyrie_behavior' do
44
+ af_objects = child_collection_resource.parent_collections
45
+ expect(af_objects.map(&:pcdm_collection?)).to all(be true)
46
+ expect(af_objects.map(&:id)).to match_array [collection2.id, collection3.id]
47
+ end
48
+ end
49
+ end
50
+
51
+ describe '#parent_collection_ids' do
52
+ let(:pcdm_object) { collection1 }
53
+ let(:child_collection_resource) { resource }
54
+
55
+ before do
56
+ collection1.member_of_collections = [collection2, collection3]
57
+ collection1.save!
58
+ end
59
+
60
+ context 'when valkyrie resources requested' do
61
+ it 'returns ids of parent collections as valkyrie resources through pcdm_valkyrie_behavior' do
62
+ resource_ids = child_collection_resource.parent_collection_ids(valkyrie: true)
63
+ expect(resource_ids).to match_valkyrie_ids_with_active_fedora_ids([collection2.id, collection3.id])
64
+ end
65
+ end
66
+ context 'when active fedora objects requested' do
67
+ it 'returns ids of parent collections as active fedora objects through pcdm_valkyrie_behavior' do
68
+ af_object_ids = child_collection_resource.parent_collection_ids(valkyrie: false)
69
+ expect(af_object_ids.to_a).to match_array [collection2.id, collection3.id]
70
+ end
71
+ end
72
+ context 'when return type is not specified' do
73
+ it 'returns ids of parent collections as active fedora objects through pcdm_valkyrie_behavior' do
74
+ af_object_ids = child_collection_resource.parent_collection_ids
75
+ expect(af_object_ids.to_a).to match_array [collection2.id, collection3.id]
76
+ end
77
+ end
78
+ end
79
+
80
+ describe '#members' do
81
+ let(:pcdm_object) { work1 }
82
+ let(:parent_work_resource) { resource }
83
+
84
+ before do
85
+ work1.ordered_members = [work2, work3, fileset1, fileset2]
86
+ work1.save!
87
+ end
88
+
89
+ context 'when valkyrie resources requested' do
90
+ it 'returns parent collections as valkyrie resources through pcdm_valkyrie_behavior' do
91
+ resources = parent_work_resource.members(valkyrie: true)
92
+ expect(resources.map(&:id)).to match_valkyrie_ids_with_active_fedora_ids([work2.id, work3.id, fileset1.id, fileset2.id])
93
+ end
94
+ end
95
+ context 'when active fedora objects requested' do
96
+ it 'returns parent collections as active fedora objects through pcdm_valkyrie_behavior' do
97
+ af_objects = parent_work_resource.members(valkyrie: false)
98
+ expect(af_objects.map(&:id)).to match_array [work2.id, work3.id, fileset1.id, fileset2.id]
99
+ end
100
+ end
101
+ context 'when return type is not specified' do
102
+ it 'returns parent collections as active fedora objects through pcdm_valkyrie_behavior' do
103
+ af_objects = parent_work_resource.members
104
+ expect(af_objects.map(&:id)).to match_array [work2.id, work3.id, fileset1.id, fileset2.id]
105
+ end
106
+ end
107
+ end
108
+
109
+ describe '#member_ids' do
110
+ let(:pcdm_object) { work1 }
111
+ let(:parent_work_resource) { resource }
112
+
113
+ before do
114
+ work1.ordered_members = [work2, work3, fileset1, fileset2]
115
+ work1.save!
116
+ end
117
+
118
+ # TODO: For now, the tests confirm that the correct members are returned and that they all have valkyrie ids.
119
+ # This is because #member_ids comes from the attribute definition and can't receive a `valkyrie:` parameter.
120
+ context 'when valkyrie resources requested' do
121
+ it 'returns ids of parent collections as valkyrie resources through pcdm_valkyrie_behavior' do
122
+ resource_ids = parent_work_resource.member_ids
123
+ expect(resource_ids).to match_valkyrie_ids_with_active_fedora_ids([work2.id, work3.id, fileset1.id, fileset2.id])
124
+ end
125
+ end
126
+ # context 'when valkyrie resources requested' do
127
+ # it 'returns ids of parent collections as valkyrie resources through pcdm_valkyrie_behavior' do
128
+ # resource_ids = parent_work_resource.member_ids(valkyrie: true)
129
+ # expect(resource_ids).to match_valkyrie_ids_with_active_fedora_ids([work2.id, work3.id, fileset1.id, fileset2.id])
130
+ # end
131
+ # end
132
+ # context 'when active fedora objects requested' do
133
+ # it 'returns ids of parent collections as active fedora objects through pcdm_valkyrie_behavior' do
134
+ # af_object_ids = parent_work_resource.member_ids(valkyrie: false)
135
+ # expect(af_object_ids.to_a).to match_array [work2.id, work3.id, fileset1.id, fileset2.id]
136
+ # end
137
+ # end
138
+ # context 'when return type is not specified' do
139
+ # it 'returns ids of parent collections as active fedora objects through pcdm_valkyrie_behavior' do
140
+ # af_object_ids = parent_work_resource.member_ids
141
+ # expect(af_object_ids.to_a).to match_array [work2.id, work3.id, fileset1.id, fileset2.id]
142
+ # end
143
+ # end
144
+ end
145
+
146
+ describe '#child_objects' do
147
+ let(:pcdm_object) { collection1 }
148
+
149
+ before do
150
+ collection1.ordered_members = [work1, work2, collection2, collection3]
151
+ collection1.save!
152
+ end
153
+
154
+ context 'when valkyrie resources requested' do
155
+ it 'returns works only as valkyrie resources through pcdm_valkyrie_behavior' do
156
+ resources = resource.child_objects(valkyrie: true)
157
+ expect(resources.size).to eq 2
158
+ expect(resources.map(&:pcdm_object?)).to all(be true)
159
+ expect(resources.map(&:id)).to match_valkyrie_ids_with_active_fedora_ids([work1.id, work2.id])
160
+ end
161
+ end
162
+ context 'when active fedora objects requested' do
163
+ it 'returns works only as active fedora objects through pcdm_valkyrie_behavior' do
164
+ af_objects = resource.child_objects(valkyrie: false)
165
+ expect(af_objects.size).to eq 2
166
+ expect(af_objects.map(&:pcdm_object?)).to all(be true)
167
+ expect(af_objects.map(&:id)).to match_array [work1.id, work2.id]
168
+ end
169
+ end
170
+ context 'when return type is not specified' do
171
+ it 'returns works only as active fedora objects through pcdm_valkyrie_behavior' do
172
+ af_objects = resource.child_objects
173
+ expect(af_objects.size).to eq 2
174
+ expect(af_objects.map(&:pcdm_object?)).to all(be true)
175
+ expect(af_objects.map(&:id)).to match_array [work1.id, work2.id]
176
+ end
177
+ end
178
+ end
179
+
180
+ describe '#object_ids' do
181
+ let(:pcdm_object) { collection1 }
182
+
183
+ before do
184
+ collection1.ordered_members = [work1, work2, collection2, collection3]
185
+ collection1.save!
186
+ end
187
+
188
+ context 'when valkyrie resources requested' do
189
+ it 'returns ids of works only as valkyrie resources through pcdm_valkyrie_behavior' do
190
+ resource_ids = resource.child_object_ids(valkyrie: true)
191
+ expect(resource_ids.size).to eq 2
192
+ expect(resource_ids).to match_valkyrie_ids_with_active_fedora_ids([work1.id, work2.id])
193
+ end
194
+ end
195
+ context 'when active fedora objects requested' do
196
+ it 'returns ids of works only as active fedora objects through pcdm_valkyrie_behavior' do
197
+ af_object_ids = resource.child_object_ids(valkyrie: false)
198
+ expect(af_object_ids.size).to eq 2
199
+ expect(af_object_ids.to_a).to match_array [work1.id, work2.id]
200
+ end
201
+ end
202
+ context 'when return type is not specified' do
203
+ it 'returns ids of works only as active fedora objects through pcdm_valkyrie_behavior' do
204
+ af_object_ids = resource.child_object_ids
205
+ expect(af_object_ids.size).to eq 2
206
+ expect(af_object_ids.to_a).to match_array [work1.id, work2.id]
207
+ end
208
+ end
209
+ end
210
+
211
+ describe '#member_of' do
212
+ let(:pcdm_object) { work3 }
213
+ let(:child_resource) { resource }
214
+
215
+ before do
216
+ work1.ordered_members = [work3, fileset1]
217
+ work2.ordered_members = [work3, fileset2]
218
+ work1.save!
219
+ work2.save!
220
+ end
221
+
222
+ context 'when valkyrie resources requested' do
223
+ it 'returns works only as valkyrie resources through pcdm_valkyrie_behavior' do
224
+ resources = child_resource.member_of(valkyrie: true)
225
+ expect(resources.size).to eq 2
226
+ expect(resources.map(&:pcdm_object?)).to all(be true)
227
+ expect(resources.map(&:id)).to match_valkyrie_ids_with_active_fedora_ids([work1.id, work2.id])
228
+ end
229
+ end
230
+ context 'when active fedora objects requested' do
231
+ it 'returns works only as active fedora objects through pcdm_valkyrie_behavior' do
232
+ af_objects = child_resource.member_of(valkyrie: false)
233
+ expect(af_objects.size).to eq 2
234
+ expect(af_objects.map(&:pcdm_object?)).to all(be true)
235
+ expect(af_objects.map(&:id)).to match_array [work1.id, work2.id]
236
+ end
237
+ end
238
+ context 'when return type is not specified' do
239
+ it 'returns works only as active fedora objects through pcdm_valkyrie_behavior' do
240
+ af_objects = child_resource.member_of
241
+ expect(af_objects.size).to eq 2
242
+ expect(af_objects.map(&:pcdm_object?)).to all(be true)
243
+ expect(af_objects.map(&:id)).to match_array [work1.id, work2.id]
244
+ end
245
+ end
246
+ end
247
+
248
+ describe '#in_collections' do
249
+ # TODO: This test is misleading. Hyrax does not use the members relationship for tracking members of a collection.
250
+ # It uses the member_of_collections relationship. Use of members here is only to test the in_collections
251
+ # method from PCDM which is used in 2 places in Hyrax. It is likely that the 2 places this is used never gets
252
+ # any collections and use of this method is a no-op. But that needs to be confirmed before this can be deprecated.
253
+ let(:pcdm_object) { work1 }
254
+ let(:child_resource) { resource }
255
+
256
+ before do
257
+ collection1.ordered_members = [work1, collection3]
258
+ collection2.ordered_members = [work1, work2]
259
+ work3.ordered_members = [work1]
260
+ collection1.save!
261
+ collection2.save!
262
+ end
263
+
264
+ context 'when valkyrie resources requested' do
265
+ it 'returns collections only as valkyrie resources through pcdm_valkyrie_behavior' do
266
+ resources = child_resource.in_collections(valkyrie: true)
267
+ expect(resources.size).to eq 2
268
+ expect(resources.map(&:pcdm_collection?)).to all(be true)
269
+ expect(resources.map(&:id)).to match_valkyrie_ids_with_active_fedora_ids([collection1.id, collection2.id])
270
+ end
271
+ end
272
+ context 'when active fedora objects requested' do
273
+ it 'returns collections only as active fedora objects through pcdm_valkyrie_behavior' do
274
+ af_objects = child_resource.in_collections(valkyrie: false)
275
+ expect(af_objects.size).to eq 2
276
+ expect(af_objects.map(&:pcdm_collection?)).to all(be true)
277
+ expect(af_objects.map(&:id)).to match_array [collection1.id, collection2.id]
278
+ end
279
+ end
280
+ context 'when return type is not specified' do
281
+ it 'returns collections only as active fedora objects through pcdm_valkyrie_behavior' do
282
+ af_objects = child_resource.in_collections
283
+ expect(af_objects.size).to eq 2
284
+ expect(af_objects.map(&:pcdm_collection?)).to all(be true)
285
+ expect(af_objects.map(&:id)).to match_array [collection1.id, collection2.id]
286
+ end
287
+ end
288
+ end
289
+
290
+ describe '#in_collection_ids' do
291
+ # TODO: This test is misleading. Hyrax does not use the members relationship for tracking members of a collection.
292
+ # It uses the member_of_collections relationship. Use of members here is only to test the in_collection_ids
293
+ # method from PCDM which is used in 1 place in Hyrax. It is likely that the place this is used never gets
294
+ # any collections and use of this method is a no-op. But that needs to be confirmed before this can be deprecated.
295
+ let(:pcdm_object) { work1 }
296
+ let(:child_resource) { resource }
297
+
298
+ before do
299
+ collection1.ordered_members = [work1, collection3]
300
+ collection2.ordered_members = [work1, work2]
301
+ work3.ordered_members = [work1]
302
+ collection1.save!
303
+ collection2.save!
304
+ work3.save!
305
+ end
306
+
307
+ context 'when valkyrie resources requested' do
308
+ it 'returns collection ids only as valkyrie resource ids through pcdm_valkyrie_behavior' do
309
+ resource_ids = child_resource.in_collection_ids(valkyrie: true)
310
+ expect(resource_ids).to match_valkyrie_ids_with_active_fedora_ids([collection1.id, collection2.id])
311
+ end
312
+ end
313
+ context 'when active fedora objects requested' do
314
+ it 'returns collection ids only as active fedora object ids through pcdm_valkyrie_behavior' do
315
+ af_object_ids = child_resource.in_collection_ids(valkyrie: false)
316
+ expect(af_object_ids).to match_array [collection1.id, collection2.id]
317
+ end
318
+ end
319
+ context 'when return type is not specified' do
320
+ it 'returns collection ids only as active fedora object ids through pcdm_valkyrie_behavior' do
321
+ af_object_ids = child_resource.in_collection_ids
322
+ expect(af_object_ids).to match_array [collection1.id, collection2.id]
323
+ end
324
+ end
325
+ end
326
+
327
+ describe '#missing_method' do
328
+ let!(:pcdm_object) { collection1 }
329
+ it 'raises NoMethodError when neither the resource nor the active fedora object respond to the method' do
330
+ expect { resource.a_missing_method }.to raise_error NoMethodError
331
+ end
332
+ end
333
+
334
+ describe '#parent_works' do
335
+ let(:pcdm_object) { work3 }
336
+ let(:child_work_resource) { resource }
337
+
338
+ before do
339
+ work1.ordered_members = [work3]
340
+ work2.ordered_members = [work3]
341
+ work1.save!
342
+ work2.save!
343
+ end
344
+
345
+ context 'when valkyrie resources requested' do
346
+ it 'returns parent works as valkyrie resources through pcdm_valkyrie_behavior' do
347
+ resources = child_work_resource.parent_works(valkyrie: true)
348
+ expect(resources.map(&:work?)).to all(be true)
349
+ expect(resources.map(&:id)).to match_valkyrie_ids_with_active_fedora_ids([work1.id, work2.id])
350
+ end
351
+ end
352
+ context 'when active fedora objects requested' do
353
+ it 'returns parent works as fedora objects through pcdm_valkyrie_behavior' do
354
+ af_objects = child_work_resource.parent_works(valkyrie: false)
355
+ expect(af_objects.map(&:work?)).to all(be true)
356
+ expect(af_objects.map(&:id)).to match_array [work1.id, work2.id]
357
+ end
358
+ end
359
+ context 'when return type is not specified' do
360
+ it 'returns parent works as fedora objects through pcdm_valkyrie_behavior' do
361
+ af_objects = child_work_resource.parent_works
362
+ expect(af_objects.map(&:work?)).to all(be true)
363
+ expect(af_objects.map(&:id)).to match_array [work1.id, work2.id]
364
+ end
365
+ end
366
+ end
367
+
368
+ describe '#parent_work_ids' do
369
+ let(:pcdm_object) { work3 }
370
+ let(:child_work_resource) { resource }
371
+
372
+ before do
373
+ work1.ordered_members = [work3]
374
+ work2.ordered_members = [work3]
375
+ work1.save!
376
+ work2.save!
377
+ end
378
+
379
+ context 'when valkyrie resources requested' do
380
+ it 'returns parent works as valkyrie resources through pcdm_valkyrie_behavior' do
381
+ resource_ids = child_work_resource.parent_work_ids(valkyrie: true)
382
+ expect(resource_ids).to match_valkyrie_ids_with_active_fedora_ids([work1.id, work2.id])
383
+ end
384
+ end
385
+ context 'when active fedora objects requested' do
386
+ it 'returns parent works as fedora objects through pcdm_valkyrie_behavior' do
387
+ af_object_ids = child_work_resource.parent_work_ids(valkyrie: false)
388
+ expect(af_object_ids).to match_array [work1.id, work2.id]
389
+ end
390
+ end
391
+ context 'when return type is not specified' do
392
+ it 'returns parent works as fedora objects through pcdm_valkyrie_behavior' do
393
+ af_object_ids = child_work_resource.parent_work_ids
394
+ expect(af_object_ids).to match_array [work1.id, work2.id]
395
+ end
396
+ end
397
+ end
398
+
399
+ describe '#member_collections' do
400
+ let(:pcdm_object) { collection1 }
401
+
402
+ before do
403
+ collection1.ordered_members = [work1, work2, collection2, collection3]
404
+ collection1.save!
405
+ end
406
+
407
+ it { expect(resource.member_collections).to eq([collection2, collection3]) }
408
+ end
409
+
410
+ describe '#member_collection_ids' do
411
+ let(:pcdm_object) { collection1 }
412
+
413
+ before do
414
+ collection1.ordered_members = [work1, work2, collection2, collection3]
415
+ collection1.save!
416
+ end
417
+
418
+ it { expect(resource.member_collection_ids).to eq([collection2.id, collection3.id]) }
419
+ end
420
+
421
+ describe '#member_works' do
422
+ let(:pcdm_object) { collection1 }
423
+
424
+ before do
425
+ collection1.ordered_members = [work1, work2, collection2, collection3]
426
+ collection1.save!
427
+ end
428
+
429
+ it { expect(resource.member_works).to eq([work1, work2]) }
430
+ end
431
+
432
+ describe '#member_work_ids' do
433
+ let(:pcdm_object) { collection1 }
434
+
435
+ before do
436
+ collection1.ordered_members = [work1, work2, collection2, collection3]
437
+ collection1.save!
438
+ end
439
+
440
+ it { expect(resource.member_work_ids).to eq([work1.id, work2.id]) }
441
+ end
442
+ end