hyrax 2.0.3 → 2.1.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (703) hide show
  1. checksums.yaml +4 -4
  2. data/.eslintrc +0 -1
  3. data/.github/CONTRIBUTING.md +1 -1
  4. data/.rubocop.yml +8 -4
  5. data/.rubocop_fixme.yml +20 -2
  6. data/.travis.yml +3 -3
  7. data/README.md +12 -4
  8. data/app/actors/hyrax/actors/abstract_actor.rb +1 -1
  9. data/app/actors/hyrax/actors/apply_permission_template_actor.rb +17 -1
  10. data/app/actors/hyrax/actors/attach_members_actor.rb +2 -2
  11. data/app/actors/hyrax/actors/collections_membership_actor.rb +147 -12
  12. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +15 -9
  13. data/app/actors/hyrax/actors/default_admin_set_actor.rb +3 -3
  14. data/app/actors/hyrax/actors/file_set_actor.rb +10 -6
  15. data/app/actors/hyrax/actors/interpret_visibility_actor.rb +1 -1
  16. data/app/assets/javascripts/hyrax.js +13 -7
  17. data/app/assets/javascripts/hyrax/admin/admin_set_controls.es6 +5 -3
  18. data/app/assets/javascripts/hyrax/admin/collection_type/participants.es6 +13 -0
  19. data/app/assets/javascripts/hyrax/admin/collection_type/settings.es6 +60 -0
  20. data/app/assets/javascripts/hyrax/admin/collection_type_controls.es6 +15 -0
  21. data/app/assets/javascripts/hyrax/app.js.erb +29 -7
  22. data/app/assets/javascripts/hyrax/autocomplete.es6 +10 -5
  23. data/app/assets/javascripts/hyrax/autocomplete/default.es6 +1 -1
  24. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +1 -1
  25. data/app/assets/javascripts/hyrax/autocomplete/{work.es6 → resource.es6} +10 -4
  26. data/app/assets/javascripts/hyrax/collection_types.es6 +65 -0
  27. data/app/assets/javascripts/hyrax/collections.js +168 -3
  28. data/app/assets/javascripts/hyrax/collections/editor.es6 +7 -1
  29. data/app/assets/javascripts/hyrax/collections_forms.js +108 -0
  30. data/app/assets/javascripts/hyrax/editor.es6 +17 -3
  31. data/app/assets/javascripts/hyrax/fileupload.js +1 -0
  32. data/app/assets/javascripts/hyrax/relationships.js +2 -1
  33. data/app/assets/javascripts/hyrax/relationships/confirm_remove_dialog.es6 +45 -0
  34. data/app/assets/javascripts/hyrax/relationships/control.es6 +25 -10
  35. data/app/assets/javascripts/hyrax/relationships/registry.es6 +28 -25
  36. data/app/assets/javascripts/hyrax/relationships/registry_entry.es6 +40 -33
  37. data/app/assets/javascripts/hyrax/relationships/resource.es6 +10 -0
  38. data/app/assets/javascripts/hyrax/select_collection_type.es6 +39 -0
  39. data/app/assets/javascripts/hyrax/{per_page.es6 → sort_and_per_page.es6} +1 -1
  40. data/app/assets/javascripts/hyrax/tabbed_form.es6 +35 -0
  41. data/app/assets/stylesheets/_bootstrap-default-overrides.scss +15 -0
  42. data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +6 -0
  43. data/app/assets/stylesheets/hyrax/_accessibility.scss +16 -0
  44. data/app/assets/stylesheets/hyrax/_catalog.scss +88 -1
  45. data/app/assets/stylesheets/hyrax/_collection_types.scss +53 -0
  46. data/app/assets/stylesheets/hyrax/_collections.scss +616 -22
  47. data/app/assets/stylesheets/hyrax/_featured.scss +16 -0
  48. data/app/assets/stylesheets/hyrax/_file-listing.scss +9 -2
  49. data/app/assets/stylesheets/hyrax/_forms.scss +46 -0
  50. data/app/assets/stylesheets/hyrax/_home-page.scss +10 -0
  51. data/app/assets/stylesheets/hyrax/_hyrax.scss +3 -2
  52. data/app/assets/stylesheets/hyrax/_positioning.scss +0 -11
  53. data/app/assets/stylesheets/hyrax/_recent.scss +26 -0
  54. data/app/assets/stylesheets/hyrax/_representative-media.scss +7 -0
  55. data/app/assets/stylesheets/hyrax/_select_collection_type.scss +45 -0
  56. data/app/assets/stylesheets/hyrax/_select_work_type.scss +0 -4
  57. data/app/assets/stylesheets/hyrax/_styles.scss +2 -17
  58. data/app/assets/stylesheets/hyrax/_variables.scss +2 -2
  59. data/app/assets/stylesheets/hyrax/_viewer.scss +8 -0
  60. data/app/assets/stylesheets/hyrax/_work-show.scss +44 -6
  61. data/app/assets/stylesheets/hyrax/dashboard.scss +7 -2
  62. data/app/authorities/qa/authorities/collections.rb +30 -0
  63. data/app/builders/hyrax/manifest_helper.rb +36 -0
  64. data/app/controllers/concerns/hyrax/admin/stats_behavior.rb +1 -1
  65. data/app/controllers/concerns/hyrax/admin/users_controller_behavior.rb +1 -1
  66. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +37 -40
  67. data/app/controllers/concerns/hyrax/controller.rb +0 -9
  68. data/app/controllers/concerns/hyrax/themed_layout_controller.rb +4 -1
  69. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +22 -11
  70. data/app/controllers/hyrax/admin/admin_sets_controller.rb +24 -15
  71. data/app/controllers/hyrax/admin/appearances_controller.rb +1 -1
  72. data/app/controllers/hyrax/admin/collection_type_participants_controller.rb +44 -0
  73. data/app/controllers/hyrax/admin/collection_types_controller.rb +97 -0
  74. data/app/controllers/hyrax/admin/features_controller.rb +1 -1
  75. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +55 -13
  76. data/app/controllers/hyrax/admin/permission_templates_controller.rb +66 -23
  77. data/app/controllers/hyrax/admin/workflow_roles_controller.rb +1 -1
  78. data/app/controllers/hyrax/admin/workflows_controller.rb +1 -1
  79. data/app/controllers/hyrax/batch_edits_controller.rb +1 -1
  80. data/app/controllers/hyrax/batch_uploads_controller.rb +1 -1
  81. data/app/controllers/hyrax/citations_controller.rb +3 -12
  82. data/app/controllers/hyrax/collections_controller.rb +8 -9
  83. data/app/controllers/hyrax/content_blocks_controller.rb +1 -1
  84. data/app/controllers/hyrax/dashboard/collection_members_controller.rb +73 -0
  85. data/app/controllers/hyrax/dashboard/collections_controller.rb +210 -54
  86. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +106 -0
  87. data/app/controllers/hyrax/dashboard/profiles_controller.rb +1 -1
  88. data/app/controllers/hyrax/dashboard/works_controller.rb +1 -9
  89. data/app/controllers/hyrax/dashboard_controller.rb +1 -1
  90. data/app/controllers/hyrax/file_sets_controller.rb +7 -75
  91. data/app/controllers/hyrax/my/collections_controller.rb +26 -1
  92. data/app/controllers/hyrax/my/works_controller.rb +16 -1
  93. data/app/controllers/hyrax/my_controller.rb +5 -19
  94. data/app/controllers/hyrax/notifications_controller.rb +1 -1
  95. data/app/controllers/hyrax/pages_controller.rb +3 -2
  96. data/app/controllers/hyrax/stats_controller.rb +3 -0
  97. data/app/controllers/hyrax/transfers_controller.rb +1 -1
  98. data/app/forms/hyrax/forms/admin/appearance.rb +2 -2
  99. data/app/forms/hyrax/forms/admin/collection_type_form.rb +24 -0
  100. data/app/forms/hyrax/forms/admin/collection_type_participant_form.rb +16 -0
  101. data/app/forms/hyrax/forms/admin_set_form.rb +1 -1
  102. data/app/forms/hyrax/forms/batch_edit_form.rb +28 -7
  103. data/app/forms/hyrax/forms/collection_form.rb +71 -13
  104. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +98 -0
  105. data/app/forms/hyrax/forms/permission_template_form.rb +13 -13
  106. data/app/forms/hyrax/forms/work_form.rb +58 -14
  107. data/app/helpers/hyrax/ability_helper.rb +3 -0
  108. data/app/helpers/hyrax/citations_behaviors/formatters/chicago_formatter.rb +3 -10
  109. data/app/helpers/hyrax/collections_helper.rb +10 -2
  110. data/app/helpers/hyrax/dashboard_helper_behavior.rb +0 -4
  111. data/app/helpers/hyrax/hyrax_helper_behavior.rb +19 -5
  112. data/app/helpers/hyrax/trophy_helper.rb +0 -1
  113. data/app/indexers/hyrax/indexes_workflow.rb +1 -1
  114. data/app/indexers/hyrax/repository_reindexer.rb +19 -0
  115. data/app/jobs/hyrax/application_job.rb +1 -1
  116. data/app/jobs/import_export_job.rb +1 -1
  117. data/app/jobs/user_edit_profile_event_job.rb +1 -1
  118. data/app/models/admin_set.rb +5 -2
  119. data/app/models/collection_branding_info.rb +39 -0
  120. data/app/models/concerns/hyrax/ability.rb +26 -49
  121. data/app/models/concerns/hyrax/ability/admin_set_ability.rb +40 -0
  122. data/app/models/concerns/hyrax/ability/collection_ability.rb +40 -0
  123. data/app/models/concerns/hyrax/ability/collection_type_ability.rb +16 -0
  124. data/app/models/concerns/hyrax/ability/permission_template_ability.rb +18 -0
  125. data/app/models/concerns/hyrax/ability/solr_document_ability.rb +18 -0
  126. data/app/models/concerns/hyrax/collection_behavior.rb +86 -3
  127. data/app/models/concerns/hyrax/collection_nesting.rb +41 -0
  128. data/app/models/concerns/hyrax/file_set/belongs_to_works.rb +0 -15
  129. data/app/models/concerns/hyrax/file_set_behavior.rb +0 -1
  130. data/app/models/concerns/hyrax/has_rendering.rb +11 -0
  131. data/app/models/concerns/hyrax/human_readable_type.rb +3 -0
  132. data/app/models/concerns/hyrax/solr_document/metadata.rb +3 -0
  133. data/app/models/concerns/hyrax/solr_document_behavior.rb +8 -2
  134. data/app/models/concerns/hyrax/user.rb +11 -6
  135. data/app/models/concerns/hyrax/with_events.rb +12 -6
  136. data/app/models/concerns/hyrax/work_behavior.rb +3 -1
  137. data/app/models/hyrax/batch_create_operation.rb +1 -1
  138. data/app/models/hyrax/collection_type.rb +155 -0
  139. data/app/models/hyrax/collection_type_participant.rb +39 -0
  140. data/app/models/hyrax/operation.rb +14 -2
  141. data/app/models/hyrax/permission_template.rb +23 -1
  142. data/app/models/hyrax/permission_template_access.rb +56 -7
  143. data/app/models/hyrax/uploaded_file.rb +4 -1
  144. data/app/models/sipity/workflow.rb +6 -4
  145. data/app/presenters/hyrax/admin/workflow_role_presenter.rb +3 -3
  146. data/app/presenters/hyrax/admin_set_options_presenter.rb +1 -1
  147. data/app/presenters/hyrax/admin_set_presenter.rb +16 -0
  148. data/app/presenters/hyrax/collection_options_presenter.rb +1 -0
  149. data/app/presenters/hyrax/collection_presenter.rb +134 -6
  150. data/app/presenters/hyrax/displays_image.rb +39 -0
  151. data/app/presenters/hyrax/file_set_presenter.rb +1 -4
  152. data/app/presenters/hyrax/fixity_status_presenter.rb +2 -2
  153. data/app/presenters/hyrax/homepage_presenter.rb +20 -0
  154. data/app/presenters/hyrax/menu_presenter.rb +2 -1
  155. data/app/presenters/hyrax/select_collection_type_list_presenter.rb +42 -0
  156. data/app/presenters/hyrax/select_collection_type_presenter.rb +11 -0
  157. data/app/presenters/hyrax/select_type_presenter.rb +13 -4
  158. data/app/presenters/hyrax/work_show_presenter.rb +52 -1
  159. data/app/renderers/hyrax/renderers/attribute_renderer.rb +1 -1
  160. data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +1 -1
  161. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +3 -2
  162. data/app/search_builders/hyrax/admin_admin_set_member_search_builder.rb +10 -1
  163. data/app/search_builders/hyrax/admin_set_search_builder.rb +9 -2
  164. data/app/search_builders/hyrax/collection_member_search_builder.rb +21 -8
  165. data/app/search_builders/hyrax/collection_search_builder.rb +37 -0
  166. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +42 -0
  167. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +24 -0
  168. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +123 -0
  169. data/app/search_builders/hyrax/dashboard/works_search_builder.rb +18 -0
  170. data/app/search_builders/hyrax/filter_suppressed_with_roles.rb +5 -1
  171. data/app/search_builders/hyrax/my/collections_search_builder.rb +20 -3
  172. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +27 -0
  173. data/app/search_builders/hyrax/search_filters.rb +8 -0
  174. data/app/services/hyrax/adapters/nesting_index_adapter.rb +192 -0
  175. data/app/services/hyrax/admin_set_create_service.rb +3 -2
  176. data/app/services/hyrax/admin_set_member_service.rb +40 -0
  177. data/app/services/hyrax/batch_create_failure_service.rb +4 -3
  178. data/app/services/hyrax/collection_types/create_service.rb +143 -0
  179. data/app/services/hyrax/collection_types/permissions_service.rb +233 -0
  180. data/app/services/hyrax/collections/collection_member_service.rb +91 -0
  181. data/app/services/hyrax/collections/managed_collections_service.rb +16 -0
  182. data/app/services/hyrax/collections/migration_service.rb +81 -0
  183. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +26 -0
  184. data/app/services/hyrax/collections/nested_collection_query_service.rb +187 -0
  185. data/app/services/hyrax/collections/permissions_create_service.rb +71 -0
  186. data/app/services/hyrax/collections/permissions_service.rb +234 -0
  187. data/app/services/hyrax/collections_service.rb +3 -3
  188. data/app/services/hyrax/default_middleware_stack.rb +35 -0
  189. data/app/services/hyrax/file_set_fixity_check_service.rb +1 -1
  190. data/app/services/hyrax/graph_exporter.rb +19 -15
  191. data/app/services/hyrax/iiif_authorization_service.rb +19 -0
  192. data/app/services/hyrax/multiple_membership_checker.rb +78 -0
  193. data/app/services/hyrax/noid.rb +1 -3
  194. data/app/services/hyrax/qa_select_service.rb +11 -2
  195. data/app/services/hyrax/workflow/status_list_service.rb +1 -1
  196. data/app/services/hyrax/working_directory.rb +0 -8
  197. data/app/services/hyrax/works/managed_works_service.rb +16 -0
  198. data/app/views/_flash_msg.html.erb +1 -1
  199. data/app/views/_masthead.html.erb +0 -1
  200. data/app/views/catalog/_document.html.erb +3 -1
  201. data/app/views/catalog/_document_list.html.erb +2 -2
  202. data/app/views/catalog/_index_header_list_collection.html.erb +4 -3
  203. data/app/views/catalog/_index_header_list_default.html.erb +3 -3
  204. data/app/views/catalog/_index_list_default.html.erb +29 -14
  205. data/app/views/catalog/_thumbnail_list_collection.html.erb +3 -4
  206. data/app/views/catalog/_thumbnail_list_default.html.erb +5 -3
  207. data/app/views/hyrax/admin/admin_sets/_form.html.erb +2 -1
  208. data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +1 -1
  209. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +1 -1
  210. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +3 -3
  211. data/app/views/hyrax/admin/admin_sets/edit.html.erb +1 -1
  212. data/app/views/hyrax/admin/collection_types/_form.html.erb +61 -0
  213. data/app/views/hyrax/admin/collection_types/_form_metadata.html.erb +2 -0
  214. data/app/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb +2 -0
  215. data/app/views/hyrax/admin/collection_types/_form_participant_table.html.erb +26 -0
  216. data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +62 -0
  217. data/app/views/hyrax/admin/collection_types/_form_settings.html.erb +39 -0
  218. data/app/views/hyrax/admin/collection_types/edit.html.erb +10 -0
  219. data/app/views/hyrax/admin/collection_types/index.html.erb +88 -0
  220. data/app/views/hyrax/admin/collection_types/new.html.erb +10 -0
  221. data/app/views/hyrax/base/_attribute_rows.html.erb +1 -0
  222. data/app/views/hyrax/base/_citations.html.erb +10 -6
  223. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +22 -29
  224. data/app/views/hyrax/base/_form_files.html.erb +29 -16
  225. data/app/views/hyrax/base/_form_media.html.erb +1 -0
  226. data/app/views/hyrax/base/_form_member_of_collections.html.erb +44 -6
  227. data/app/views/hyrax/base/_form_metadata.html.erb +0 -3
  228. data/app/views/hyrax/base/_form_progress.html.erb +2 -1
  229. data/app/views/hyrax/base/_form_relationships.html.erb +3 -2
  230. data/app/views/hyrax/base/_form_rendering.html.erb +14 -0
  231. data/app/views/hyrax/base/_form_representative.html.erb +2 -2
  232. data/app/views/hyrax/base/_form_share.html.erb +44 -41
  233. data/app/views/hyrax/base/_form_thumbnail.html.erb +2 -2
  234. data/app/views/hyrax/base/_guts4form.html.erb +2 -2
  235. data/app/views/hyrax/base/_member.html.erb +3 -4
  236. data/app/views/hyrax/base/_metadata.html.erb +1 -5
  237. data/app/views/hyrax/base/_relationships.html.erb +1 -1
  238. data/app/views/hyrax/base/_relationships_parent_row.html.erb +1 -1
  239. data/app/views/hyrax/base/_representative_media.html.erb +8 -2
  240. data/app/views/hyrax/base/_work_title.erb +14 -7
  241. data/app/views/hyrax/base/_work_type.html.erb +4 -0
  242. data/app/views/hyrax/base/_workflow_actions.html.erb +7 -7
  243. data/app/views/hyrax/base/_workflow_actions_widget.erb +4 -2
  244. data/app/views/hyrax/base/show.html.erb +35 -26
  245. data/app/views/hyrax/batch_edits/edit.html.erb +1 -1
  246. data/app/views/hyrax/collections/_collection_description.erb +1 -1
  247. data/app/views/hyrax/collections/_default_group.html.erb +9 -11
  248. data/app/views/hyrax/collections/_list_collections.html.erb +19 -12
  249. data/app/views/hyrax/collections/_paginate.html.erb +5 -4
  250. data/app/views/hyrax/collections/_search_form.html.erb +1 -1
  251. data/app/views/hyrax/collections/_search_results.html.erb +0 -2
  252. data/app/views/hyrax/collections/_show_descriptions.html.erb +7 -6
  253. data/app/views/hyrax/collections/_show_document_list.html.erb +3 -3
  254. data/app/views/hyrax/collections/_show_document_list_row.html.erb +3 -3
  255. data/app/views/hyrax/collections/_show_parent_collections.html.erb +41 -0
  256. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +16 -24
  257. data/app/views/hyrax/collections/_subcollection_list.html.erb +13 -0
  258. data/app/views/hyrax/collections/_view_type_group.html.erb +1 -1
  259. data/app/views/hyrax/collections/show.html.erb +120 -31
  260. data/app/views/hyrax/dashboard/collections/_button_for_batch_delete_collection.html.erb +4 -0
  261. data/app/views/hyrax/dashboard/collections/_button_for_remove_selected_from_collection.html.erb +0 -1
  262. data/app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb +1 -1
  263. data/app/views/hyrax/dashboard/collections/_button_remove_from_collection.html.erb +1 -1
  264. data/app/views/hyrax/dashboard/collections/_collection_title.html.erb +25 -0
  265. data/app/views/hyrax/dashboard/collections/_document_list.html.erb +1 -5
  266. data/app/views/hyrax/dashboard/collections/_edit_actions.html.erb +2 -2
  267. data/app/views/hyrax/dashboard/collections/_flash_msg.html.erb +9 -0
  268. data/app/views/hyrax/dashboard/collections/_form.html.erb +46 -24
  269. data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +153 -0
  270. data/app/views/hyrax/dashboard/collections/_form_default_group_delt.html.erb +27 -0
  271. data/app/views/hyrax/dashboard/collections/_form_discovery.html.erb +18 -0
  272. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +69 -81
  273. data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +31 -0
  274. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +54 -37
  275. data/app/views/hyrax/dashboard/collections/_modal_remove_from_collection.html.erb +17 -0
  276. data/app/views/hyrax/dashboard/collections/_modal_remove_sub_collection.html.erb +17 -0
  277. data/app/views/hyrax/dashboard/collections/_show_actions.html.erb +27 -21
  278. data/app/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb +25 -0
  279. data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +4 -3
  280. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +6 -5
  281. data/app/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb +6 -0
  282. data/app/views/hyrax/dashboard/collections/_show_parent_collections.html.erb +37 -0
  283. data/app/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb +26 -0
  284. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +28 -27
  285. data/app/views/hyrax/dashboard/collections/_subcollection_list.html.erb +21 -0
  286. data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +1 -1
  287. data/app/views/hyrax/dashboard/collections/edit.html.erb +8 -31
  288. data/app/views/hyrax/dashboard/collections/new.html.erb +2 -3
  289. data/app/views/hyrax/dashboard/collections/show.html.erb +102 -35
  290. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +5 -0
  291. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +0 -5
  292. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +10 -0
  293. data/app/views/hyrax/dashboard/works/_default_group.html.erb +1 -0
  294. data/app/views/hyrax/dashboard/works/_list_works.html.erb +4 -0
  295. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +1 -1
  296. data/app/views/hyrax/file_sets/_form.html.erb +2 -2
  297. data/app/views/hyrax/file_sets/_show_characterization_details.html.erb +1 -1
  298. data/app/views/hyrax/file_sets/media_display/_image.html.erb +3 -5
  299. data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +3 -5
  300. data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +3 -5
  301. data/app/views/hyrax/homepage/_featured.html.erb +5 -5
  302. data/app/views/hyrax/homepage/_featured_fields.html.erb +10 -14
  303. data/app/views/hyrax/homepage/_featured_works.html.erb +1 -1
  304. data/app/views/hyrax/homepage/_home_content.html.erb +2 -2
  305. data/app/views/hyrax/homepage/_recent_document.html.erb +14 -12
  306. data/app/views/hyrax/homepage/_recently_uploaded.html.erb +2 -6
  307. data/app/views/hyrax/homepage/index.html.erb +4 -2
  308. data/app/views/hyrax/my/_admin_set_action_menu.html.erb +54 -0
  309. data/app/views/hyrax/my/_collection_action_menu.html.erb +41 -9
  310. data/app/views/hyrax/my/_facet_pivot.html.erb +26 -0
  311. data/app/views/hyrax/my/_search_header.html.erb +1 -15
  312. data/app/views/hyrax/my/_sort_and_per_page.html.erb +12 -13
  313. data/app/views/hyrax/my/_work_action_menu.html.erb +17 -15
  314. data/app/views/hyrax/my/collections/_batch_actions.html.erb +5 -0
  315. data/app/views/hyrax/my/collections/_default_group.html.erb +21 -12
  316. data/app/views/hyrax/my/collections/_list_collections.html.erb +57 -35
  317. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +38 -0
  318. data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +31 -0
  319. data/app/views/hyrax/my/collections/_modal_add_to_collection_deny.html.erb +12 -0
  320. data/app/views/hyrax/my/collections/_modal_add_to_collection_permission_deny.html.erb +12 -0
  321. data/app/views/hyrax/my/collections/_modal_collection_types_to_create.html.erb +36 -0
  322. data/app/views/hyrax/my/collections/_modal_delete_admin_set_deny.html.erb +12 -0
  323. data/app/views/hyrax/my/collections/_modal_delete_collection.html.erb +19 -0
  324. data/app/views/hyrax/my/collections/_modal_delete_collection_deny.html.erb +14 -0
  325. data/app/views/hyrax/my/collections/_modal_delete_deny.html.erb +14 -0
  326. data/app/views/hyrax/my/collections/_modal_delete_empty_collection.html.erb +18 -0
  327. data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +17 -0
  328. data/app/views/hyrax/my/collections/_modal_edit_deny.html.erb +14 -0
  329. data/app/views/hyrax/my/collections/_tabs.html.erb +3 -3
  330. data/app/views/hyrax/my/collections/index.html.erb +46 -21
  331. data/app/views/hyrax/my/works/_batch_actions.html.erb +14 -0
  332. data/app/views/hyrax/my/works/_default_group.html.erb +10 -12
  333. data/app/views/hyrax/my/works/_tabs.html.erb +1 -1
  334. data/app/views/hyrax/my/works/index.html.erb +7 -5
  335. data/app/views/hyrax/notifications/_notifications.html.erb +3 -3
  336. data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
  337. data/app/views/hyrax/stats/file.html.erb +1 -1
  338. data/app/views/hyrax/stats/work.html.erb +1 -1
  339. data/app/views/hyrax/transfers/_received.html.erb +1 -1
  340. data/app/views/hyrax/transfers/_sent.html.erb +1 -1
  341. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +120 -0
  342. data/app/views/hyrax/users/_activity_log.html.erb +3 -3
  343. data/app/views/kaminari/blacklight_compact/_paginator.html.erb +23 -0
  344. data/app/views/layouts/hyrax.html.erb +9 -11
  345. data/app/views/layouts/{dashboard.html.erb → hyrax/dashboard.html.erb} +0 -0
  346. data/app/views/shared/_select_work_type_modal.html.erb +25 -26
  347. data/config/features.rb +4 -0
  348. data/config/initializers/hyrax_callbacks.rb +2 -2
  349. data/config/initializers/samvera-nesting_indexer_initializer.rb +15 -0
  350. data/config/locales/hyrax.de.yml +364 -79
  351. data/config/locales/hyrax.en.yml +874 -584
  352. data/config/locales/hyrax.es.yml +323 -35
  353. data/config/locales/hyrax.fr.yml +323 -39
  354. data/config/locales/hyrax.it.yml +322 -39
  355. data/config/locales/hyrax.pt-BR.yml +317 -39
  356. data/config/locales/hyrax.zh.yml +420 -142
  357. data/config/routes.rb +17 -0
  358. data/hyrax.gemspec +58 -57
  359. data/lib/generators/hyrax/assets_generator.rb +2 -4
  360. data/lib/generators/hyrax/clamav_generator.rb +0 -2
  361. data/lib/generators/hyrax/config_generator.rb +0 -2
  362. data/lib/generators/hyrax/install_generator.rb +12 -3
  363. data/lib/generators/hyrax/riiif_generator.rb +54 -0
  364. data/lib/generators/hyrax/templates/app/assets/images/us_404.svg +91 -0
  365. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +48 -3
  366. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +26 -0
  367. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +4 -4
  368. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +0 -4
  369. data/lib/generators/hyrax/templates/db/migrate/20170808160431_create_collection_types.rb.erb +17 -0
  370. data/lib/generators/hyrax/templates/db/migrate/20170808160432_update_collection_type_column_names.rb.erb +9 -0
  371. data/lib/generators/hyrax/templates/db/migrate/20170810190549_update_collection_type_column_options.rb.erb +9 -0
  372. data/lib/generators/hyrax/templates/db/migrate/20170816180307_create_collection_branding_infos.rb.erb +15 -0
  373. data/lib/generators/hyrax/templates/db/migrate/20170817152654_create_collection_type_participants.rb.erb +11 -0
  374. data/lib/generators/hyrax/templates/db/migrate/20170821152307_rename_admin_set_id_to_source_id.rb.erb +5 -0
  375. data/lib/generators/hyrax/templates/db/migrate/20171103080032_add_collection_type_sharing_options.rb.erb +5 -0
  376. data/lib/generators/hyrax/templates/db/seeds.rb +226 -22
  377. data/lib/generators/hyrax/work/templates/controller.rb.erb +1 -1
  378. data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +37 -1
  379. data/lib/generators/hyrax/work/templates/form.rb.erb +1 -0
  380. data/lib/generators/hyrax/work/templates/indexer.rb.erb +0 -1
  381. data/lib/generators/hyrax/work/templates/locale.de.yml.erb +1 -1
  382. data/lib/generators/hyrax/work/templates/locale.en.yml.erb +1 -1
  383. data/lib/generators/hyrax/work/templates/locale.es.yml.erb +1 -1
  384. data/lib/generators/hyrax/work/templates/locale.fr.yml.erb +1 -1
  385. data/lib/generators/hyrax/work/templates/locale.it.yml.erb +1 -1
  386. data/lib/generators/hyrax/work/templates/locale.pt-BR.yml.erb +1 -1
  387. data/lib/generators/hyrax/work/templates/locale.zh.yml.erb +1 -1
  388. data/lib/generators/hyrax/work/templates/model.rb.erb +0 -2
  389. data/lib/hyrax.rb +1 -1
  390. data/lib/hyrax/configuration.rb +96 -7
  391. data/lib/hyrax/engine.rb +5 -4
  392. data/lib/hyrax/rails/routes.rb +1 -1
  393. data/lib/hyrax/version.rb +1 -1
  394. data/lib/tasks/default_admin_set.rake +5 -3
  395. data/lib/tasks/default_collection_type.rake +19 -0
  396. data/lib/tasks/migrate.rake +8 -0
  397. data/spec/abilities/ability_spec.rb +4 -1
  398. data/spec/abilities/admin_set_ability_spec.rb +172 -0
  399. data/spec/abilities/collection_ability_spec.rb +194 -0
  400. data/spec/abilities/collection_type_ability_spec.rb +72 -0
  401. data/spec/abilities/file_set_abilities_spec.rb +3 -3
  402. data/spec/abilities/generic_work_abilities_spec.rb +5 -5
  403. data/spec/abilities/permission_template_ability_spec.rb +145 -0
  404. data/spec/abilities/solr_document_ability_spec.rb +27 -0
  405. data/spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb +96 -28
  406. data/spec/actors/hyrax/actors/collections_membership_actor_spec.rb +283 -15
  407. data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +7 -7
  408. data/spec/actors/hyrax/actors/default_admin_set_actor_spec.rb +1 -1
  409. data/spec/actors/hyrax/actors/file_actor_spec.rb +0 -1
  410. data/spec/actors/hyrax/actors/file_set_actor_spec.rb +8 -6
  411. data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +11 -39
  412. data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +15 -15
  413. data/spec/actors/hyrax/actors/model_actor_spec.rb +0 -2
  414. data/spec/authorities/qa/authorities/collections_spec.rb +68 -0
  415. data/spec/channels/hyrax/application_cable/channel_spec.rb +1 -1
  416. data/spec/channels/hyrax/application_cable/connection_spec.rb +1 -1
  417. data/spec/channels/hyrax/notifications_channel_spec.rb +1 -1
  418. data/spec/controllers/catalog_controller_spec.rb +1 -1
  419. data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +27 -1
  420. data/spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb +152 -0
  421. data/spec/controllers/hyrax/admin/collection_types_controller_spec.rb +320 -0
  422. data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +68 -29
  423. data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +37 -10
  424. data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +2 -13
  425. data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +52 -2
  426. data/spec/controllers/hyrax/batch_edits_controller_spec.rb +75 -4
  427. data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +2 -2
  428. data/spec/controllers/hyrax/collections_controller_spec.rb +15 -6
  429. data/spec/controllers/hyrax/content_blocks_controller_spec.rb +5 -5
  430. data/spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb +408 -0
  431. data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +114 -18
  432. data/spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb +360 -0
  433. data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +2 -2
  434. data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +1 -1
  435. data/spec/controllers/hyrax/downloads_controller_spec.rb +3 -3
  436. data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +2 -2
  437. data/spec/controllers/hyrax/file_sets_controller_spec.rb +8 -136
  438. data/spec/controllers/hyrax/fixity_checks_controller_spec.rb +1 -1
  439. data/spec/controllers/hyrax/generic_works_controller_spec.rb +64 -2
  440. data/spec/controllers/hyrax/homepage_controller_spec.rb +1 -1
  441. data/spec/controllers/hyrax/my/works_controller_spec.rb +4 -1
  442. data/spec/controllers/hyrax/pages_controller_spec.rb +11 -11
  443. data/spec/controllers/hyrax/users_controller_spec.rb +1 -1
  444. data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +1 -1
  445. data/spec/conversions/power_converters/polymorphic_type_spec.rb +2 -2
  446. data/spec/conversions/power_converters/sipity_agent_spec.rb +1 -1
  447. data/spec/conversions/power_converters/sipity_role_spec.rb +1 -1
  448. data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +1 -1
  449. data/spec/factories/admin_sets.rb +3 -3
  450. data/spec/factories/collection_branding_infos.rb +11 -0
  451. data/spec/factories/collection_type_participants.rb +8 -0
  452. data/spec/factories/collection_types.rb +104 -0
  453. data/spec/factories/collections.rb +323 -0
  454. data/spec/factories/collections_factory.rb +106 -3
  455. data/spec/factories/file_sets.rb +2 -2
  456. data/spec/factories/generic_works.rb +22 -14
  457. data/spec/factories/object_id.rb +6 -0
  458. data/spec/factories/permission_templates.rb +46 -8
  459. data/spec/factories/users.rb +1 -1
  460. data/spec/factory_tests/collections_factory_spec.rb +211 -0
  461. data/spec/features/admin_spec.rb +1 -1
  462. data/spec/features/batch_create_spec.rb +1 -1
  463. data/spec/features/batch_edit_spec.rb +0 -1
  464. data/spec/features/browse_catalog_spec.rb +1 -3
  465. data/spec/features/browse_dashboard_works_spec.rb +0 -1
  466. data/spec/features/collection_multi_membership_spec.rb +188 -0
  467. data/spec/features/collection_spec.rb +45 -7
  468. data/spec/features/collection_type_spec.rb +338 -0
  469. data/spec/features/create_child_work_spec.rb +1 -1
  470. data/spec/features/create_work_admin_spec.rb +44 -0
  471. data/spec/features/create_work_spec.rb +1 -1
  472. data/spec/features/dashboard/all_works.rb +1 -1
  473. data/spec/features/dashboard/collection_spec.rb +724 -115
  474. data/spec/features/delete_work_spec.rb +1 -1
  475. data/spec/features/edit_file_spec.rb +1 -1
  476. data/spec/features/edit_work_spec.rb +1 -1
  477. data/spec/features/embargo_spec.rb +1 -1
  478. data/spec/features/homepage_spec.rb +3 -3
  479. data/spec/features/lease_spec.rb +1 -1
  480. data/spec/features/notifications_spec.rb +2 -2
  481. data/spec/features/ownership_transfer_spec.rb +1 -2
  482. data/spec/features/proxy_spec.rb +1 -1
  483. data/spec/features/search_spec.rb +12 -11
  484. data/spec/features/static_pages_spec.rb +1 -1
  485. data/spec/features/users_spec.rb +1 -1
  486. data/spec/features/work_generator_spec.rb +1 -1
  487. data/spec/features/work_show_spec.rb +4 -4
  488. data/spec/features/workflow_roles_spec.rb +1 -1
  489. data/spec/features/workflow_state_changes_spec.rb +2 -2
  490. data/spec/forms/hyrax/forms/admin/collection_type_form_spec.rb +106 -0
  491. data/spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb +10 -0
  492. data/spec/forms/hyrax/forms/admin_set_form_spec.rb +1 -1
  493. data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +1 -1
  494. data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +1 -0
  495. data/spec/forms/hyrax/forms/collection_form_spec.rb +52 -4
  496. data/spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb +159 -0
  497. data/spec/forms/hyrax/forms/permission_template_form_spec.rb +15 -12
  498. data/spec/forms/hyrax/forms/work_form_spec.rb +61 -12
  499. data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +1 -1
  500. data/spec/forms/hyrax/generic_work_form_spec.rb +6 -3
  501. data/spec/helpers/hyrax/ability_helper_spec.rb +11 -0
  502. data/spec/helpers/hyrax/collections_helper_spec.rb +17 -39
  503. data/spec/helpers/hyrax/content_block_helper_spec.rb +1 -1
  504. data/spec/helpers/{dashboard_helper_spec.rb → hyrax/dashboard_helper_behavior_spec.rb} +1 -12
  505. data/spec/helpers/hyrax/trophy_helper_spec.rb +1 -1
  506. data/spec/helpers/hyrax_helper_spec.rb +0 -3
  507. data/spec/indexers/hyrax/generic_work_indexer_spec.rb +4 -4
  508. data/spec/indexers/hyrax/repository_reindexer_spec.rb +8 -0
  509. data/spec/javascripts/relationships_control_spec.js.coffee +3 -3
  510. data/spec/javascripts/settings_spec.js +73 -0
  511. data/spec/jobs/user_edit_profile_event_job_spec.rb +1 -1
  512. data/spec/lib/hyrax/configuration_spec.rb +16 -0
  513. data/spec/models/admin_set_spec.rb +42 -4
  514. data/spec/models/collection_branding_info_spec.rb +61 -0
  515. data/spec/models/collection_spec.rb +228 -3
  516. data/spec/models/concerns/hyrax/collection_nesting_spec.rb +64 -0
  517. data/spec/models/file_set_spec.rb +4 -4
  518. data/spec/models/generic_work_spec.rb +1 -1
  519. data/spec/models/hyrax/batch_create_operation_spec.rb +59 -0
  520. data/spec/models/hyrax/collection_type_participant_spec.rb +43 -0
  521. data/spec/models/hyrax/collection_type_spec.rb +235 -0
  522. data/spec/models/hyrax/operation_spec.rb +27 -1
  523. data/spec/models/hyrax/permission_template_access_spec.rb +128 -5
  524. data/spec/models/hyrax/permission_template_spec.rb +85 -29
  525. data/spec/models/hyrax/user_usage_stats_spec.rb +1 -1
  526. data/spec/models/hyrax/work_behavior_spec.rb +12 -2
  527. data/spec/models/sipity/agent_spec.rb +1 -1
  528. data/spec/models/sipity/comment_spec.rb +1 -1
  529. data/spec/models/sipity/entity_spec.rb +3 -3
  530. data/spec/models/sipity/entity_specific_responsibility_spec.rb +1 -1
  531. data/spec/models/sipity/notifiable_context_spec.rb +1 -1
  532. data/spec/models/sipity/notification_recipient_spec.rb +1 -1
  533. data/spec/models/sipity/notification_spec.rb +1 -1
  534. data/spec/models/sipity/role_spec.rb +1 -1
  535. data/spec/models/sipity/workflow_action_spec.rb +1 -1
  536. data/spec/models/sipity/workflow_responsibility_spec.rb +1 -1
  537. data/spec/models/sipity/workflow_role_spec.rb +1 -1
  538. data/spec/models/sipity/workflow_spec.rb +7 -7
  539. data/spec/models/sipity/workflow_state_action_permission_spec.rb +1 -1
  540. data/spec/models/sipity/workflow_state_action_spec.rb +1 -1
  541. data/spec/models/sipity/workflow_state_spec.rb +1 -1
  542. data/spec/models/solr_document_spec.rb +24 -0
  543. data/spec/models/user_mailbox_spec.rb +0 -2
  544. data/spec/models/user_spec.rb +7 -7
  545. data/spec/presenters/hyrax/admin/users_presenter_spec.rb +2 -2
  546. data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +7 -7
  547. data/spec/presenters/hyrax/admin_set_presenter_spec.rb +20 -0
  548. data/spec/presenters/hyrax/collection_options_presenter_spec.rb +2 -0
  549. data/spec/presenters/hyrax/collection_presenter_spec.rb +375 -6
  550. data/spec/presenters/hyrax/file_set_presenter_spec.rb +124 -5
  551. data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +1 -1
  552. data/spec/presenters/hyrax/menu_presenter_spec.rb +5 -0
  553. data/spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb +59 -0
  554. data/spec/presenters/hyrax/select_collection_type_presenter_spec.rb +10 -0
  555. data/spec/presenters/hyrax/select_type_presenter_spec.rb +12 -0
  556. data/spec/presenters/hyrax/work_show_presenter_spec.rb +116 -1
  557. data/spec/presenters/hyrax/workflow_presenter_spec.rb +1 -1
  558. data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +6 -6
  559. data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +2 -2
  560. data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +1 -1
  561. data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +2 -2
  562. data/spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb +2 -2
  563. data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +2 -2
  564. data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +10 -1
  565. data/spec/requests/riiif_spec.rb +32 -0
  566. data/spec/routing/collection_permission_templates_routes_spec.rb +31 -0
  567. data/spec/routing/collection_types_routes.rb +35 -0
  568. data/spec/routing/dashboard_routes_spec.rb +37 -0
  569. data/spec/routing/route_spec.rb +4 -10
  570. data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +2 -2
  571. data/spec/search_builders/hyrax/admin_set_search_builder_spec.rb +4 -40
  572. data/spec/search_builders/hyrax/collection_member_search_builder_spec.rb +53 -0
  573. data/spec/search_builders/hyrax/collection_search_builder_spec.rb +74 -0
  574. data/spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb +92 -0
  575. data/spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb +85 -0
  576. data/spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb +44 -0
  577. data/spec/search_builders/hyrax/my/collections_search_builder_spec.rb +35 -0
  578. data/spec/search_builders/hyrax/work_search_builder_spec.rb +47 -10
  579. data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +191 -0
  580. data/spec/services/hyrax/admin_set_create_service_spec.rb +6 -2
  581. data/spec/services/hyrax/admin_set_member_service_spec.rb +21 -0
  582. data/spec/services/hyrax/batch_create_failure_service_spec.rb +6 -2
  583. data/spec/services/hyrax/collection_types/create_service_spec.rb +91 -0
  584. data/spec/services/hyrax/collection_types/permissions_service_spec.rb +297 -0
  585. data/spec/services/hyrax/collections/collection_member_service_spec.rb +49 -0
  586. data/spec/services/hyrax/collections/managed_collections_service_spec.rb +17 -0
  587. data/spec/services/hyrax/collections/migration_service_spec.rb +280 -0
  588. data/spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb +28 -0
  589. data/spec/services/hyrax/collections/nested_collection_query_service_spec.rb +353 -0
  590. data/spec/services/hyrax/collections/permissions_create_service_spec.rb +41 -0
  591. data/spec/services/hyrax/collections/permissions_service_spec.rb +278 -0
  592. data/spec/services/hyrax/collections_service_spec.rb +30 -8
  593. data/spec/services/hyrax/embargo_service_spec.rb +26 -5
  594. data/spec/services/hyrax/iiif_authorization_service_spec.rb +43 -0
  595. data/spec/services/hyrax/multiple_membership_checker_spec.rb +155 -0
  596. data/spec/services/hyrax/qa_select_service_spec.rb +8 -2
  597. data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +1 -1
  598. data/spec/services/hyrax/workflow/notification_generator_spec.rb +1 -1
  599. data/spec/services/hyrax/workflow/permission_generator_spec.rb +1 -1
  600. data/spec/services/hyrax/workflow/permission_query_spec.rb +2 -2
  601. data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -1
  602. data/spec/services/hyrax/workflow/workflow_factory_spec.rb +1 -1
  603. data/spec/services/hyrax/workflow/workflow_schema_spec.rb +1 -1
  604. data/spec/services/hyrax/works/managed_works_service_spec.rb +17 -0
  605. data/spec/spec_helper.rb +34 -4
  606. data/spec/support/features/session_helpers.rb +1 -1
  607. data/spec/support/matchers/collection_type_property_matchers.rb +29 -0
  608. data/spec/test_app_templates/lib/generators/test_app_generator.rb +64 -24
  609. data/spec/views/_flash_msg.html.erb_spec.rb +0 -2
  610. data/spec/views/_user_util_links.html.erb_spec.rb +0 -2
  611. data/spec/views/catalog/_index_list_default.html.erb_spec.rb +9 -9
  612. data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +42 -20
  613. data/spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb +43 -0
  614. data/spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb +27 -0
  615. data/spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb +27 -0
  616. data/spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb +16 -0
  617. data/spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb +73 -0
  618. data/spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb +106 -0
  619. data/spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb +41 -0
  620. data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +1 -1
  621. data/spec/views/hyrax/base/_form.html.erb_spec.rb +18 -42
  622. data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +11 -22
  623. data/spec/views/hyrax/base/_form_files.html.erb_spec.rb +38 -0
  624. data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +1 -1
  625. data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +1 -2
  626. data/spec/views/hyrax/base/_form_rendering.html.erb_spec.rb +18 -0
  627. data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +1 -1
  628. data/spec/views/hyrax/base/show.html.erb_spec.rb +24 -5
  629. data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +1 -1
  630. data/spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb +124 -0
  631. data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
  632. data/spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb +39 -0
  633. data/spec/views/hyrax/collections/show.html.erb_spec.rb +20 -23
  634. data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +14 -9
  635. data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +5 -1
  636. data/spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb +23 -0
  637. data/spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb +67 -0
  638. data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +13 -34
  639. data/spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb +108 -0
  640. data/spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb +64 -0
  641. data/spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb +44 -0
  642. data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +1 -1
  643. data/spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb +23 -0
  644. data/spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb +118 -0
  645. data/spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb +62 -0
  646. data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
  647. data/spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb +63 -0
  648. data/spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb +18 -0
  649. data/spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb +5 -13
  650. data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +86 -9
  651. data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +1 -1
  652. data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +1 -1
  653. data/spec/views/hyrax/homepage/index.html.erb_spec.rb +14 -5
  654. data/spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb +65 -0
  655. data/spec/views/hyrax/my/_search_header.html.erb_spec.rb +6 -6
  656. data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +6 -4
  657. data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +90 -22
  658. data/spec/views/hyrax/my/works/index.html.erb_spec.rb +3 -1
  659. data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +16 -18
  660. data/spec/views/pages/show.html.erb_spec.rb +1 -1
  661. data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +36 -10
  662. data/tasks/hyrax_dev.rake +27 -4
  663. data/template.rb +2 -1
  664. metadata +578 -290
  665. data/.solr_wrapper +0 -6
  666. data/app/assets/javascripts/hyrax/relationships/work.es6 +0 -7
  667. data/app/assets/javascripts/hyrax/workflow_actions_affix.js +0 -14
  668. data/app/assets/stylesheets/hyrax/_work_editor.scss +0 -17
  669. data/app/controllers/concerns/hyrax/parent_container.rb +0 -35
  670. data/app/helpers/dashboard_helper.rb +0 -3
  671. data/app/services/hyrax/parent_service.rb +0 -19
  672. data/app/views/catalog/_show_partials/_default.html.erb +0 -21
  673. data/app/views/catalog/_show_partials/_default_details.html.erb +0 -15
  674. data/app/views/catalog/_show_partials/_facets.html.erb +0 -52
  675. data/app/views/hyrax/base/_browse_everything.html.erb +0 -6
  676. data/app/views/hyrax/base/_find_work_widget.html.erb +0 -10
  677. data/app/views/hyrax/dashboard/collections/_form_default_group.html.erb +0 -25
  678. data/app/views/hyrax/dashboard/collections/_form_permission.html.erb +0 -24
  679. data/app/views/hyrax/file_sets/jq_upload.json.jbuilder +0 -8
  680. data/solr/config/_rest_managed.json +0 -3
  681. data/solr/config/admin-extra.html +0 -31
  682. data/solr/config/elevate.xml +0 -36
  683. data/solr/config/mapping-ISOLatin1Accent.txt +0 -246
  684. data/solr/config/protwords.txt +0 -21
  685. data/solr/config/schema.xml +0 -366
  686. data/solr/config/scripts.conf +0 -24
  687. data/solr/config/solrconfig.xml +0 -322
  688. data/solr/config/spellings.txt +0 -2
  689. data/solr/config/stopwords.txt +0 -58
  690. data/solr/config/stopwords_en.txt +0 -58
  691. data/solr/config/synonyms.txt +0 -31
  692. data/solr/config/xslt/example.xsl +0 -132
  693. data/solr/config/xslt/example_atom.xsl +0 -67
  694. data/solr/config/xslt/example_rss.xsl +0 -66
  695. data/solr/config/xslt/luke.xsl +0 -337
  696. data/spec/abilities/admin_set_abilities_spec.rb +0 -15
  697. data/spec/abilities/collection_abilities_spec.rb +0 -51
  698. data/spec/features/admin_admin_set_spec.rb +0 -30
  699. data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +0 -10
  700. data/spec/services/hyrax/parent_service_spec.rb +0 -11
  701. data/spec/support/uploaded_file_monkeypatch.rb +0 -6
  702. data/spec/views/hyrax/base/_browse_everything.html.erb_spec.rb +0 -17
  703. data/spec/views/hyrax/base/_find_work_widget.html.erb_spec.rb +0 -20
