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.
- checksums.yaml +4 -4
- data/.circleci/config.yml +118 -181
- data/.gitignore +3 -0
- data/.regen +1 -0
- data/.rubocop_fixme.yml +1 -1
- data/README.md +11 -15
- data/app/actors/hyrax/actors/active_fedora_to_valkyrie.rb +59 -0
- data/app/actors/hyrax/actors/add_to_work_actor.rb +28 -5
- data/app/actors/hyrax/actors/apply_order_actor.rb +2 -2
- data/app/actors/hyrax/actors/attach_members_actor.rb +50 -28
- data/app/actors/hyrax/actors/base_actor.rb +17 -2
- data/app/actors/hyrax/actors/cleanup_file_sets_actor.rb +1 -1
- data/app/actors/hyrax/actors/collections_membership_actor.rb +2 -8
- data/app/actors/hyrax/actors/create_with_files_actor.rb +16 -6
- data/app/actors/hyrax/actors/create_with_files_ordered_members_actor.rb +2 -2
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +2 -1
- data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +8 -6
- data/app/actors/hyrax/actors/environment.rb +8 -16
- data/app/actors/hyrax/actors/file_actor.rb +75 -13
- data/app/actors/hyrax/actors/interpret_visibility_actor.rb +6 -8
- data/app/actors/hyrax/actors/valkyrie_to_active_fedora.rb +60 -0
- data/app/assets/javascripts/hyrax/collections.js +5 -4
- data/app/assets/javascripts/hyrax/nav_safety.js +4 -2
- data/app/assets/javascripts/hyrax/proxy_rights.js +8 -0
- data/app/assets/stylesheets/fileupload/jquery.fileupload-ui.scss +1 -15
- data/app/assets/stylesheets/hyrax/_collections.scss +1 -1
- data/app/assets/stylesheets/hyrax/_home-page.scss +6 -0
- data/app/assets/stylesheets/hyrax/_users.scss +11 -0
- data/app/assets/stylesheets/hyrax/_viewer.scss +14 -3
- data/app/controllers/concerns/hyrax/breadcrumbs.rb +2 -0
- data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +1 -1
- data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +2 -1
- data/app/controllers/hyrax/batch_edits_controller.rb +3 -3
- data/app/controllers/hyrax/dashboard/collections_controller.rb +16 -5
- data/app/controllers/hyrax/dashboard_controller.rb +9 -0
- data/app/controllers/hyrax/depositors_controller.rb +4 -6
- data/app/controllers/hyrax/downloads_controller.rb +1 -1
- data/app/controllers/hyrax/file_sets_controller.rb +3 -2
- data/app/controllers/hyrax/homepage_controller.rb +1 -1
- data/app/controllers/hyrax/my/works_controller.rb +2 -2
- data/app/controllers/hyrax/my_controller.rb +2 -2
- data/app/controllers/hyrax/permissions_controller.rb +1 -1
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +1 -1
- data/app/controllers/hyrax/workflow_actions_controller.rb +1 -1
- data/app/forms/hyrax/forms/admin_set_form.rb +8 -0
- data/app/forms/hyrax/forms/batch_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/collection_form.rb +34 -3
- data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
- data/app/forms/hyrax/forms/work_form.rb +34 -7
- data/app/forms/hyrax/forms/workflow_responsibility_form.rb +0 -4
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +3 -4
- data/app/helpers/hyrax/iiif_helper.rb +8 -0
- data/app/indexers/hyrax/admin_set_indexer.rb +1 -1
- data/app/indexers/hyrax/basic_metadata_indexer.rb +1 -1
- data/app/indexers/hyrax/collection_indexer.rb +2 -2
- data/app/indexers/hyrax/file_set_indexer.rb +7 -0
- data/app/indexers/hyrax/indexes_workflow.rb +3 -5
- data/app/indexers/hyrax/valkyrie_indexers/base_indexer.rb +19 -0
- data/app/indexers/hyrax/work_indexer.rb +1 -1
- data/app/jobs/attach_files_to_work_job.rb +9 -1
- data/app/jobs/characterize_job.rb +20 -5
- data/app/jobs/import_url_job.rb +9 -16
- data/app/jobs/ingest_local_file_job.rb +4 -0
- data/app/jobs/visibility_copy_job.rb +3 -17
- data/app/models/admin_set.rb +5 -0
- data/app/models/concerns/hyrax/ability.rb +3 -3
- data/app/models/concerns/hyrax/basic_metadata.rb +6 -2
- data/app/models/concerns/hyrax/collection_behavior.rb +22 -12
- data/app/models/concerns/hyrax/collection_nesting.rb +1 -1
- data/app/models/concerns/hyrax/file_set/characterization.rb +8 -1
- data/app/models/concerns/hyrax/file_set/querying.rb +1 -1
- data/app/models/concerns/hyrax/file_set_behavior.rb +1 -1
- data/app/models/concerns/hyrax/human_readable_type.rb +2 -2
- data/app/models/concerns/hyrax/solr_document/characterization.rb +27 -23
- data/app/models/concerns/hyrax/solr_document/metadata.rb +37 -39
- data/app/models/concerns/hyrax/solr_document_behavior.rb +4 -8
- data/app/models/concerns/hyrax/virus_check.rb +20 -0
- data/app/models/concerns/hyrax/work_behavior.rb +3 -1
- data/app/models/file_download_stat.rb +2 -1
- data/app/models/hyrax/active_job_proxy.rb +43 -0
- data/app/models/hyrax/embargo.rb +21 -0
- data/app/models/hyrax/file_metadata.rb +109 -0
- data/app/models/hyrax/lease.rb +21 -0
- data/app/models/hyrax/permission_template.rb +8 -8
- data/app/models/hyrax/resource.rb +31 -0
- data/app/models/hyrax/statistic.rb +5 -1
- data/app/models/hyrax/uploaded_file.rb +0 -2
- data/app/models/hyrax/virus_scanner.rb +56 -0
- data/app/models/job_io_wrapper.rb +24 -9
- data/app/models/proxy_deposit_request.rb +1 -1
- data/app/models/solr_hit.rb +23 -0
- data/app/presenters/hyrax/admin_set_presenter.rb +1 -1
- data/app/presenters/hyrax/characterization_behavior.rb +2 -2
- data/app/presenters/hyrax/displays_image.rb +25 -7
- data/app/presenters/hyrax/file_set_presenter.rb +3 -3
- data/app/presenters/hyrax/member_presenter_factory.rb +9 -9
- data/app/presenters/hyrax/presenter_factory.rb +1 -4
- data/app/presenters/hyrax/trophy_presenter.rb +1 -1
- data/app/presenters/hyrax/work_show_presenter.rb +3 -3
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer.rb +1 -1
- data/app/search_builders/hyrax/catalog_search_builder.rb +1 -1
- data/app/search_builders/hyrax/collection_search_builder.rb +1 -1
- data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +2 -2
- data/app/search_builders/hyrax/deposit_search_builder.rb +1 -1
- data/app/search_builders/hyrax/my/find_works_search_builder.rb +5 -9
- data/app/search_builders/hyrax/my/highlights_search_builder.rb +1 -3
- data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +1 -1
- data/app/search_builders/hyrax/parent_collection_search_builder.rb +1 -1
- data/app/services/hyrax/adapters/nesting_index_adapter.rb +6 -6
- data/app/services/hyrax/admin_set_service.rb +3 -11
- data/app/services/hyrax/analytics.rb +6 -6
- data/app/services/hyrax/collection_types/permissions_service.rb +5 -5
- data/app/services/hyrax/collections/permissions_service.rb +2 -2
- data/app/services/hyrax/custom_queries/navigators/child_collections_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/navigators/child_works_navigator.rb +39 -0
- data/app/services/hyrax/custom_queries/wings.rb +34 -0
- data/app/services/hyrax/database_migrator.rb +1 -0
- data/app/services/hyrax/derivative_path.rb +1 -1
- data/app/services/hyrax/embargo_manager.rb +100 -0
- data/app/services/hyrax/file_set_csv_service.rb +2 -0
- data/app/services/hyrax/file_set_visibility_propagator.rb +41 -0
- data/app/services/hyrax/graph_exporter.rb +1 -1
- data/app/services/hyrax/lease_manager.rb +71 -0
- data/app/services/hyrax/persist_directly_contained_output_file_service.rb +1 -1
- data/app/services/hyrax/query_service.rb +0 -0
- data/app/services/hyrax/resource_visibility_propagator.rb +50 -0
- data/app/services/hyrax/solr_query_builder_service.rb +71 -0
- data/app/services/hyrax/solr_service.rb +144 -0
- data/app/services/hyrax/statistics/file_sets/by_format.rb +1 -1
- data/app/services/hyrax/statistics/term_query.rb +7 -12
- data/app/services/hyrax/statistics/works/by_resource_type.rb +1 -1
- data/app/services/hyrax/thumbnail_path_service.rb +4 -3
- data/app/services/hyrax/versioning_service.rb +74 -19
- data/app/services/hyrax/virus_checker_service.rb +52 -0
- data/app/services/hyrax/visibility_intention_applicator.rb +43 -0
- data/app/services/hyrax/visibility_map.rb +65 -0
- data/app/services/hyrax/visibility_propagator.rb +19 -0
- data/app/services/hyrax/visibility_reader.rb +43 -0
- data/app/services/hyrax/visibility_writer.rb +43 -0
- data/app/services/hyrax/work_query_service.rb +3 -3
- data/app/services/hyrax/workflow/deposited_notification.rb +1 -1
- data/app/services/hyrax/works/migration_service.rb +33 -0
- data/app/views/hyrax/admin/admin_sets/_form.html.erb +6 -5
- data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +2 -1
- data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +1 -1
- data/app/views/hyrax/base/_attribute_rows.html.erb +2 -0
- data/app/views/hyrax/base/_attributes.html.erb +3 -3
- data/app/views/hyrax/base/_citations.html.erb +4 -4
- data/app/views/hyrax/base/_file_manager_actions.html.erb +2 -2
- data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +2 -2
- data/app/views/hyrax/base/_form_child_work_relationships.html.erb +1 -1
- data/app/views/hyrax/base/_form_files.html.erb +11 -9
- data/app/views/hyrax/base/_form_member_of_collections.html.erb +1 -1
- data/app/views/hyrax/base/_form_permission.html.erb +1 -2
- data/app/views/hyrax/base/_form_progress.html.erb +2 -2
- data/app/views/hyrax/base/_form_share.html.erb +8 -11
- data/app/views/hyrax/base/_show_actions.html.erb +3 -3
- data/app/views/hyrax/base/_social_media.html.erb +0 -13
- data/app/views/hyrax/base/_work_button_row.html.erb +7 -7
- data/app/views/hyrax/base/_workflow_actions.html.erb +4 -4
- data/app/views/hyrax/base/file_manager.html.erb +2 -2
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +5 -2
- data/app/views/hyrax/base/inspect_work.html.erb +13 -13
- data/app/views/hyrax/base/unauthorized.html.erb +4 -4
- data/app/views/hyrax/batch_edits/_check_all.html.erb +1 -1
- data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
- data/app/views/hyrax/batch_edits/edit.html.erb +11 -11
- data/app/views/hyrax/citations/work.html.erb +1 -1
- data/app/views/hyrax/collections/_show_document_list.html.erb +1 -1
- data/app/views/hyrax/collections/_sort_and_per_page.html.erb +4 -4
- data/app/views/hyrax/dashboard/collections/_form.html.erb +6 -5
- data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +10 -10
- data/app/views/hyrax/dashboard/collections/_form_share.html.erb +5 -5
- data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list.html.erb +6 -6
- data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +3 -3
- data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +2 -3
- data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +8 -8
- data/app/views/hyrax/dashboard/collections/edit.html.erb +2 -2
- data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +8 -8
- data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +2 -0
- data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +4 -1
- data/app/views/hyrax/dashboard/sidebar/_menu_partials.html.erb +3 -0
- data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +2 -0
- data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +2 -0
- data/app/views/hyrax/dashboard/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/dashboard/works/_list_works.html.erb +1 -1
- data/app/views/hyrax/depositors/_modal_proxy_deny.html.erb +14 -0
- data/app/views/hyrax/depositors/index.html.erb +3 -0
- data/app/views/hyrax/embargoes/_list_expired_active_embargoes.html.erb +1 -1
- data/app/views/hyrax/file_sets/_actions.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_deleted_flash.html.erb +1 -1
- data/app/views/hyrax/file_sets/_asset_saved_flash.html.erb +5 -6
- data/app/views/hyrax/file_sets/_asset_updated_flash.html.erb +2 -1
- data/app/views/hyrax/file_sets/_descriptions.html.erb +2 -2
- data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +3 -3
- data/app/views/hyrax/file_sets/_form.html.erb +1 -1
- data/app/views/hyrax/file_sets/_permission.html.erb +2 -1
- data/app/views/hyrax/file_sets/_permission_form.html.erb +9 -9
- data/app/views/hyrax/file_sets/_show_actions.html.erb +4 -4
- data/app/views/hyrax/file_sets/_show_details.html.erb +7 -7
- data/app/views/hyrax/file_sets/_versioning.html.erb +3 -3
- data/app/views/hyrax/file_sets/edit.html.erb +4 -3
- data/app/views/hyrax/file_sets/media_display/_audio.html.erb +2 -2
- data/app/views/hyrax/file_sets/media_display/_video.html.erb +2 -2
- data/app/views/hyrax/file_sets/proxy.html.erb +2 -2
- data/app/views/hyrax/my/_sort_and_per_page.html.erb +1 -1
- data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +4 -1
- data/app/views/hyrax/my/collections/index.html.erb +1 -1
- data/app/views/hyrax/my/index.html.erb +1 -1
- data/app/views/hyrax/my/works/_default_group.html.erb +4 -4
- data/app/views/hyrax/my/works/_list_works.html.erb +3 -3
- data/app/views/hyrax/my/works/index.html.erb +1 -1
- data/app/views/hyrax/notifications/index.html.erb +1 -1
- data/app/views/hyrax/operations/index.html.erb +4 -4
- data/app/views/hyrax/pages/_form.html.erb +61 -60
- data/app/views/hyrax/permissions/confirm_access.html.erb +1 -1
- data/app/views/hyrax/single_use_links_viewer/single_use_error.html.erb +3 -7
- data/app/views/hyrax/static/mendeley.html.erb +2 -4
- data/app/views/hyrax/static/zotero.html.erb +2 -4
- data/app/views/hyrax/transfers/_received.html.erb +10 -10
- data/app/views/hyrax/transfers/_sent.html.erb +6 -6
- data/app/views/hyrax/uploads/_js_templates.html.erb +7 -7
- data/app/views/hyrax/uploads/_js_templates_branding.html.erb +8 -8
- data/app/views/hyrax/users/_activity_log.html.erb +25 -22
- data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
- data/app/views/hyrax/users/_proxies.html.erb +1 -1
- data/app/views/hyrax/users/_search_form.html.erb +3 -3
- data/app/views/hyrax/users/_vitals.html.erb +1 -1
- data/app/views/hyrax/users/index.html.erb +6 -6
- data/app/views/records/edit_fields/_abstract.html.erb +5 -0
- data/app/views/records/edit_fields/_access_right.html.erb +5 -0
- data/app/views/records/edit_fields/_alt_title.html.erb +3 -0
- data/app/views/records/edit_fields/_title.html.erb +1 -0
- data/app/views/records/show_fields/_based_near.html.erb +1 -1
- data/app/views/records/show_fields/_creator.html.erb +1 -1
- data/app/views/records/show_fields/_keyword.html.erb +1 -1
- data/app/views/records/show_fields/_language.html.erb +1 -1
- data/app/views/records/show_fields/_publisher.html.erb +1 -1
- data/app/views/records/show_fields/_resource_type.html.erb +1 -1
- data/app/views/records/show_fields/_subject.html.erb +1 -1
- data/config/initializers/indexing_adapter_initializer.rb +16 -0
- data/config/initializers/samvera-nesting_indexer_initializer.rb +3 -3
- data/config/locales/hyrax.de.yml +303 -24
- data/config/locales/hyrax.en.yml +279 -0
- data/config/locales/hyrax.es.yml +284 -5
- data/config/locales/hyrax.fr.yml +280 -1
- data/config/locales/hyrax.it.yml +279 -0
- data/config/locales/hyrax.pt-BR.yml +279 -0
- data/config/locales/hyrax.zh.yml +279 -0
- data/hyrax.gemspec +10 -11
- data/lib/generators/hyrax/config_generator.rb +6 -0
- data/lib/generators/hyrax/install_generator.rb +5 -0
- data/lib/generators/hyrax/riiif_generator.rb +2 -2
- data/lib/generators/hyrax/templates/catalog_controller.rb +71 -71
- data/lib/generators/hyrax/templates/config/analytics.yml +5 -5
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +11 -1
- data/lib/generators/hyrax/templates/config/initializers/riiif.rb +3 -3
- data/lib/generators/hyrax/templates/config/solr_wrapper_valkyrie_test.yml +7 -0
- data/lib/generators/hyrax/templates/config/valkyrie_index.yml +12 -0
- data/lib/generators/hyrax/templates/package.json +17 -0
- data/lib/generators/hyrax/templates/uv-config.json +3 -0
- data/lib/generators/hyrax/templates/uv.html +87 -0
- data/lib/generators/hyrax/work/templates/feature_spec.rb.erb +0 -1
- data/lib/hyrax.rb +17 -1
- data/lib/hyrax/configuration.rb +34 -20
- data/lib/hyrax/engine.rb +12 -10
- data/lib/hyrax/errors.rb +4 -0
- data/lib/hyrax/transactions/container.rb +13 -0
- data/lib/hyrax/transactions/create_work.rb +11 -0
- data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +32 -0
- data/lib/hyrax/transactions/steps/apply_permission_template.rb +2 -1
- data/lib/hyrax/transactions/steps/apply_visibility.rb +39 -0
- data/lib/hyrax/version.rb +1 -1
- data/lib/tasks/migrate.rake +6 -0
- data/lib/tasks/universal_viewer.rake +15 -0
- data/lib/valkyrie/indexing/solr/indexing_adapter.rb +102 -0
- data/lib/valkyrie/indexing_adapter.rb +29 -0
- data/lib/wings.rb +13 -4
- data/lib/wings/active_fedora_converter.rb +129 -15
- data/lib/wings/converter_value_mapper.rb +111 -0
- data/lib/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior.rb +27 -0
- data/lib/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior.rb +27 -0
- data/lib/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior.rb +172 -0
- data/lib/wings/hydra/works/models/concerns/collection_valkyrie_behavior.rb +30 -0
- data/lib/wings/hydra/works/models/concerns/file_set_valkyrie_behavior.rb +30 -0
- data/lib/wings/hydra/works/models/concerns/work_valkyrie_behavior.rb +59 -0
- data/lib/wings/hydra/works/services/add_file_metadata_to_file_set.rb +113 -0
- data/lib/wings/model_transformer.rb +172 -47
- data/lib/wings/models/concerns/collection_behavior.rb +38 -0
- data/lib/wings/models/multi_checksum.rb +18 -0
- data/lib/wings/services/file_metadata_builder.rb +81 -0
- data/lib/wings/services/id_converter_service.rb +14 -0
- data/lib/wings/{value_mapper.rb → transformer_value_mapper.rb} +24 -5
- data/lib/wings/valkyrie/persister.rb +47 -24
- data/lib/wings/valkyrie/query_service.rb +141 -6
- data/lib/wings/valkyrie/storage/active_fedora.rb +27 -0
- data/spec/abilities/proxies_and_transfer_abilities_spec.rb +50 -10
- data/spec/actors/hyrax/actors/active_fedora_to_valkyrie_spec.rb +70 -0
- data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +55 -10
- data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +14 -0
- data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +22 -30
- data/spec/actors/hyrax/actors/file_actor_spec.rb +200 -84
- data/spec/actors/hyrax/actors/file_set_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +2 -6
- data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +1 -1
- data/spec/actors/hyrax/actors/valkyrie_to_active_fedora_spec.rb +70 -0
- data/spec/controllers/catalog_controller_spec.rb +2 -2
- data/spec/controllers/hyrax/api/items_controller_spec.rb +9 -15
- data/spec/controllers/hyrax/collections_controller_spec.rb +6 -2
- data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +53 -4
- data/spec/controllers/hyrax/depositors_controller_spec.rb +3 -3
- data/spec/controllers/hyrax/downloads_controller_spec.rb +11 -2
- data/spec/controllers/hyrax/file_sets_controller_spec.rb +40 -2
- data/spec/controllers/hyrax/generic_works_controller_spec.rb +13 -3
- data/spec/controllers/hyrax/homepage_controller_spec.rb +3 -3
- data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +1 -2
- data/spec/factories/admin_sets_lw.rb +1 -1
- data/spec/factories/collections.rb +1 -1
- data/spec/factories/hyrax_embargo.rb +16 -0
- data/spec/factories/hyrax_lease.rb +16 -0
- data/spec/factories/hyrax_resource.rb +16 -0
- data/spec/factory_tests/adminsets_factory_spec.rb +4 -4
- data/spec/factory_tests/collections_factory_spec.rb +3 -3
- data/spec/features/actor_stack_spec.rb +64 -0
- data/spec/features/batch_create_spec.rb +1 -2
- data/spec/features/collection_multi_membership_spec.rb +1 -0
- data/spec/features/collection_spec.rb +2 -2
- data/spec/features/collection_type_spec.rb +1 -0
- data/spec/features/create_work_spec.rb +15 -6
- data/spec/features/dashboard/collection_spec.rb +103 -14
- data/spec/features/edit_content_block_admin_spec.rb +3 -3
- data/spec/features/edit_pages_admin.spec.rb +62 -0
- data/spec/features/proxy_spec.rb +21 -0
- data/spec/features/static_pages_spec.rb +1 -1
- data/spec/features/work_show_spec.rb +7 -3
- data/spec/fixtures/sample-file.pdf +0 -0
- data/spec/fixtures/updated-file.txt +1 -0
- data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +5 -2
- data/spec/forms/hyrax/forms/collection_form_spec.rb +5 -2
- data/spec/forms/hyrax/forms/work_form_spec.rb +18 -5
- data/spec/forms/hyrax/generic_work_form_spec.rb +4 -4
- data/spec/helpers/hyrax/collections_helper_spec.rb +8 -8
- data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +7 -8
- data/spec/helpers/hyrax/iiif_helper_spec.rb +16 -0
- data/spec/helpers/hyrax_helper_spec.rb +4 -4
- data/spec/hyrax/transactions/create_work_spec.rb +68 -0
- data/spec/hyrax/transactions/steps/apply_collection_permission_template_spec.rb +59 -0
- data/spec/hyrax/transactions/steps/apply_visibility_spec.rb +82 -0
- data/spec/indexers/hyrax/admin_set_indexer_spec.rb +15 -0
- data/spec/indexers/hyrax/file_set_indexer_spec.rb +26 -1
- data/spec/indexers/hyrax/valkyrie_indexers/base_indexer_spec.rb +16 -0
- data/spec/jobs/import_url_job_spec.rb +49 -2
- data/spec/jobs/ingest_local_file_job_spec.rb +25 -1
- data/spec/jobs/visibility_copy_job_spec.rb +46 -0
- data/spec/lib/hyrax/configuration_spec.rb +17 -11
- data/spec/lib/hyrax/redis_event_store_spec.rb +1 -1
- data/spec/matcher_tests/match_valkyrie_ids_with_af_ids_spec.rb +40 -0
- data/spec/models/file_set_spec.rb +4 -3
- data/spec/models/hyrax/embargo_spec.rb +27 -0
- data/spec/models/hyrax/file_metadata_spec.rb +110 -0
- data/spec/models/hyrax/lease_spec.rb +25 -0
- data/spec/models/hyrax/permission_template_spec.rb +2 -2
- data/spec/models/hyrax/resource_spec.rb +60 -0
- data/spec/models/hyrax/virus_scanner_spec.rb +50 -0
- data/spec/models/job_io_wrapper_spec.rb +63 -0
- data/spec/models/solr_hit_spec.rb +9 -0
- data/spec/models/user_spec.rb +1 -1
- data/spec/presenters/hyrax/file_set_presenter_spec.rb +11 -7
- data/spec/presenters/hyrax/presenter_factory_spec.rb +2 -2
- data/spec/presenters/hyrax/work_show_presenter_spec.rb +1 -1
- data/spec/requests/riiif_spec.rb +2 -2
- data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +3 -3
- data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +5 -6
- data/spec/services/hyrax/admin_set_service_spec.rb +2 -2
- data/spec/services/hyrax/custom_queries/navigators/child_collections_navigator_spec.rb +41 -0
- data/spec/services/hyrax/custom_queries/navigators/child_filesets_navigator_spec.rb +41 -0
- data/spec/services/hyrax/custom_queries/navigators/child_works_navigator_spec.rb +79 -0
- data/spec/services/hyrax/custom_queries/wings.rb +52 -0
- data/spec/services/hyrax/embargo_manager_spec.rb +123 -0
- data/spec/services/hyrax/embargo_service_spec.rb +2 -2
- data/spec/services/hyrax/file_set_visibility_propagator_spec.rb +59 -0
- data/spec/services/hyrax/resource_visibility_propagator_spec.rb +71 -0
- data/spec/services/hyrax/solr_query_builder_service_spec.rb +17 -0
- data/spec/services/hyrax/solr_service_spec.rb +218 -0
- data/spec/services/hyrax/thumbnail_path_service_spec.rb +6 -0
- data/spec/services/hyrax/versioning_service_spec.rb +35 -15
- data/spec/services/hyrax/visibility_intention_applicator_spec.rb +69 -0
- data/spec/services/hyrax/visibility_reader_spec.rb +38 -0
- data/spec/services/hyrax/visibility_writer_spec.rb +47 -0
- data/spec/services/hyrax/workflow/status_list_service_spec.rb +1 -13
- data/spec/services/hyrax/works/migration_service_spec.rb +29 -0
- data/spec/spec_helper.rb +24 -23
- data/spec/support/clean_solr.rb +7 -0
- data/spec/support/create_for_repository.rb +25 -0
- data/spec/support/factory_helpers.rb +3 -1
- data/spec/support/fakes/fake_actor.rb +21 -0
- data/spec/support/matchers/embargo.rb +9 -0
- data/spec/support/matchers/lease.rb +9 -0
- data/spec/support/matchers/match_valkyrie_ids_with_af_ids.rb +11 -0
- data/spec/support/matchers/permission.rb +22 -0
- data/spec/support/valkyrie_indexing.rb +1 -0
- data/spec/test_app_templates/Gemfile.extra +0 -2
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +5 -6
- data/spec/valkyrie/indexing/solr/indexing_adapter_spec.rb +41 -0
- data/spec/valkyrie/indexing_adapter_spec.rb +25 -0
- data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +0 -1
- data/spec/views/hyrax/base/show.html.erb_spec.rb +2 -2
- data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +39 -0
- data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +1 -0
- data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +2 -2
- data/spec/views/records/edit_fields/_alt_title.html.erb_spec.rb +26 -0
- data/spec/views/records/edit_fields/_title.html.erb_spec.rb +24 -0
- data/spec/wings/active_fedora_converter_spec.rb +136 -1
- data/spec/wings/converter_value_mapper_spec.rb +23 -0
- data/spec/wings/hydra/pcdm/models/concerns/collection_valkyrie_behavior_spec.rb +41 -0
- data/spec/wings/hydra/pcdm/models/concerns/object_valkyrie_behavior_spec.rb +19 -0
- data/spec/wings/hydra/pcdm/models/concerns/pcdm_valkyrie_behavior_spec.rb +442 -0
- data/spec/wings/hydra/works/models/concerns/collection_valkyrie_behavior_spec.rb +22 -0
- data/spec/wings/hydra/works/models/concerns/file_set_valkyrie_behavior_spec.rb +90 -0
- data/spec/wings/hydra/works/models/concerns/work_valkyrie_behavior_spec.rb +218 -0
- data/spec/wings/model_transformer_spec.rb +167 -112
- data/spec/wings/models/concerns/collection_behavior_spec.rb +120 -0
- data/spec/wings/services/file_metadata_builder_spec.rb +39 -0
- data/spec/wings/services/id_converter_service_spec.rb +24 -0
- data/spec/wings/{value_mapper_spec.rb → transformer_value_mapper_spec.rb} +2 -2
- data/spec/wings/valkyrie/persister_spec.rb +544 -53
- data/spec/wings/valkyrie/query_service_spec.rb +381 -4
- data/spec/wings_helper.rb +4 -0
- data/template.rb +1 -1
- metadata +205 -49
- data/.travis.yml +0 -36
- data/lib/wings/resource_factory.rb +0 -8
@@ -0,0 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
RSpec::Matchers.define :be_an_embargo_matching do |embargo_args|
|
4
|
+
match do |embargo|
|
5
|
+
(embargo.visibility_after_embargo == embargo_args[:after]) &&
|
6
|
+
(embargo.visibility_during_embargo == embargo_args[:during]) &&
|
7
|
+
embargo.embargo_release_date.to_s.start_with?(embargo_args[:release_date][0..9])
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
RSpec::Matchers.define :be_a_lease_matching do |lease_args|
|
4
|
+
match do |lease|
|
5
|
+
(lease.visibility_after_lease == lease_args[:after]) &&
|
6
|
+
(lease.visibility_during_lease == lease_args[:during]) &&
|
7
|
+
lease.lease_expiration_date.to_s.start_with?(lease_args[:release_date][0..9])
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module Hyrax::Matchers
|
2
|
+
class MatchValkyrieIdsWithActiveFedoraIds < RSpec::Matchers::BuiltIn::ContainExactly
|
3
|
+
def match_when_sorted?
|
4
|
+
values_match?(safe_sort(expected), safe_sort(actual.map(&:id)))
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
def match_valkyrie_ids_with_active_fedora_ids(expected_fedora_ids)
|
9
|
+
MatchValkyrieIdsWithActiveFedoraIds.new(expected_fedora_ids)
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
RSpec::Matchers.define :grant_permission do |acl_type|
|
4
|
+
match do |permission|
|
5
|
+
access_match = permission.access == acl_type.to_s
|
6
|
+
agent_match =
|
7
|
+
if user_id
|
8
|
+
permission.type == 'person' &&
|
9
|
+
permission.agent.first.id.include?(user_id)
|
10
|
+
elsif group_id
|
11
|
+
permission.type == 'group' &&
|
12
|
+
permission.agent.first.id.include?(group_id)
|
13
|
+
else
|
14
|
+
true
|
15
|
+
end
|
16
|
+
|
17
|
+
return access_match && agent_match
|
18
|
+
end
|
19
|
+
|
20
|
+
chain :to_user, :user_id
|
21
|
+
chain :to_group, :group_id
|
22
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
VALKYRIE_SOLR_TEST_URL = "http://127.0.0.1:#{ENV['TEST_JETTY_PORT'] || 8984}/solr/valkyrie-test-core".freeze
|
@@ -5,12 +5,6 @@ class TestAppGenerator < Rails::Generators::Base
|
|
5
5
|
# so the following path gets us to /path/to/hyrax/spec/test_app_templates/
|
6
6
|
source_root File.expand_path('../../../../spec/test_app_templates/', __FILE__)
|
7
7
|
|
8
|
-
def require_bootsnap
|
9
|
-
inject_into_file 'config/boot.rb', after: "require 'bundler/setup' # Set up gems listed in the Gemfile.\n" do
|
10
|
-
"require 'bootsnap/setup'\n"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
8
|
def install_engine
|
15
9
|
generate 'hyrax:install', '-f'
|
16
10
|
end
|
@@ -128,4 +122,9 @@ class TestAppGenerator < Rails::Generators::Base
|
|
128
122
|
"development:\n adapter: async",
|
129
123
|
"development:\n adapter: redis\n url: redis://localhost:6379"
|
130
124
|
end
|
125
|
+
|
126
|
+
def install_universal_viewer
|
127
|
+
system './bin/yarn install'
|
128
|
+
end
|
129
|
+
|
131
130
|
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'spec_helper'
|
3
|
+
require 'valkyrie/indexing/solr/indexing_adapter'
|
4
|
+
|
5
|
+
RSpec.describe Valkyrie::Indexing::Solr::IndexingAdapter, :clean_index do
|
6
|
+
subject(:adapter) { Valkyrie::IndexingAdapter.find(:solr_index) }
|
7
|
+
let(:persister) { Wings::Valkyrie::Persister.new(adapter: metadata_adapter) }
|
8
|
+
let(:metadata_adapter) { Wings::Valkyrie::MetadataAdapter.new }
|
9
|
+
let(:resource) { FactoryBot.create_for_repository(:hyrax_resource) }
|
10
|
+
let(:resource2) { FactoryBot.create_for_repository(:hyrax_resource) }
|
11
|
+
|
12
|
+
describe "#connection" do
|
13
|
+
it "returns connection" do
|
14
|
+
expect(adapter.connection.uri.to_s).to include 'valkyrie-test'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
it "can save a resource" do
|
19
|
+
adapter.save(resource: resource)
|
20
|
+
expect(Hyrax::SolrService.query("*:*", use_valkyrie: true).map(&:id)).to eq [resource.id.to_s]
|
21
|
+
end
|
22
|
+
|
23
|
+
it "can save multiple resources at once" do
|
24
|
+
adapter.save_all(resources: [resource, resource2])
|
25
|
+
expect(Hyrax::SolrService.query("*:*", use_valkyrie: true).map(&:id)).to contain_exactly resource.id.to_s, resource2.id.to_s
|
26
|
+
end
|
27
|
+
|
28
|
+
it "can delete an object" do
|
29
|
+
adapter.save(resource: resource)
|
30
|
+
expect(Hyrax::SolrService.query("*:*", use_valkyrie: true).count).to eq 1
|
31
|
+
adapter.delete(resource: resource)
|
32
|
+
expect(Hyrax::SolrService.query("*:*", use_valkyrie: true).count).to eq 0
|
33
|
+
end
|
34
|
+
|
35
|
+
it "can delete all objects" do
|
36
|
+
adapter.save_all(resources: [resource, resource2])
|
37
|
+
expect(Hyrax::SolrService.query("*:*", use_valkyrie: true).count).to eq 2
|
38
|
+
adapter.wipe!
|
39
|
+
expect(Hyrax::SolrService.query("*:*", use_valkyrie: true).count).to eq 0
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'valkyrie/indexing_adapter'
|
3
|
+
|
4
|
+
RSpec.describe Valkyrie::IndexingAdapter do
|
5
|
+
let(:adapter) do
|
6
|
+
Class.new { ; }
|
7
|
+
end
|
8
|
+
|
9
|
+
describe ".register" do
|
10
|
+
it "registers an adapter to a short name" do
|
11
|
+
described_class.register adapter, :test_adapter
|
12
|
+
|
13
|
+
expect(described_class.find(:test_adapter)).to eq adapter
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
describe '.find' do
|
18
|
+
subject(:find) { described_class.find(:huh?) }
|
19
|
+
context 'when no adapter is registered' do
|
20
|
+
it 'raises an error' do
|
21
|
+
expect { find }.to raise_error "Unable to find unregistered adapter `huh?'"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -7,7 +7,7 @@ RSpec.describe 'hyrax/base/_attributes.html.erb' do
|
|
7
7
|
let(:solr_document) { SolrDocument.new(attributes) }
|
8
8
|
let(:attributes) do
|
9
9
|
{
|
10
|
-
|
10
|
+
has_model_ssim: ["GenericWork"],
|
11
11
|
subject_tesim: subject,
|
12
12
|
contributor_tesim: contributor,
|
13
13
|
creator_tesim: creator,
|
@@ -10,7 +10,6 @@ RSpec.describe 'hyrax/base/_social_media.html.erb', type: :view do
|
|
10
10
|
expect(page).to have_selector '.resp-sharing-button__link'
|
11
11
|
expect(page).to have_link '', href: 'https://facebook.com/sharer/sharer.php?u=http%3A%2F%2Fexample.com%2F'
|
12
12
|
expect(page).to have_link '', href: 'https://twitter.com/intent/tweet/?text=Example&url=http%3A%2F%2Fexample.com%2F'
|
13
|
-
expect(page).to have_link '', href: 'https://plus.google.com/share?url=http%3A%2F%2Fexample.com%2F'
|
14
13
|
expect(page).to have_link '', href: 'https://www.tumblr.com/widgets/share/tool?canonicalUrl=http%3A%2F%2Fexample.com%2F&posttype=link&shareSource=tumblr_share_button'
|
15
14
|
end
|
16
15
|
end
|
@@ -80,7 +80,7 @@ RSpec.describe 'hyrax/base/show.html.erb', type: :view do
|
|
80
80
|
let(:viewer_enabled) { true }
|
81
81
|
|
82
82
|
it 'renders the UniversalViewer' do
|
83
|
-
expect(page).to have_selector 'div.viewer'
|
83
|
+
expect(page).to have_selector 'div.viewer-wrapper'
|
84
84
|
end
|
85
85
|
end
|
86
86
|
|
@@ -88,7 +88,7 @@ RSpec.describe 'hyrax/base/show.html.erb', type: :view do
|
|
88
88
|
let(:viewer_enabled) { false }
|
89
89
|
|
90
90
|
it 'omits the UniversalViewer' do
|
91
|
-
expect(page).not_to have_selector 'div.viewer'
|
91
|
+
expect(page).not_to have_selector 'div.viewer-wrapper'
|
92
92
|
end
|
93
93
|
end
|
94
94
|
end
|
@@ -129,4 +129,43 @@ RSpec.describe 'hyrax/dashboard/_sidebar.html.erb', type: :view do
|
|
129
129
|
|
130
130
|
it { is_expected.not_to have_link t('hyrax.dashboard.manage_proxies') }
|
131
131
|
end
|
132
|
+
|
133
|
+
context 'when sidebar partials are configured' do
|
134
|
+
around do |example|
|
135
|
+
original_partials = Hyrax::DashboardController.sidebar_partials.deep_dup
|
136
|
+
example.call
|
137
|
+
Hyrax::DashboardController.sidebar_partials = original_partials
|
138
|
+
end
|
139
|
+
|
140
|
+
# Show configuration menu
|
141
|
+
let(:manage_feature) { true }
|
142
|
+
|
143
|
+
it 'renders custom activity partials' do
|
144
|
+
stub_template "hyrax/dashboard/sidebar/_custom_activity.html.erb" => "Custom Activity Item"
|
145
|
+
Hyrax::DashboardController.sidebar_partials[:activity] << "hyrax/dashboard/sidebar/custom_activity"
|
146
|
+
render
|
147
|
+
expect(rendered).to have_content "Custom Activity Item"
|
148
|
+
end
|
149
|
+
|
150
|
+
it 'renders custom configuration partials' do
|
151
|
+
stub_template "hyrax/dashboard/sidebar/_custom_configuration.html.erb" => "Custom Configuration Item"
|
152
|
+
Hyrax::DashboardController.sidebar_partials[:configuration] << "hyrax/dashboard/sidebar/custom_configuration"
|
153
|
+
render
|
154
|
+
expect(rendered).to have_content "Custom Configuration Item"
|
155
|
+
end
|
156
|
+
|
157
|
+
it 'renders custom repository content partials' do
|
158
|
+
stub_template "hyrax/dashboard/sidebar/_custom_repository_content.html.erb" => "Custom Repository Content Item"
|
159
|
+
Hyrax::DashboardController.sidebar_partials[:repository_content] << "hyrax/dashboard/sidebar/custom_repository_content"
|
160
|
+
render
|
161
|
+
expect(rendered).to have_content "Custom Repository Content Item"
|
162
|
+
end
|
163
|
+
|
164
|
+
it 'renders custom tasks partials' do
|
165
|
+
stub_template "hyrax/dashboard/sidebar/_custom_task.html.erb" => "Custom Task Item"
|
166
|
+
Hyrax::DashboardController.sidebar_partials[:tasks] << "hyrax/dashboard/sidebar/custom_task"
|
167
|
+
render
|
168
|
+
expect(rendered).to have_content "Custom Task Item"
|
169
|
+
end
|
170
|
+
end
|
132
171
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
RSpec.describe 'hyrax/dashboard/collections/_sort_and_per_page.html.erb', type: :view do
|
2
|
-
let(:subject) { 'hyrax/dashboard/collections/sort_and_per_page
|
2
|
+
let(:subject) { 'hyrax/dashboard/collections/sort_and_per_page' }
|
3
3
|
let(:collection) { instance_double(Collection) }
|
4
4
|
|
5
5
|
before do
|
@@ -2,6 +2,7 @@ RSpec.describe 'hyrax/file_sets/_versioning.html.erb', type: :view do
|
|
2
2
|
let(:file_set) { stub_model(FileSet) }
|
3
3
|
|
4
4
|
before do
|
5
|
+
allow(file_set).to receive(:files).and_return([])
|
5
6
|
allow(view).to receive(:curation_concern).and_return(file_set)
|
6
7
|
assign(:version_list, [])
|
7
8
|
render
|
@@ -53,7 +53,7 @@ RSpec.describe 'hyrax/my/collections/_list_collections.html.erb', type: :view do
|
|
53
53
|
expect(rendered).to have_css '.collection_type', text: 'User Collection'
|
54
54
|
expect(rendered).to have_selector '.expanded-details', text: 'Collection Description'
|
55
55
|
expect(rendered).not_to have_selector 'span.fa-cubes'
|
56
|
-
expect(rendered).to have_selector '.thumbnail-wrapper > img
|
56
|
+
expect(rendered).to have_selector '.thumbnail-wrapper > img'
|
57
57
|
expect(rendered).to include Date.parse(modified_date).to_formatted_s(:standard)
|
58
58
|
end
|
59
59
|
end
|
@@ -102,7 +102,7 @@ RSpec.describe 'hyrax/my/collections/_list_collections.html.erb', type: :view do
|
|
102
102
|
expect(rendered).to have_css '.collection_type', text: 'Admin Set'
|
103
103
|
expect(rendered).to have_selector '.expanded-details', text: 'Admin Description'
|
104
104
|
expect(rendered).not_to have_selector 'span.fa-cubes'
|
105
|
-
expect(rendered).to have_selector '.thumbnail-wrapper > img
|
105
|
+
expect(rendered).to have_selector '.thumbnail-wrapper > img'
|
106
106
|
expect(rendered).to include Date.parse(modified_date).to_formatted_s(:standard)
|
107
107
|
end
|
108
108
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
RSpec.describe 'records/edit_fields/_title.html.erb', type: :view do
|
2
|
+
let(:work) { GenericWork.new }
|
3
|
+
let(:form) { Hyrax::GenericWorkForm.new(work, nil, controller) }
|
4
|
+
|
5
|
+
let(:form_template) do
|
6
|
+
%(
|
7
|
+
<%= simple_form_for [main_app, @form] do |f| %>
|
8
|
+
<%= render "records/edit_fields/alt_title", f: f, key: 'description' %>
|
9
|
+
<% end %>
|
10
|
+
)
|
11
|
+
end
|
12
|
+
|
13
|
+
before do
|
14
|
+
work.title = ["bbb", "aaa", "ccc"]
|
15
|
+
work.alt_title = []
|
16
|
+
assign(:form, form)
|
17
|
+
end
|
18
|
+
|
19
|
+
context "when there are 3 titles" do
|
20
|
+
it 'hides the last 2 after alphabetizing all 3 titles' do
|
21
|
+
render inline: form_template
|
22
|
+
expect(rendered).to have_selector('input[type="hidden"][value="bbb"]', visible: false)
|
23
|
+
expect(rendered).to have_selector('input[type="hidden"][value="ccc"]', visible: false)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
RSpec.describe 'records/edit_fields/_title.html.erb', type: :view do
|
2
|
+
let(:work) { GenericWork.new }
|
3
|
+
let(:form) { Hyrax::GenericWorkForm.new(work, nil, controller) }
|
4
|
+
|
5
|
+
let(:form_template) do
|
6
|
+
%(
|
7
|
+
<%= simple_form_for [main_app, @form] do |f| %>
|
8
|
+
<%= render "records/edit_fields/title", f: f, key: 'description' %>
|
9
|
+
<% end %>
|
10
|
+
)
|
11
|
+
end
|
12
|
+
|
13
|
+
before do
|
14
|
+
work.title = ["ccc", "bbb", "aaa"]
|
15
|
+
assign(:form, form)
|
16
|
+
end
|
17
|
+
|
18
|
+
context "when there are 3 titles" do
|
19
|
+
it 'displays the first after alphabetizing the list' do
|
20
|
+
render inline: form_template
|
21
|
+
expect(rendered).to have_selector('input[class="form-control string required"][value="aaa"]')
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
3
3
|
require 'wings'
|
4
4
|
require 'wings/active_fedora_converter'
|
5
5
|
|
6
|
-
RSpec.describe Wings::ActiveFedoraConverter do
|
6
|
+
RSpec.describe Wings::ActiveFedoraConverter, :clean_repo do
|
7
7
|
subject(:converter) { described_class.new(resource: resource) }
|
8
8
|
let(:adapter) { Valkyrie::Persistence::Memory::MetadataAdapter.new }
|
9
9
|
let(:attributes) { { id: id } }
|
@@ -11,6 +11,12 @@ RSpec.describe Wings::ActiveFedoraConverter do
|
|
11
11
|
let(:resource) { work.valkyrie_resource }
|
12
12
|
let(:work) { GenericWork.new(attributes) }
|
13
13
|
|
14
|
+
describe '.convert' do
|
15
|
+
it 'returns the ActiveFedora model' do
|
16
|
+
expect(described_class.convert(resource: resource)).to eq work
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
14
20
|
describe '#convert' do
|
15
21
|
it 'returns the ActiveFedora model' do
|
16
22
|
expect(converter.convert).to eq work
|
@@ -27,5 +33,134 @@ RSpec.describe Wings::ActiveFedoraConverter do
|
|
27
33
|
|
28
34
|
it 'populates reflections'
|
29
35
|
end
|
36
|
+
|
37
|
+
context 'with an embargo' do
|
38
|
+
let(:work) { FactoryBot.create(:embargoed_work) }
|
39
|
+
|
40
|
+
it 'repopulates the embargo' do
|
41
|
+
expect(converter.convert).to have_attributes(embargo_id: work.embargo_id)
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'repopulates the embargo as a model' do
|
45
|
+
expect(converter.convert).to have_attributes(embargo: work.embargo)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
context 'with a lease' do
|
50
|
+
let(:work) { FactoryBot.create(:leased_work) }
|
51
|
+
|
52
|
+
it 'repopulates the lease' do
|
53
|
+
expect(converter.convert).to have_attributes(lease_id: work.lease_id)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
context 'with a generic work with _id attributes' do
|
58
|
+
let(:work) { FactoryBot.create(:work_with_representative_file, with_admin_set: true) }
|
59
|
+
before do
|
60
|
+
work.thumbnail_id = work.representative_id
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'repopulates the _id attributes' do
|
64
|
+
expect(converter.convert).to have_attributes(
|
65
|
+
representative_id: work.representative_id,
|
66
|
+
thumbnail_id: work.thumbnail_id,
|
67
|
+
access_control_id: work.access_control_id,
|
68
|
+
admin_set_id: work.admin_set_id
|
69
|
+
)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
context 'when specifying visibility' do
|
74
|
+
let(:attributes) do
|
75
|
+
FactoryBot.attributes_for(:generic_work)
|
76
|
+
end
|
77
|
+
|
78
|
+
let(:visibility) { Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PUBLIC }
|
79
|
+
|
80
|
+
before { resource.visibility = visibility }
|
81
|
+
|
82
|
+
it 'sets the visibility' do
|
83
|
+
expect(converter.convert).to have_attributes(visibility: visibility)
|
84
|
+
end
|
85
|
+
|
86
|
+
context 'when restricted' do
|
87
|
+
let(:visibility) { Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED }
|
88
|
+
|
89
|
+
it 'sets the visibility' do
|
90
|
+
expect(converter.convert).to have_attributes(visibility: visibility)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
context 'when private' do
|
95
|
+
let(:visibility) { Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PRIVATE }
|
96
|
+
|
97
|
+
it 'sets the visibility' do
|
98
|
+
expect(converter.convert).to have_attributes(visibility: visibility)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
context 'when setting ACLs' do
|
104
|
+
it 'converts ACLs' do
|
105
|
+
expect { resource.read_users = ['moomin'] }
|
106
|
+
.to change { described_class.new(resource: resource).convert }
|
107
|
+
.to have_attributes(read_users: contain_exactly('moomin'))
|
108
|
+
end
|
109
|
+
|
110
|
+
context 'when ACLs exist' do
|
111
|
+
let(:work) { FactoryBot.create(:public_work) }
|
112
|
+
|
113
|
+
it 'can delete ACLs' do
|
114
|
+
expect { resource.read_groups = [] }
|
115
|
+
.to change { described_class.new(resource: resource).convert }
|
116
|
+
.from(have_attributes(read_groups: contain_exactly('public')))
|
117
|
+
.to have_attributes(read_groups: be_empty)
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
context 'with relationships' do
|
123
|
+
subject(:factory) { Wings::ModelTransformer.new(pcdm_object: pcdm_object) }
|
124
|
+
|
125
|
+
let(:resource) { subject.build }
|
126
|
+
|
127
|
+
context 'for member_of_collections' do
|
128
|
+
let(:pcdm_object) { collection1 }
|
129
|
+
|
130
|
+
let(:collection1) { build(:public_collection_lw, id: 'col1', title: ['Collection 1']) }
|
131
|
+
let(:collection2) { build(:public_collection_lw, id: 'col2', title: ['Collection 2']) }
|
132
|
+
let(:collection3) { build(:public_collection_lw, id: 'col3', title: ['Collection 3']) }
|
133
|
+
|
134
|
+
before do
|
135
|
+
collection1.member_of_collections = [collection2, collection3]
|
136
|
+
collection1.save!
|
137
|
+
end
|
138
|
+
|
139
|
+
it 'converts member_of_collection_ids back to af_object' do
|
140
|
+
expect(converter.convert.member_of_collections.map(&:id)).to match_array [collection2.id, collection3.id]
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
context 'for members' do
|
145
|
+
let(:pcdm_object) { work1 }
|
146
|
+
|
147
|
+
let(:work1) { build(:work, id: 'wk1', title: ['Work 1']) }
|
148
|
+
let(:work2) { build(:work, id: 'wk2', title: ['Work 2']) }
|
149
|
+
let(:work3) { build(:work, id: 'wk3', title: ['Work 3']) }
|
150
|
+
|
151
|
+
before do
|
152
|
+
work1.ordered_members = [work2, work3]
|
153
|
+
work1.save!
|
154
|
+
end
|
155
|
+
|
156
|
+
it 'converts member_of_collection_ids back to af_object' do
|
157
|
+
expect(converter.convert.members.map(&:id)).to match_array [work3.id, work2.id]
|
158
|
+
end
|
159
|
+
|
160
|
+
it 'preserves order across conversion' do
|
161
|
+
expect(converter.convert.ordered_member_ids).to eq [work2.id, work3.id]
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
30
165
|
end
|
31
166
|
end
|