@@ -1,6 +1,6 @@
1
1
  require 'redlock'
2
2
 
3
- RSpec.feature 'Creating a new child Work', :workflow do
3
+ RSpec.describe 'Creating a new child Work', :workflow do
4
4
  let(:user) { create(:user) }
5
5
  let!(:sipity_entity) do
6
6
  create(:sipity_entity, proxy_for_global_id: parent.to_global_id.to_s)
@@ -0,0 +1,44 @@
1
+ RSpec.describe 'Creating a new Work as admin', :js, :workflow do
2
+ let(:user) { create(:admin) }
3
+ let(:admin_set_1) do
4
+ create(:admin_set, id: AdminSet::DEFAULT_ID,
5
+ title: ["Default Admin Set"],
6
+ description: ["A description"],
7
+ edit_users: [user.user_key])
8
+ end
9
+ let(:admin_set_2) do
10
+ create(:admin_set, title: ["Second Admin Set"],
11
+ description: ["A description"],
12
+ edit_users: [user.user_key])
13
+ end
14
+
15
+ context 'when there are multiple admin sets' do
16
+ before do
17
+ create(:permission_template_access,
18
+ :deposit,
19
+ permission_template: create(:permission_template, source_id: admin_set_1.id, with_admin_set: true, with_active_workflow: true),
20
+ agent_type: 'user',
21
+ agent_id: user.user_key)
22
+ create(:permission_template_access,
23
+ :deposit,
24
+ permission_template: create(:permission_template, source_id: admin_set_2.id, with_admin_set: true, with_active_workflow: true),
25
+ agent_type: 'user',
26
+ agent_id: user.user_key)
27
+ sign_in user
28
+ end
29
+
30
+ it "allows default admin set to be the first item in the select menu" do
31
+ visit '/dashboard'
32
+ click_link 'Works'
33
+ click_link "Add new work"
34
+ choose "payload_concern", option: "GenericWork"
35
+ click_button 'Create work'
36
+ click_link "Relationship" # switch tab
37
+ expect(page).to have_content('Administrative Set')
38
+ expect(page).to have_content('Second Admin Set')
39
+ expect(page).to have_content('Default Admin Set')
40
+ expect(page).to have_selector('select#generic_work_admin_set_id')
41
+ expect(page).to have_select('generic_work_admin_set_id', selected: 'Default Admin Set')
42
+ end
43
+ end
44
+ end
@@ -1,4 +1,4 @@
1
- RSpec.feature 'Creating a new Work', :js, :workflow do
1
+ RSpec.describe 'Creating a new Work', :js, :workflow do
2
2
  let(:user) { create(:user) }
3
3
  let(:file1) { File.open(fixture_path + '/world.png') }
4
4
  let(:file2) { File.open(fixture_path + '/image.jp2') }
@@ -5,7 +5,7 @@ RSpec.describe "As an admin user I should be able to see all works" do
5
5
  before do
6
6
  sign_in create(:admin)
7
7
  end
8
- scenario do
8
+ it do
9
9
  visit '/dashboard/works'
10
10
  expect(page).to have_content 'Works'
11
11
  expect(page).to have_content 'Testing #1'
@@ -1,39 +1,300 @@
1
- RSpec.describe 'collection', type: :feature do
1
+ RSpec.describe 'collection', type: :feature, clean_repo: true do
2
2
  let(:user) { create(:user) }
3
+ let(:admin_user) { create(:admin) }
4
+ let(:collection_type) { create(:collection_type, creator_user: user) }
5
+ let(:user_collection_type) { create(:user_collection_type) }
6
+ let(:solr_gid_field) { Collection.collection_type_gid_document_field_name }
7
+ let(:solr_model_field) { 'has_model_ssim' }
8
+
9
+ # Setting Title on admin sets to avoid false positive matches with collections.
10
+ let(:admin_set_a) { create(:admin_set, creator: [admin_user.user_key], title: ['Set A'], with_permission_template: true) }
11
+ let(:admin_set_b) { create(:admin_set, creator: [user.user_key], title: ['Set B'], edit_users: [user.user_key], with_permission_template: true) }
12
+ let(:collection1) { create(:public_collection, user: user, collection_type_gid: collection_type.gid, create_access: true) }
13
+ let(:collection2) { create(:public_collection, user: user, collection_type_gid: collection_type.gid, create_access: true) }
14
+ let(:collection3) { create(:public_collection, user: admin_user, collection_type_gid: collection_type.gid, create_access: true) }
15
+ let(:collection4) { create(:public_collection, user: admin_user, collection_type_gid: user_collection_type.gid, create_access: true) }
16
+
17
+ describe 'Your Collections tab' do
18
+ context 'when non-admin user' do
19
+ before do
20
+ user
21
+ admin_user
22
+ admin_set_a
23
+ admin_set_b
24
+ create(:permission_template_access,
25
+ :manage,
26
+ permission_template: admin_set_b.permission_template,
27
+ agent_type: 'user',
28
+ agent_id: user.user_key)
29
+ collection1
30
+ collection2
31
+ collection3
32
+ collection4
33
+ sign_in user
34
+ visit '/dashboard/my/collections'
35
+ end
3
36
 
4
- let(:collection1) { create(:public_collection, user: user) }
5
- let(:collection2) { create(:public_collection, user: user) }
37
+ it "has page title, does not have tabs, and lists only user's collections" do
38
+ expect(page).to have_content 'Collections'
39
+ expect(page).not_to have_link 'All Collections'
40
+ expect(page).not_to have_link 'Your Collections'
41
+ expect(page).to have_link(collection1.title.first)
42
+ expect(page).to have_link(collection2.title.first)
43
+ expect(page).to have_link(admin_set_b.title.first)
44
+ expect(page).not_to have_link(collection3.title.first)
45
+ expect(page).not_to have_link(admin_set_a.title.first)
46
+ end
6
47
 
7
- describe 'create collection' do
48
+ it "has collection type and visibility filters" do
49
+ expect(page).to have_button 'Visibility'
50
+ expect(page).to have_link 'Public',
51
+ href: /visibility_ssi.+#{Regexp.escape(CGI.escape(collection3.visibility))}/
52
+ expect(page).to have_button 'Collection Type'
53
+ expect(page).to have_link collection_type.title,
54
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(collection_type.gid))}/
55
+ expect(page).to have_link 'AdminSet',
56
+ href: /#{solr_model_field}.+#{Regexp.escape('AdminSet')}/
57
+ expect(page).not_to have_link user_collection_type.title,
58
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(user_collection_type.gid))}/
59
+ expect(page).not_to have_link 'Collection',
60
+ href: /#{solr_model_field}.+#{Regexp.escape('Collection')}/
61
+ end
62
+ end
63
+
64
+ context 'when admin user' do
65
+ before do
66
+ user
67
+ admin_user
68
+ admin_set_a
69
+ admin_set_b
70
+ create(:permission_template_access,
71
+ :manage,
72
+ permission_template: admin_set_a.permission_template,
73
+ agent_type: 'user',
74
+ agent_id: admin_user.user_key)
75
+ create(:permission_template_access,
76
+ :manage,
77
+ permission_template: admin_set_b.permission_template,
78
+ agent_type: 'group',
79
+ agent_id: 'admin')
80
+ collection1
81
+ collection2
82
+ collection3
83
+ collection4
84
+ sign_in admin_user
85
+ visit '/dashboard/my/collections'
86
+ end
87
+
88
+ it "has page title, has tabs for All and Your Collections, and lists collections with edit access" do
89
+ expect(page).to have_content 'Collections'
90
+ expect(page).to have_link 'All Collections'
91
+ expect(page).to have_link 'Your Collections'
92
+ expect(page).to have_link(collection3.title.first)
93
+ expect(page).to have_link(collection4.title.first)
94
+ expect(page).to have_link(admin_set_a.title.first)
95
+ expect(page).not_to have_link(collection1.title.first)
96
+ expect(page).not_to have_link(collection2.title.first)
97
+ expect(page).not_to have_link(admin_set_b.title.first)
98
+ end
99
+
100
+ it "has collection type and visibility filters" do
101
+ expect(page).to have_button 'Visibility'
102
+ expect(page).to have_link 'Public',
103
+ href: /visibility_ssi.+#{Regexp.escape(CGI.escape(collection3.visibility))}/
104
+ expect(page).to have_button 'Collection Type'
105
+ expect(page).to have_link collection_type.title,
106
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(collection_type.gid))}/
107
+ expect(page).to have_link user_collection_type.title,
108
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(user_collection_type.gid))}/
109
+ expect(page).to have_link 'AdminSet',
110
+ href: /#{solr_model_field}.+#{Regexp.escape('AdminSet')}/
111
+ expect(page).not_to have_link 'Collection',
112
+ href: /#{solr_model_field}.+#{Regexp.escape('Collection')}/
113
+ end
114
+ end
115
+ end
116
+
117
+ describe 'All Collections tab (for admin users only)' do
8
118
  before do
9
- sign_in user
119
+ user
120
+ admin_user
121
+ collection1
122
+ collection2
123
+ collection3
124
+ collection4
125
+ admin_set_a
126
+ admin_set_b
127
+ sign_in admin_user
10
128
  visit '/dashboard/my/collections'
11
129
  end
12
130
 
131
+ it 'lists all collections for all users', with_nested_reindexing: true do
132
+ expect(page).to have_link 'All Collection'
133
+ click_link 'All Collections'
134
+ expect(page).to have_link(collection1.title.first)
135
+ expect(page).to have_link(collection2.title.first)
136
+ expect(page).to have_link(collection3.title.first)
137
+ expect(page).to have_link(collection4.title.first)
138
+ expect(page).to have_link(admin_set_a.title.first)
139
+ expect(page).to have_link(admin_set_b.title.first)
140
+ end
141
+
142
+ it 'has a collection type filter' do
143
+ expect(page).to have_link 'All Collection'
144
+ click_link 'All Collections'
145
+ expect(page).to have_button 'Visibility'
146
+ expect(page).to have_link 'Public',
147
+ href: /visibility_ssi.+#{Regexp.escape(CGI.escape(collection1.visibility))}/
148
+ expect(page).to have_button 'Collection Type'
149
+ expect(page).to have_link collection_type.title,
150
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(collection_type.gid))}/
151
+ expect(page).to have_link user_collection_type.title,
152
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(user_collection_type.gid))}/
153
+ expect(page).to have_link 'AdminSet',
154
+ href: /#{solr_model_field}.+#{Regexp.escape('AdminSet')}/
155
+ expect(page).not_to have_link 'Collection',
156
+ href: /#{solr_model_field}.+#{Regexp.escape('Collection')}/
157
+ end
158
+ end
159
+
160
+ describe 'Managed Collections tab (for non-admin users with shared access' do
161
+ let(:user2) { create(:user) }
162
+
163
+ before do
164
+ user
165
+ admin_user
166
+ collection1
167
+ collection2
168
+ collection3
169
+ collection4
170
+ create(:permission_template_access,
171
+ :manage,
172
+ permission_template: collection1.permission_template,
173
+ agent_type: 'user',
174
+ agent_id: user2.user_key)
175
+ collection1.reset_access_controls!
176
+ create(:permission_template_access,
177
+ :deposit,
178
+ permission_template: collection2.permission_template,
179
+ agent_type: 'user',
180
+ agent_id: user2.user_key)
181
+ collection2.reset_access_controls!
182
+ create(:permission_template_access,
183
+ :view,
184
+ permission_template: collection4.permission_template,
185
+ agent_type: 'user',
186
+ agent_id: user2.user_key)
187
+ collection4.reset_access_controls!
188
+ sign_in user2
189
+ visit '/dashboard/my/collections'
190
+ end
191
+
192
+ it 'lists managed collections only for user2' do
193
+ expect(page).to have_link 'Managed Collections'
194
+ click_link 'Managed Collections'
195
+ expect(page).to have_link(collection1.title.first)
196
+ expect(page).to have_link(collection2.title.first)
197
+ expect(page).not_to have_link(collection3.title.first)
198
+ expect(page).to have_link(collection4.title.first)
199
+ expect(page).not_to have_link(admin_set_a.title.first)
200
+ expect(page).not_to have_link(admin_set_b.title.first)
201
+ end
202
+
203
+ it 'has a collection type filter' do
204
+ expect(page).to have_link 'Managed Collections'
205
+ click_link 'Managed Collections'
206
+ expect(page).to have_button 'Visibility'
207
+ expect(page).to have_link 'Public',
208
+ href: /visibility_ssi.+#{Regexp.escape(CGI.escape(collection1.visibility))}/
209
+ expect(page).to have_button 'Collection Type'
210
+ expect(page).to have_link collection_type.title,
211
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(collection_type.gid))}/
212
+ expect(page).to have_link user_collection_type.title,
213
+ href: /#{solr_gid_field}.+#{Regexp.escape(CGI.escape(user_collection_type.gid))}/
214
+ expect(page).not_to have_link 'AdminSet',
215
+ href: /#{solr_model_field}.+#{Regexp.escape('AdminSet')}/
216
+ expect(page).not_to have_link 'Collection',
217
+ href: /#{solr_model_field}.+#{Regexp.escape('Collection')}/
218
+ end
219
+ end
220
+
221
+ describe 'create collection' do
13
222
  let(:title) { "Test Collection" }
14
223
  let(:description) { "Description for collection we are testing." }
15
224
 
16
- it "makes a new collection" do
17
- click_link "New Collection"
18
- expect(page).to have_content 'Create New Collection'
19
- click_link('Additional fields')
225
+ context 'when user can create collections of multiple types' do
226
+ before do
227
+ collection_type
228
+ user_collection_type
229
+
230
+ sign_in user
231
+ visit '/dashboard/my/collections'
232
+ end
233
+
234
+ it "makes a new collection", :js do
235
+ click_button "New Collection"
236
+ expect(page).to have_content 'Select type of collection'
237
+
238
+ choose('User Collection')
239
+ click_on('Create collection')
240
+
241
+ expect(page).to have_selector('h1', text: 'New User Collection')
242
+ expect(page).to have_selector "input.collection_title.multi_value"
243
+
244
+ click_link('Additional fields')
245
+ expect(page).to have_selector "input.collection_creator.multi_value"
246
+
247
+ fill_in('Title', with: title)
248
+ fill_in('Abstract or Summary', with: description)
249
+ fill_in('Related URL', with: 'http://example.com/')
250
+
251
+ click_button("Save")
252
+ expect(page).to have_content title
253
+ expect(page).to have_content description
254
+ end
255
+ end
256
+
257
+ context 'when user can create collections of one type' do
258
+ before do
259
+ user_collection_type
20
260
 
21
- expect(page).to have_selector "input.collection_creator.multi_value"
22
- expect(page).to have_selector "input.collection_title.multi_value"
261
+ sign_in user
262
+ visit '/dashboard/my/collections'
263
+ end
264
+
265
+ it 'makes a new collection' do
266
+ click_link "New Collection"
267
+ expect(page).to have_selector('h1', text: 'New User Collection')
268
+ expect(page).to have_selector "input.collection_title.multi_value"
269
+
270
+ click_link('Additional fields')
271
+ expect(page).to have_selector "input.collection_creator.multi_value"
23
272
 
24
- fill_in('Title', with: title)
25
- fill_in('Abstract or Summary', with: description)
26
- fill_in('Related URL', with: 'http://example.com/')
273
+ fill_in('Title', with: title)
274
+ fill_in('Abstract or Summary', with: description)
275
+ fill_in('Related URL', with: 'http://example.com/')
27
276
 
28
- click_button("Create Collection")
29
- expect(page).to have_content 'Works in this Collection'
30
- expect(page).to have_content title
31
- expect(page).to have_content description
277
+ click_button("Save")
278
+ expect(page).to have_content title
279
+ expect(page).to have_content description
280
+ end
281
+ end
282
+
283
+ context 'when user can not create collections' do
284
+ before do
285
+ sign_in user
286
+ visit '/dashboard/my/collections'
287
+ end
288
+
289
+ it 'does show New Collection button' do
290
+ expect(page).not_to have_link "New Collection"
291
+ expect(page).not_to have_button "New Collection"
292
+ end
32
293
  end
33
294
  end
34
295
 
35
296
  describe "adding works to a collection", skip: "we need to define a dashboard/works path" do
36
- let!(:collection) { create!(:collection, title: ["Barrel of monkeys"], user: user) }
297
+ let!(:collection) { create!(:collection, title: ["Barrel of monkeys"], user: user, with_permission_template: true) }
37
298
  let!(:work1) { create(:work, title: ["King Louie"], user: user) }
38
299
  let!(:work2) { create(:work, title: ["King Kong"], user: user) }
39
300
 
@@ -44,7 +305,7 @@ RSpec.describe 'collection', type: :feature do
44
305
  it "attaches the works", :js do
45
306
  visit '/dashboard/my/works'
46
307
  first('input#check_all').click
47
- click_button "Add to Collection" # opens the modal
308
+ click_button "Add to collection" # opens the modal
48
309
  # since there is only one collection, it's not necessary to choose a radio button
49
310
  click_button "Update Collection"
50
311
  expect(page).to have_content "Works in this Collection"
@@ -56,26 +317,223 @@ RSpec.describe 'collection', type: :feature do
56
317
  end
57
318
 
58
319
  describe 'delete collection' do
59
- let!(:collection) { create(:public_collection, user: user) }
320
+ let!(:empty_collection) { create(:public_collection, title: ['Empty Collection'], user: user, create_access: true) }
321
+ let!(:collection) { create(:public_collection, title: ['Collection with Work'], user: user, create_access: true) }
322
+ let!(:admin_user) { create(:admin) }
323
+ let!(:empty_adminset) { create(:admin_set, title: ['Empty Admin Set'], creator: [admin_user.user_key], with_permission_template: true) }
324
+ let!(:adminset) { create(:admin_set, title: ['Admin Set with Work'], creator: [admin_user.user_key], with_permission_template: true) }
325
+ let!(:work) { create(:work, title: ["King Louie"], admin_set: adminset, member_of_collections: [collection], user: user) }
326
+
327
+ # check table row has appropriate data attributes added
328
+ def check_tr_data_attributes(id, type)
329
+ url_fragment = get_url_fragment(type)
330
+ expect(page).to have_selector("tr[data-id='#{id}'][data-colls-hash]")
331
+ expect(page).to have_selector("tr[data-post-url='/dashboard/collections/#{id}/within?locale=en']")
332
+ expect(page).to have_selector("tr[data-post-delete-url='/#{url_fragment}/#{id}?locale=en']")
333
+ end
60
334
 
61
- before do
62
- sign_in user
63
- visit '/dashboard/my/collections'
335
+ # check data attributes have been transferred from table row to the modal
336
+ def check_modal_data_attributes(id, type)
337
+ url_fragment = get_url_fragment(type)
338
+ expect(page).to have_selector("div[data-id='#{id}']")
339
+ expect(page).to have_selector("div[data-post-delete-url='/#{url_fragment}/#{id}?locale=en']")
64
340
  end
65
341
 
66
- it "deletes a collection" do
67
- expect(page).to have_content(collection.title.first)
68
- within('#document_' + collection.id) do
69
- first('button.dropdown-toggle').click
70
- first(".itemtrash").click
342
+ def get_url_fragment(type)
343
+ (type == 'admin_set' ? 'admin/admin_sets' : 'dashboard/collections')
344
+ end
345
+
346
+ context 'when user created the collection' do
347
+ before do
348
+ user
349
+ sign_in user
350
+ visit '/dashboard/my/collections' # Your Collections tab
351
+ end
352
+
353
+ context 'and collection is empty' do
354
+ it 'and user confirms delete, deletes the collection', :js do
355
+ expect(page).to have_content(empty_collection.title.first)
356
+ check_tr_data_attributes(empty_collection.id, 'collection')
357
+ # check that modal data attributes haven't been added yet
358
+ expect(page).not_to have_selector("div[data-id='#{empty_collection.id}']")
359
+ within('#document_' + empty_collection.id) do
360
+ first('button.dropdown-toggle').click
361
+ first('.itemtrash').click
362
+ end
363
+ expect(page).to have_selector("div#collection-empty-to-delete-modal", visible: true)
364
+ check_modal_data_attributes(empty_collection.id, 'collection')
365
+ within("div#collection-empty-to-delete-modal") do
366
+ click_button('Delete')
367
+ end
368
+ expect(page).not_to have_content(empty_collection.title.first)
369
+ end
370
+
371
+ it 'and user cancels, does NOT delete the collection', :js do
372
+ expect(page).to have_content(empty_collection.title.first)
373
+ check_tr_data_attributes(empty_collection.id, 'collection')
374
+ # check that modal data attributes haven't been added yet
375
+ expect(page).not_to have_selector("div[data-id='#{empty_collection.id}']")
376
+ within("#document_#{empty_collection.id}") do
377
+ first('button.dropdown-toggle').click
378
+ first('.itemtrash').click
379
+ end
380
+ expect(page).to have_selector("div#collection-empty-to-delete-modal", visible: true)
381
+ check_modal_data_attributes(empty_collection.id, 'collection')
382
+
383
+ within("div#collection-empty-to-delete-modal") do
384
+ click_button('Cancel')
385
+ end
386
+ expect(page).to have_content(empty_collection.title.first)
387
+ end
388
+ end
389
+
390
+ context 'and collection is not empty' do
391
+ it 'and user confirms delete, deletes the collection', :js do
392
+ expect(page).to have_content(collection.title.first)
393
+ check_tr_data_attributes(collection.id, 'collection')
394
+ within("#document_#{collection.id}") do
395
+ first('button.dropdown-toggle').click
396
+ first('.itemtrash').click
397
+ end
398
+ expect(page).to have_selector("div#collection-to-delete-modal", visible: true)
399
+ check_modal_data_attributes(collection.id, 'collection')
400
+ within("div#collection-to-delete-modal") do
401
+ find('button.modal-delete-button').click
402
+ end
403
+ expect(page).not_to have_content(collection.title.first)
404
+ end
405
+
406
+ it 'and user cancels, does NOT delete the collection', :js do
407
+ expect(page).to have_content(collection.title.first)
408
+ within("#document_#{collection.id}") do
409
+ first('button.dropdown-toggle').click
410
+ first('.itemtrash').click
411
+ end
412
+ expect(page).to have_selector("div#collection-to-delete-modal", visible: true)
413
+
414
+ within("div#collection-to-delete-modal") do
415
+ click_button('Cancel')
416
+ end
417
+ expect(page).to have_content(collection.title.first)
418
+ end
419
+ end
420
+ end
421
+
422
+ context 'when user without permissions selects delete' do
423
+ let(:user2) { create(:user) }
424
+
425
+ before do
426
+ create(:permission_template_access,
427
+ :deposit,
428
+ permission_template: collection.permission_template,
429
+ agent_type: 'user',
430
+ agent_id: user2.user_key)
431
+ sign_in user2
432
+ visit '/dashboard/collections' # Managed Collections tab
433
+ end
434
+
435
+ it 'does not allow delete collection' do
436
+ expect(page).to have_content(collection.title.first)
437
+ check_tr_data_attributes(collection.id, 'collection')
438
+ within("#document_#{collection.id}") do
439
+ first('button.dropdown-toggle').click
440
+ first('.itemtrash').click
441
+ end
442
+ expect(page).to have_selector('div#collection-to-delete-deny-modal', visible: true)
443
+ within('div#collection-to-delete-deny-modal') do
444
+ click_button('Close')
445
+ end
446
+ expect(page).to have_content(collection.title.first)
447
+ end
448
+ end
449
+
450
+ context 'when user created the admin set' do
451
+ before do
452
+ sign_in admin_user
453
+ visit '/dashboard/collections' # All Collections tab
454
+ end
455
+
456
+ context 'and admin set is empty' do
457
+ it 'and user confirms delete, deletes the admin set', :js do
458
+ expect(page).to have_content(empty_adminset.title.first)
459
+ check_tr_data_attributes(empty_adminset.id, 'admin_set')
460
+ within('#document_' + empty_adminset.id) do
461
+ first('button.dropdown-toggle').click
462
+ first('.itemtrash').click
463
+ end
464
+ expect(page).to have_selector("div#collection-empty-to-delete-modal", visible: true)
465
+ check_modal_data_attributes(empty_adminset.id, 'admin_set')
466
+ within("div#collection-empty-to-delete-modal") do
467
+ find('button.modal-delete-button').click
468
+ end
469
+ expect(page).not_to have_content(empty_adminset.title.first)
470
+ end
471
+
472
+ it 'and user cancels, does NOT delete the admin set', :js do
473
+ expect(page).to have_content(empty_adminset.title.first)
474
+ check_tr_data_attributes(empty_adminset.id, 'admin_set')
475
+ within("#document_#{empty_adminset.id}") do
476
+ first('button.dropdown-toggle').click
477
+ first('.itemtrash').click
478
+ end
479
+ expect(page).to have_selector("div#collection-empty-to-delete-modal", visible: true)
480
+ check_modal_data_attributes(empty_adminset.id, 'admin_set')
481
+ within("div#collection-empty-to-delete-modal") do
482
+ click_button('Cancel')
483
+ end
484
+ expect(page).to have_content(empty_adminset.title.first)
485
+ end
486
+ end
487
+
488
+ context 'and admin set is not empty' do
489
+ it 'does not allow delete admin set' do
490
+ expect(page).to have_content(adminset.title.first)
491
+ check_tr_data_attributes(adminset.id, 'admin_set')
492
+ within("#document_#{adminset.id}") do
493
+ first('button.dropdown-toggle').click
494
+ first('.itemtrash').click
495
+ end
496
+ expect(page).to have_selector("div#collection-admin-set-delete-deny-modal", visible: true)
497
+ within("div#collection-admin-set-delete-deny-modal") do
498
+ click_button('Close')
499
+ end
500
+ expect(page).to have_content(adminset.title.first)
501
+ end
502
+ end
503
+ end
504
+
505
+ context 'when user without permissions selects delete' do
506
+ let(:user2) { create(:user) }
507
+
508
+ before do
509
+ create(:permission_template_access,
510
+ :view,
511
+ permission_template: adminset.permission_template,
512
+ agent_type: 'user',
513
+ agent_id: user2.user_key)
514
+ sign_in user2
515
+ visit '/dashboard/collections' # Managed Collections tab
516
+ end
517
+
518
+ xit 'does not allow delete admin set' do
519
+ # TODO: Depositors & viewers cannot see admin sets in Managed Collections list. Should they?
520
+ expect(page).to have_content(adminset.title.first)
521
+ within("#document_#{adminset.id}") do
522
+ first('button.dropdown-toggle').click
523
+ first('.itemtrash').click
524
+ end
525
+ expect(page).to have_selector('div#collection-to-delete-deny-modal', visible: true)
526
+ within('div#collection-to-delete-deny-modal') do
527
+ click_button('Close')
528
+ end
529
+ expect(page).to have_content(adminset.title.first)
71
530
  end
72
- expect(page).not_to have_content(collection.title.first)
73
531
  end
74
532
  end
75
533
 
76
- describe 'collection show page' do
534
+ describe 'collection show page', with_nested_reindexing: true do
77
535
  let(:collection) do
78
- create(:public_collection, user: user, description: ['collection description'])
536
+ create(:public_collection, user: user, description: ['collection description'], create_access: true)
79
537
  end
80
538
  let!(:work1) { create(:work, title: ["King Louie"], member_of_collections: [collection], user: user) }
81
539
  let!(:work2) { create(:work, title: ["King Kong"], member_of_collections: [collection], user: user) }
@@ -85,11 +543,9 @@ RSpec.describe 'collection', type: :feature do
85
543
  visit '/dashboard/my/collections'
86
544
  end
87
545
 
88
- it "has creation date for collections" do
89
- expect(page).to have_content(collection1.create_date.to_date.to_formatted_s(:standard))
90
- end
546
+ it "has creation date for collections and shows a collection with a listing of Descriptive Metadata and catalog-style search results" do
547
+ expect(page).to have_content(collection.create_date.to_date.to_formatted_s(:standard))
91
548
 
92
- it "shows a collection with a listing of Descriptive Metadata and catalog-style search results" do
93
549
  expect(page).to have_content(collection.title.first)
94
550
  within('#document_' + collection.id) do
95
551
  click_link("Display all details of #{collection.title.first}")
@@ -104,7 +560,7 @@ RSpec.describe 'collection', type: :feature do
104
560
  # Should have search results / contents listing
105
561
  expect(page).to have_content(work1.title.first)
106
562
  expect(page).to have_content(work2.title.first)
107
- expect(page).not_to have_css(".pager")
563
+ expect(page).not_to have_css(".pagination")
108
564
 
109
565
  click_link "Gallery"
110
566
  expect(page).to have_content(work1.title.first)
@@ -133,23 +589,94 @@ RSpec.describe 'collection', type: :feature do
133
589
  expect(page).to have_content(work1.title.first)
134
590
  expect(page).not_to have_content(work2.title.first)
135
591
  end
592
+
593
+ context 'adding existing works to a collection', js: true do
594
+ before do
595
+ collection1 # create collections by referencing them
596
+ collection2
597
+ sign_in user
598
+ end
599
+
600
+ it "preselects the collection we are adding works to and adds the selected works" do
601
+ visit "/dashboard/collections/#{collection1.id}"
602
+ click_link 'Add existing works'
603
+ first('input#check_all').click
604
+ click_button "Add to collection"
605
+ expect(page).to have_css("input#id_#{collection1.id}[checked='checked']")
606
+ expect(page).not_to have_css("input#id_#{collection2.id}[checked='checked']")
607
+
608
+ visit "/dashboard/collections/#{collection2.id}"
609
+ click_link 'Add existing works'
610
+ first('input#check_all').click
611
+ click_button "Add to collection"
612
+ expect(page).not_to have_css("input#id_#{collection1.id}[checked='checked']")
613
+ expect(page).to have_css("input#id_#{collection2.id}[checked='checked']")
614
+
615
+ click_button "Save changes"
616
+ expect(page).to have_content(work1.title.first)
617
+ expect(page).to have_content(work2.title.first)
618
+ end
619
+ end
620
+
621
+ context 'adding a new works to a collection', js: true do
622
+ before do
623
+ collection1 # create collections by referencing them
624
+ collection2
625
+ sign_in user
626
+ # stub out characterization. Travis doesn't have fits installed, and it's not relevant to the test.
627
+ allow(CharacterizeJob).to receive(:perform_later)
628
+ end
629
+
630
+ it "preselects the collection we are adding works to and adds the new work" do
631
+ visit "/dashboard/collections/#{collection1.id}"
632
+ click_link 'Deposit new work through this collection'
633
+ choose "payload_concern", option: "GenericWork"
634
+ click_button 'Create work'
635
+
636
+ # verify the collection is pre-selected
637
+ click_link "Relationships" # switch tab
638
+ expect(page).to have_selector("table tr", text: collection1.title.first)
639
+ expect(page).not_to have_selector("table tr", text: collection2.title.first)
640
+
641
+ # add required file
642
+ click_link "Files" # switch tab
643
+ within('span#addfiles') do
644
+ attach_file("files[]", "#{Hyrax::Engine.root}/spec/fixtures/image.jp2", visible: false)
645
+ end
646
+ # set required metadata
647
+ click_link "Descriptions" # switch tab
648
+ fill_in('Title', with: 'New Work for Collection')
649
+ fill_in('Creator', with: 'Doe, Jane')
650
+ fill_in('Keyword', with: 'testing')
651
+ select('In Copyright', from: 'Rights statement')
652
+ # check required acceptance
653
+ check('agreement')
654
+
655
+ click_on('Save')
656
+
657
+ # verify new work was added to collection1
658
+ visit "/dashboard/collections/#{collection1.id}"
659
+ expect(page).to have_content("New Work for Collection")
660
+ end
661
+ end
136
662
  end
137
663
 
138
664
  # TODO: this is just like the block above. Merge them.
139
- describe 'show pages of a collection' do
665
+ describe 'show pages of a collection', with_nested_reindexing: true do
140
666
  before do
141
667
  docs = (0..12).map do |n|
142
668
  { "has_model_ssim" => ["GenericWork"], :id => "zs25x871q#{n}",
143
669
  "depositor_ssim" => [user.user_key],
144
670
  "suppressed_bsi" => false,
145
671
  "member_of_collection_ids_ssim" => [collection.id],
672
+ "nesting_collection__parent_ids_ssim" => [collection.id],
146
673
  "edit_access_person_ssim" => [user.user_key] }
147
674
  end
148
675
  ActiveFedora::SolrService.add(docs, commit: true)
149
676
 
150
677
  sign_in user
151
678
  end
152
- let(:collection) { create(:named_collection, user: user) }
679
+ let(:collection) { create(:named_collection, user: user, create_access: true) }
153
680
 
154
681
  it "shows a collection with a listing of Descriptive Metadata and catalog-style search results" do
155
682
  visit '/dashboard/my/collections'
@@ -158,105 +685,187 @@ RSpec.describe 'collection', type: :feature do
158
685
  # Now go to the collection show page
159
686
  click_link("Display all details of collection title")
160
687
  end
161
- expect(page).to have_css(".pager")
688
+ expect(page).to have_css(".pagination")
162
689
  end
163
690
  end
164
691
 
165
- describe 'add works to collection' do
166
- before do
167
- collection1 # create collections by referencing them
168
- collection2
169
- sign_in user
170
- end
692
+ describe 'remove works from collection' do
693
+ context 'user that can edit', :with_nested_reindexing do
694
+ let!(:work2) { create(:work, title: ["King Louie"], member_of_collections: [collection1], user: user) }
695
+ let!(:work1) { create(:work, title: ["King Kong"], member_of_collections: [collection1], user: user) }
171
696
 
172
- it "preselects the collection we are adding works to" do
173
- visit "/dashboard/collections/#{collection1.id}"
174
- click_link 'Add works'
175
- first('input#check_all').click
176
- click_button "Add to Collection"
177
- expect(page).to have_css("input#id_#{collection1.id}[checked='checked']")
178
- expect(page).not_to have_css("input#id_#{collection2.id}[checked='checked']")
697
+ before do
698
+ sign_in admin_user
699
+ end
700
+ # TODO: move this test to a view unit test (and solve the missing warden problem when using Ability in view tests)
701
+ it 'shows remove action buttons' do
702
+ visit "/dashboard/collections/#{collection1.id}"
703
+ expect(page).to have_selector('input.collection-remove', count: 2)
704
+ end
705
+ it 'removes the first work from the list of items' do
706
+ visit "/dashboard/collections/#{collection1.id}"
707
+ expect(page).to have_selector('input.collection-remove', count: 2)
708
+ page.all('input.collection-remove')[0].click
709
+ expect(page).to have_selector('input.collection-remove', count: 1)
710
+ # because works do not have order, you cannot guarentee that the first work added is the work getting deleted
711
+ has_work1 = page.has_content? work1.title.first
712
+ has_work2 = page.has_content? work2.title.first
713
+ expect(has_work1 ^ has_work2).to be true
714
+ end
715
+ xit 'removes a sub-collection from the list of items (dependency on collection nesting)' do
716
+ end
717
+ end
718
+ context 'user that cannot edit' do
719
+ let!(:work1) { create(:work, title: ["King Louie"], member_of_collections: [collection3], user: user) }
720
+ let!(:work2) { create(:work, title: ["King Kong"], member_of_collections: [collection3], user: user) }
179
721
 
180
- visit "/dashboard/collections/#{collection2.id}"
181
- click_link 'Add works'
182
- first('input#check_all').click
183
- click_button "Add to Collection"
184
- expect(page).not_to have_css("input#id_#{collection1.id}[checked='checked']")
185
- expect(page).to have_css("input#id_#{collection2.id}[checked='checked']")
722
+ before do
723
+ sign_in user
724
+ end
725
+ # TODO: move this test to a view unit test (and solve the missing warden problem when using Ability in view tests)
726
+ it 'does not show remove action buttons' do
727
+ visit "/dashboard/collections/#{collection3.id}"
728
+ expect(page).not_to have_selector 'input.collection-remove'
729
+ end
186
730
  end
187
731
  end
188
732
 
189
733
  describe 'edit collection' do
190
- let(:collection) { create(:named_collection, user: user) }
734
+ let(:collection) { create(:named_collection, user: user, create_access: true) }
191
735
  let!(:work1) { create(:work, title: ["King Louie"], member_of_collections: [collection], user: user) }
192
736
  let!(:work2) { create(:work, title: ["King Kong"], member_of_collections: [collection], user: user) }
193
737
 
194
- before do
195
- sign_in user
196
- visit '/dashboard/my/collections'
738
+ context 'from dashboard -> collections action menu' do
739
+ before do
740
+ create(:permission_template_access,
741
+ :deposit,
742
+ permission_template: collection1.permission_template,
743
+ agent_type: 'user',
744
+ agent_id: user.user_key)
745
+
746
+ collection1
747
+ sign_in user
748
+ visit '/dashboard/my/collections'
749
+ end
750
+
751
+ it "edit denied because user does not have permissions" do
752
+ # URL: /dashboard/my/collections
753
+ expect(page).to have_content(collection1.title.first)
754
+ within("#document_#{collection1.id}") do
755
+ find('button.dropdown-toggle').click
756
+ click_link('Edit collection')
757
+ end
758
+ expect(page).to have_content(collection1.title.first)
759
+ end
197
760
  end
198
761
 
199
- it "edits and update collection metadata" do
200
- # URL: /dashboard/collections
201
- expect(page).to have_content(collection.title.first)
202
- within("#document_#{collection.id}") do
203
- find('button.dropdown-toggle').click
204
- click_link('Edit Collection')
762
+ context 'from dashboard -> collections action menu' do
763
+ context 'for a collection' do
764
+ before do
765
+ sign_in user
766
+ visit '/dashboard/my/collections'
767
+ end
768
+
769
+ it "edits and update collection metadata" do
770
+ # URL: /dashboard/my/collections
771
+ expect(page).to have_content(collection.title.first)
772
+ within("#document_#{collection.id}") do
773
+ find('button.dropdown-toggle').click
774
+ click_link('Edit collection')
775
+ end
776
+ # URL: /dashboard/collections/collection-id/edit
777
+ expect(page).to have_selector('h1', text: "Edit User Collection: #{collection.title.first}")
778
+
779
+ expect(page).to have_field('collection_title', with: collection.title.first)
780
+ expect(page).to have_field('collection_description', with: collection.description.first)
781
+
782
+ # TODO: These two expectations require the spec to include with_nested_reindexing: true.
783
+ # However, adding nested indexing causes this spec to fail to go through the update method
784
+ # in the controller unless js: true is also included. Including javascript greatly increases
785
+ # the time required for the spec to complete, so for now, I am simply commenting out these
786
+ # two expectations, as these are not integral to the function being tested.
787
+ # expect(page).to have_content(work1.title.first)
788
+ # expect(page).to have_content(work2.title.first)
789
+
790
+ new_title = "Altered Title"
791
+ new_description = "Completely new Description text."
792
+ creators = ["Dorje Trollo", "Vajrayogini"]
793
+
794
+ fill_in('Title', with: new_title)
795
+ fill_in('Abstract or Summary', with: new_description)
796
+ fill_in('Creator', with: creators.first)
797
+ within('.panel-footer') do
798
+ click_button('Save changes')
799
+ end
800
+ # URL: /dashboard/collections/collection-id/edit
801
+ expect(page).not_to have_field('collection_title', with: collection.title.first)
802
+ expect(page).not_to have_field('collection_description', with: collection.description.first)
803
+ expect(page).to have_field('collection_title', with: new_title)
804
+ expect(page).to have_field('collection_description', with: new_description)
805
+ expect(page).to have_field('collection_creator', with: creators.first)
806
+ end
205
807
  end
206
- # URL: /collections/collection-id/edit
207
- expect(page).to have_field('collection_title', with: collection.title.first)
208
- expect(page).to have_field('collection_description', with: collection.description.first)
209
- expect(page).to have_content(work1.title.first)
210
- expect(page).to have_content(work2.title.first)
211
808
 
212
- new_title = "Altered Title"
213
- new_description = "Completely new Description text."
214
- creators = ["Dorje Trollo", "Vajrayogini"]
215
- fill_in('Title', with: new_title)
216
- fill_in('Abstract or Summary', with: new_description)
217
- fill_in('Creator', with: creators.first)
218
- within('.panel-footer') do
219
- click_button('Update Collection')
809
+ context 'for an admin set' do
810
+ before do
811
+ admin_user
812
+ admin_set_a
813
+ sign_in admin_user
814
+ visit '/dashboard/my/collections'
815
+ end
816
+
817
+ it 'edits admin set', :js do
818
+ # URL: /dashboard/my/collections
819
+ expect(page).to have_content(admin_set_a.title.first)
820
+ within("#document_#{admin_set_a.id}") do
821
+ find('button.dropdown-toggle').click
822
+ click_link('Edit collection')
823
+ end
824
+ # URL: /dashboard/collections/collection-id/edit
825
+ expect(page).to have_selector('h1', text: "Edit Administrative Set: #{admin_set_a.title.first}")
826
+ end
220
827
  end
221
- # URL: /dashboard/collections/collection-id
222
- header = find('header')
223
- expect(header).not_to have_content(collection.title.first)
224
- expect(header).not_to have_content(collection.description.first)
225
- expect(header).to have_content(new_title)
226
- expect(page).to have_content(new_description)
227
- expect(page).to have_content(creators.first)
228
828
  end
229
- end
230
829
 
231
- describe "Removing works from a collection" do
232
- let(:collection) { create(:named_collection, user: user) }
233
- let!(:work1) { create(:work, title: ["King Louie"], member_of_collections: [collection], user: user) }
234
- let!(:work2) { create(:work, title: ["King Kong"], member_of_collections: [collection], user: user) }
830
+ context "edit view tabs" do
831
+ before do
832
+ sign_in user
833
+ end
235
834
 
236
- before do
237
- sign_in user
238
- visit "/dashboard/collections/#{collection.id}/edit"
239
- end
835
+ it 'always includes branding' do
836
+ visit "/dashboard/collections/#{collection.id}/edit"
837
+ expect(page).to have_link('Branding', href: '#branding')
838
+ end
839
+
840
+ context 'with discoverable set' do
841
+ let(:discoverable_collection_id) { create(:collection, user: user, collection_type_settings: [:discoverable], create_access: true).id }
842
+ let(:not_discoverable_collection_id) { create(:collection, user: user, collection_type_settings: [:not_discoverable], create_access: true).id }
240
843
 
241
- it "removes one works out of two" do
242
- within("#document_#{work1.id}") do
243
- first('button.dropdown-toggle').click
244
- click_button('Remove from Collection')
844
+ it 'to true, it shows Discovery tab' do
845
+ visit "/dashboard/collections/#{discoverable_collection_id}/edit"
846
+ expect(page).to have_link('Discovery', href: '#discovery')
847
+ end
848
+
849
+ it 'to false, it hides Discovery tab' do
850
+ visit "/dashboard/collections/#{not_discoverable_collection_id}/edit"
851
+ expect(page).not_to have_link('Discovery', href: '#discovery')
852
+ end
245
853
  end
246
- expect(page).to have_content(collection.title.first)
247
- expect(page).to have_content(collection.description.first)
248
- expect(page).not_to have_content(work1.title.first)
249
- expect(page).to have_content(work2.title.first)
250
- end
251
854
 
252
- xit "removes all works", :js do
253
- # TODO: skipping - see Hyrax issue #1488
254
- first('input#check_all').click
255
- click_button('Remove From Collection')
256
- expect(page).to have_content(collection.title.first)
257
- expect(page).to have_content(collection.description.first)
258
- expect(page).not_to have_content(work1.title.first)
259
- expect(page).not_to have_content(work2.title.first)
855
+ context 'with sharable set' do
856
+ let(:sharable_collection_id) { create(:collection, user: user, collection_type_settings: [:sharable], create_access: true).id }
857
+ let(:not_sharable_collection_id) { create(:collection, user: user, collection_type_settings: [:not_sharable], create_access: true).id }
858
+
859
+ it 'to true, it shows Sharable tab' do
860
+ visit "/dashboard/collections/#{sharable_collection_id}/edit"
861
+ expect(page).to have_link('Sharing', href: '#sharing')
862
+ end
863
+
864
+ it 'to false, it hides Sharable tab' do
865
+ visit "/dashboard/collections/#{not_sharable_collection_id}/edit"
866
+ expect(page).not_to have_link('Sharing', href: '#sharing')
867
+ end
868
+ end
260
869
  end
261
870
  end
262
871
  end