curation_concerns 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -9
- data/.rspec +1 -1
- data/.rubocop.yml +185 -0
- data/.travis.yml +0 -10
- data/CONTRIBUTING.md +117 -0
- data/Gemfile +5 -2
- data/README.md +18 -11
- data/Rakefile +23 -11
- data/VERSION +1 -1
- data/app/assets/images/audio.png +0 -0
- data/app/assets/images/loading.gif +0 -0
- data/app/assets/images/progressbar.gif +0 -0
- data/app/assets/javascripts/curation_concerns/application.js +2 -8
- data/app/assets/javascripts/curation_concerns/curation_concerns.js +1 -15
- data/app/assets/javascripts/curation_concerns/facet_mine.js +4 -10
- data/app/assets/javascripts/curation_concerns/fileupload.js +6 -0
- data/app/assets/javascripts/curation_concerns/uploader.js +183 -0
- data/app/assets/stylesheets/curation_concerns/_curation_concerns.scss +3 -0
- data/app/assets/stylesheets/curation_concerns/_positioning.scss +6 -0
- data/app/assets/stylesheets/curation_concerns/fileupload/jquery.fileupload-ui.scss +86 -0
- data/app/assets/stylesheets/curation_concerns/fileupload/thumbnail-scaling.css +3 -0
- data/app/assets/stylesheets/curation_concerns/fileupload.scss +48 -0
- data/app/assets/stylesheets/curation_concerns/modules/attributes.scss +10 -0
- data/app/assets/stylesheets/curation_concerns/modules/embargoes.scss +1 -1
- data/app/assets/stylesheets/curation_concerns/modules/forms.scss +0 -10
- data/app/assets/stylesheets/curation_concerns/modules/search_results.scss +7 -8
- data/app/controllers/concerns/curation_concerns/api.rb +77 -0
- data/app/controllers/concerns/curation_concerns/application_controller_behavior.rb +30 -12
- data/app/controllers/concerns/curation_concerns/catalog_controller.rb +9 -276
- data/app/controllers/concerns/curation_concerns/collections_controller_behavior.rb +51 -40
- data/app/controllers/concerns/curation_concerns/curation_concern_controller.rb +60 -30
- data/app/controllers/concerns/curation_concerns/download_behavior.rb +51 -37
- data/app/controllers/concerns/curation_concerns/embargoes_controller_behavior.rb +29 -29
- data/app/controllers/concerns/curation_concerns/file_sets_controller_behavior.rb +198 -0
- data/app/controllers/concerns/curation_concerns/leases_controller_behavior.rb +27 -20
- data/app/controllers/concerns/curation_concerns/manages_embargoes.rb +2 -7
- data/app/controllers/concerns/curation_concerns/parent_container.rb +20 -4
- data/app/controllers/concerns/curation_concerns/single_use_links_controller_behavior.rb +48 -0
- data/app/controllers/concerns/curation_concerns/single_use_links_viewer_controller_behavior.rb +75 -0
- data/app/controllers/concerns/curation_concerns/themed_layout_controller.rb +0 -1
- data/app/controllers/concerns/curation_concerns/upload_sets_controller_behavior.rb +38 -0
- data/app/controllers/concerns/curation_concerns/welcome_controller_behavior.rb +8 -0
- data/app/controllers/concerns/curation_concerns/without_namespace.rb +2 -1
- data/app/controllers/curation_concerns/classify_concerns_controller.rb +9 -9
- data/app/controllers/curation_concerns/file_sets_controller.rb +5 -0
- data/app/controllers/curation_concerns/permissions_controller.rb +2 -3
- data/app/controllers/curation_concerns/single_use_links_controller.rb +5 -0
- data/app/controllers/curation_concerns/single_use_links_viewer_controller.rb +21 -0
- data/app/controllers/downloads_controller.rb +0 -1
- data/app/controllers/embargoes_controller.rb +0 -2
- data/app/controllers/leases_controller.rb +0 -2
- data/app/controllers/registrations_controller.rb +1 -2
- data/app/controllers/upload_sets_controller.rb +3 -0
- data/app/controllers/welcome_controller.rb +3 -0
- data/app/forms/curation_concerns/forms/collection_edit_form.rb +18 -2
- data/app/forms/curation_concerns/forms/file_set_edit_form.rb +15 -0
- data/app/forms/curation_concerns/forms/work_form.rb +57 -0
- data/app/helpers/curation_concerns/ability_helper.rb +24 -24
- data/app/helpers/curation_concerns/catalog_helper.rb +9 -8
- data/app/helpers/curation_concerns/collections_helper.rb +9 -12
- data/app/helpers/curation_concerns/embargo_helper.rb +0 -2
- data/app/helpers/curation_concerns/file_set_helper.rb +31 -0
- data/app/helpers/curation_concerns/lease_helper.rb +0 -3
- data/app/helpers/curation_concerns/main_app_helpers.rb +1 -3
- data/app/helpers/curation_concerns/render_constraints_helper.rb +5 -5
- data/app/helpers/curation_concerns/search_paths_helper.rb +5 -7
- data/app/helpers/curation_concerns/title_helper.rb +3 -7
- data/app/helpers/curation_concerns/url_helper.rb +4 -6
- data/app/inputs/multifile_input.rb +8 -0
- data/app/jobs/visibility_copy_job.rb +22 -0
- data/app/presenters/curation_concerns/collection_presenter.rb +14 -32
- data/app/presenters/curation_concerns/embargo_presenter.rb +26 -0
- data/app/presenters/curation_concerns/file_set_presenter.rb +34 -0
- data/app/presenters/curation_concerns/lease_presenter.rb +30 -0
- data/app/presenters/curation_concerns/model_proxy.rb +27 -0
- data/app/presenters/curation_concerns/permission_badge.rb +61 -0
- data/app/presenters/curation_concerns/presenter_factory.rb +45 -0
- data/app/presenters/curation_concerns/presents_attributes.rb +25 -0
- data/app/presenters/curation_concerns/version_list_presenter.rb +18 -0
- data/app/presenters/curation_concerns/version_presenter.rb +27 -0
- data/app/presenters/curation_concerns/work_show_presenter.rb +33 -0
- data/app/renderers/curation_concerns/attribute_renderer.rb +75 -0
- data/app/search_builders/curation_concerns/deactivated_embargo_search_builder.rb +10 -0
- data/app/search_builders/curation_concerns/deactivated_lease_search_builder.rb +10 -0
- data/app/search_builders/curation_concerns/embargo_search_builder.rb +23 -0
- data/app/search_builders/curation_concerns/expired_embargo_search_builder.rb +11 -0
- data/app/search_builders/curation_concerns/expired_lease_search_builder.rb +11 -0
- data/app/search_builders/curation_concerns/lease_search_builder.rb +23 -0
- data/app/search_builders/curation_concerns/search_builder.rb +10 -16
- data/app/services/curation_concerns/curation_concern.rb +0 -5
- data/app/services/curation_concerns/embargo_service.rb +26 -4
- data/app/services/curation_concerns/lease_service.rb +14 -5
- data/app/services/curation_concerns/parent_service.rb +19 -0
- data/app/services/curation_concerns/restriction_service.rb +24 -0
- data/app/services/rights_service.rb +14 -0
- data/app/views/catalog/_action_menu_partials/_collection.html.erb +1 -1
- data/app/views/catalog/_action_menu_partials/_default.html.erb +5 -3
- data/app/views/catalog/_document_list.html.erb +1 -1
- data/app/views/catalog/index.html.erb +1 -35
- data/app/views/collections/_edit_descriptions.html.erb +3 -4
- data/app/views/collections/_form.html.erb +1 -1
- data/app/views/collections/_form_permission.html.erb +1 -1
- data/app/views/collections/_search_form.html.erb +10 -0
- data/app/views/collections/_show_actions.html.erb +3 -3
- data/app/views/collections/_sort_and_per_page.html.erb +2 -2
- data/app/views/collections/show.html.erb +6 -6
- data/app/views/curation_concerns/base/_attribute_rows.html.erb +7 -0
- data/app/views/curation_concerns/base/_attributes.html.erb +6 -13
- data/app/views/curation_concerns/base/_form.html.erb +4 -5
- data/app/views/curation_concerns/base/_form_descriptive_fields.erb +2 -4
- data/app/views/curation_concerns/base/_form_files_and_links.html.erb +3 -5
- data/app/views/curation_concerns/base/_form_permission.html.erb +13 -26
- data/app/views/curation_concerns/base/_form_permission_note.html.erb +15 -0
- data/app/views/curation_concerns/base/_form_permission_under_embargo.html.erb +2 -2
- data/app/views/curation_concerns/base/_form_permission_under_lease.html.erb +2 -2
- data/app/views/curation_concerns/base/_form_representative_image.html.erb +16 -4
- data/app/views/curation_concerns/base/_form_rights.html.erb +17 -0
- data/app/views/curation_concerns/base/_form_supplementary_fields.html.erb +4 -9
- data/app/views/curation_concerns/base/_related_files.html.erb +4 -4
- data/app/views/curation_concerns/base/_representative_media.html.erb +2 -4
- data/app/views/curation_concerns/base/_versioning.html.erb +23 -0
- data/app/views/curation_concerns/base/show.html.erb +13 -10
- data/app/views/curation_concerns/base/show.json.jbuilder +1 -0
- data/app/views/curation_concerns/base/versions.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/_actions.html.erb +16 -0
- data/app/views/curation_concerns/file_sets/_file_set.html.erb +12 -0
- data/app/views/curation_concerns/{generic_files → file_sets}/_form.html.erb +7 -7
- data/app/views/curation_concerns/file_sets/_multiple_upload.html.erb +3 -0
- data/app/views/curation_concerns/{generic_files → file_sets}/edit.html.erb +0 -0
- data/app/views/curation_concerns/file_sets/jq_upload.json.jbuilder +8 -0
- data/app/views/curation_concerns/file_sets/media_display/_audio.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/media_display/_default.html.erb +4 -0
- data/app/views/curation_concerns/file_sets/media_display/_image.html.erb +8 -0
- data/app/views/curation_concerns/file_sets/media_display/_office_document.html.erb +7 -0
- data/app/views/curation_concerns/file_sets/media_display/_pdf.html.erb +7 -0
- data/app/views/curation_concerns/file_sets/media_display/_video.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/show.html.erb +15 -0
- data/app/views/curation_concerns/file_sets/show.json.jbuilder +1 -0
- data/app/views/curation_concerns/file_sets/upload/_alerts.html.erb +19 -0
- data/app/views/curation_concerns/file_sets/upload/_form.html.erb +6 -0
- data/app/views/curation_concerns/file_sets/upload/_form_fields.html.erb +45 -0
- data/app/views/curation_concerns/file_sets/upload/_script_templates.html.erb +61 -0
- data/app/views/curation_concerns/single_use_links/new_download.html.erb +5 -0
- data/app/views/curation_concerns/single_use_links/new_show.html.erb +5 -0
- data/app/views/curation_concerns/single_use_links_viewer/show.html.erb +10 -0
- data/app/views/error/single_use_error.html.erb +19 -0
- data/app/views/layouts/error.html.erb +33 -0
- data/app/views/leases/_list_expired_active_leases.html.erb +6 -1
- data/app/views/records/_rights_modal.html.erb +1 -0
- data/app/views/records/edit_fields/_default.html.erb +5 -0
- data/app/views/records/show_fields/_default.html.erb +6 -0
- data/app/views/shared/_add_content.html.erb +2 -14
- data/app/views/shared/_add_works.html.erb +14 -0
- data/app/views/shared/_my_actions.html.erb +9 -1
- data/app/views/shared/_site_actions.html.erb +1 -1
- data/app/views/shared/_site_search.html.erb +7 -7
- data/app/views/upload_sets/_edit.js.erb +15 -0
- data/app/views/upload_sets/_metadata.html.erb +50 -0
- data/app/views/upload_sets/_more_metadata.html.erb +7 -0
- data/app/views/upload_sets/edit.html.erb +26 -0
- data/app/views/{catalog/_home_text.html.erb → welcome/index.html.erb} +1 -0
- data/config/initializers/simple_form.rb +14 -0
- data/config/jetty.yml +5 -0
- data/config/locales/curation_concerns.en.yml +25 -4
- data/config/routes.rb +5 -0
- data/curation_concerns.gemspec +4 -6
- data/lib/curation_concerns/callbacks/registry.rb +48 -0
- data/lib/curation_concerns/callbacks.rb +26 -0
- data/lib/curation_concerns/controller_resource.rb +4 -4
- data/lib/curation_concerns/engine.rb +4 -2
- data/lib/curation_concerns/rails/routes.rb +23 -19
- data/lib/curation_concerns/single_use_error.rb +3 -0
- data/lib/curation_concerns/spec_support.rb +0 -2
- data/lib/curation_concerns/version.rb +1 -1
- data/lib/curation_concerns.rb +1 -2
- data/lib/generators/curation_concerns/install_generator.rb +34 -30
- data/lib/generators/curation_concerns/templates/catalog_controller.rb +236 -0
- data/lib/generators/curation_concerns/templates/config/authorities/rights.yml +19 -0
- data/lib/generators/curation_concerns/templates/{curation_concerns.css.scss → curation_concerns.scss} +0 -0
- data/lib/generators/curation_concerns/work/templates/actor_spec.rb.erb +1 -1
- data/lib/generators/curation_concerns/work/templates/controller_spec.rb.erb +1 -1
- data/lib/generators/curation_concerns/work/templates/form.rb.erb +8 -0
- data/lib/generators/curation_concerns/work/templates/form_spec.rb.erb +10 -0
- data/lib/generators/curation_concerns/work/templates/model.rb.erb +2 -2
- data/lib/generators/curation_concerns/work/templates/model_spec.rb.erb +1 -1
- data/lib/generators/curation_concerns/work/work_generator.rb +31 -26
- data/spec/abilities/collection_abilities_spec.rb +13 -13
- data/spec/abilities/embargo_and_lease_ability_spec.rb +23 -0
- data/spec/abilities/file_set_abilities_spec.rb +67 -0
- data/spec/abilities/generic_work_abilities_spec.rb +12 -12
- data/spec/actors/curation_concerns/embargo_actor_spec.rb +38 -0
- data/spec/actors/curation_concerns/file_set_actor_spec.rb +180 -0
- data/spec/actors/curation_concerns/lease_actor_spec.rb +39 -0
- data/spec/actors/curation_concerns/manages_embargoes_actor_spec.rb +44 -38
- data/spec/actors/curation_concerns/work_actor_spec.rb +121 -63
- data/spec/controllers/catalog_controller_spec.rb +30 -32
- data/spec/controllers/curation_concerns/classify_concerns_controller_spec.rb +2 -3
- data/spec/controllers/curation_concerns/collections_controller_spec.rb +93 -76
- data/spec/controllers/curation_concerns/file_sets_controller_json_spec.rb +106 -0
- data/spec/controllers/curation_concerns/file_sets_controller_spec.rb +237 -0
- data/spec/controllers/curation_concerns/generic_works_controller_json_spec.rb +85 -0
- data/spec/controllers/curation_concerns/generic_works_controller_spec.rb +84 -72
- data/spec/controllers/curation_concerns/permissions_controller_spec.rb +8 -11
- data/spec/controllers/curation_concerns/single_use_links_controller_spec.rb +79 -0
- data/spec/controllers/curation_concerns/single_use_links_viewer_controller_spec.rb +74 -0
- data/spec/controllers/downloads_controller_spec.rb +49 -24
- data/spec/controllers/embargoes_controller_spec.rb +42 -51
- data/spec/controllers/leases_controller_spec.rb +53 -42
- data/spec/controllers/upload_sets_controller_spec.rb +76 -0
- data/spec/controllers/welcome_controller_spec.rb +12 -0
- data/spec/factories/collections.rb +5 -1
- data/spec/factories/{generic_files.rb → file_sets.rb} +6 -6
- data/spec/factories/generic_works.rb +5 -6
- data/spec/factories/users.rb +2 -4
- data/spec/features/add_file_spec.rb +11 -12
- data/spec/features/catalog_search_spec.rb +43 -0
- data/spec/features/collection_spec.rb +61 -46
- data/spec/features/create_work_spec.rb +26 -19
- data/spec/features/embargo_spec.rb +13 -12
- data/spec/features/lease_spec.rb +15 -16
- data/spec/features/update_file_spec.rb +11 -13
- data/spec/features/work_generator_spec.rb +34 -26
- data/spec/{helpers/curation_concerns/.keep → fixtures/empty_file.txt} +0 -0
- data/spec/fixtures/test.pdf +0 -0
- data/spec/forms/collection_edit_form_spec.rb +53 -9
- data/spec/forms/file_set_edit_form_spec.rb +53 -0
- data/spec/forms/work_form_spec.rb +54 -0
- data/spec/helpers/catalog_helper_spec.rb +9 -10
- data/spec/helpers/configuration_helper_spec.rb +1 -2
- data/spec/helpers/curation_concerns/collections_helper_spec.rb +8 -9
- data/spec/helpers/curation_concerns/file_set_helper_spec.rb +61 -0
- data/spec/helpers/render_constraints_helper_spec.rb +4 -4
- data/spec/helpers/url_helper_spec.rb +8 -7
- data/spec/indexers/collection_indexer_spec.rb +14 -0
- data/spec/indexers/file_set_indexing_service_spec.rb +69 -0
- data/spec/indexers/generic_work_indexing_service_spec.rb +22 -0
- data/spec/inputs/multifile_input_spec.rb +32 -0
- data/spec/jobs/active_fedora_id_based_job_spec.rb +10 -8
- data/spec/jobs/audit_job_spec.rb +28 -20
- data/spec/jobs/characterize_job_spec.rb +10 -15
- data/spec/jobs/create_derivatives_job_spec.rb +11 -9
- data/spec/jobs/import_url_job_spec.rb +14 -21
- data/spec/jobs/ingest_file_job_spec.rb +45 -0
- data/spec/jobs/ingest_local_file_job_spec.rb +13 -15
- data/spec/jobs/upload_set_update_job_spec.rb +30 -0
- data/spec/jobs/visibility_copy_job_spec.rb +61 -0
- data/spec/lib/curation_concerns/callbacks/registry_spec.rb +54 -0
- data/spec/lib/curation_concerns/callbacks_spec.rb +27 -0
- data/spec/lib/curation_concerns/messages_spec.rb +29 -30
- data/spec/lib/curation_concerns/readable_permissions_spec.rb +18 -20
- data/spec/lib/curation_concerns/writable_permissions_spec.rb +2 -4
- data/spec/matchers/metadata_field_matchers.rb +1 -1
- data/spec/matchers/response_matchers.rb +2 -2
- data/spec/matchers.rb +3 -2
- data/spec/models/checksum_audit_log_spec.rb +37 -32
- data/spec/models/curation_concerns/collection_behavior_spec.rb +50 -37
- data/spec/models/curation_concerns/file_set/derivatives_spec.rb +84 -0
- data/spec/models/curation_concerns/work_behavior_spec.rb +53 -0
- data/spec/models/file_set_spec.rb +601 -0
- data/spec/models/generic_work_spec.rb +15 -14
- data/spec/models/single_use_link_spec.rb +69 -0
- data/spec/models/solr_document_spec.rb +67 -0
- data/spec/models/upload_set_spec.rb +39 -0
- data/spec/models/user_spec.rb +7 -8
- data/spec/presenters/curation_concerns/collection_presenter_spec.rb +8 -24
- data/spec/presenters/curation_concerns/file_set_presenter_spec.rb +59 -0
- data/spec/presenters/curation_concerns/permission_badge_spec.rb +29 -0
- data/spec/presenters/curation_concerns/presenter_factory_spec.rb +29 -0
- data/spec/presenters/curation_concerns/version_list_presenter_spec.rb +32 -0
- data/spec/presenters/curation_concerns/version_presenter_spec.rb +51 -0
- data/spec/presenters/curation_concerns/work_show_presenter_spec.rb +35 -0
- data/spec/presenters/embargo_presenter_spec.rb +48 -0
- data/spec/presenters/lease_presenter_spec.rb +48 -0
- data/spec/renderers/curation_concerns/attribute_renderer_spec.rb +14 -0
- data/spec/routing/curation_concerns/routes_spec.rb +38 -12
- data/spec/routing/route_spec.rb +38 -39
- data/spec/search_builders/curation_concerns/embargo_search_builder_spec.rb +17 -0
- data/spec/search_builders/curation_concerns/lease_search_builder_spec.rb +17 -0
- data/spec/search_builders/curation_concerns/search_builder_spec.rb +60 -0
- data/spec/services/derivative_path_spec.rb +16 -0
- data/spec/services/embargo_service_spec.rb +15 -14
- data/spec/services/file_set_audit_service_spec.rb +71 -0
- data/spec/services/lease_service_spec.rb +13 -13
- data/spec/services/lock_manager_spec.rb +12 -0
- data/spec/services/parent_service_spec.rb +13 -0
- data/spec/services/persist_derivatives_spec.rb +24 -0
- data/spec/services/persist_directly_contained_output_file_service_spec.rb +14 -0
- data/spec/services/repository_audit_service_spec.rb +8 -7
- data/spec/services/rights_service_spec.rb +17 -0
- data/spec/services/thumbnail_path_service_spec.rb +43 -0
- data/spec/services/versioning_service_spec.rb +8 -9
- data/spec/spec_helper.rb +21 -13
- data/spec/support/curation_concerns/factory_helpers.rb +1 -0
- data/spec/support/features/fixture_file_upload.rb +3 -1
- data/spec/support/features/session_helpers.rb +3 -4
- data/spec/support/features.rb +1 -4
- data/spec/support/input_support.rb +11 -0
- data/spec/support/matchers/api_responses.rb +22 -0
- data/spec/support/shared/shared_examples_has_dc_metadata.rb +0 -2
- data/spec/support/shared/shared_examples_is_embargoable.rb +1 -3
- data/spec/support/shared/shared_examples_with_access_rights.rb +13 -16
- data/spec/tasks/rake_spec.rb +9 -11
- data/spec/test_app_templates/Gemfile.extra +4 -1
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +3 -35
- data/spec/views/catalog/index.html.erb_spec.rb +7 -10
- data/spec/views/curation_concerns/base/_attributes.html.erb_spec.rb +9 -6
- data/spec/views/curation_concerns/base/_form_permission.html.erb_spec.rb +13 -0
- data/spec/views/curation_concerns/base/show.html.erb_spec.rb +35 -15
- data/spec/views/curation_concerns/base/show.json.jbuilder_spec.rb +21 -0
- data/spec/views/curation_concerns/file_sets/_file_set.html.erb_spec.rb +37 -0
- data/spec/views/curation_concerns/file_sets/show.json.jbuilder_spec.rb +21 -0
- data/spec/views/curation_concerns/permissions/confirm.html.erb_spec.rb +6 -6
- data/spec/views/error/single_use_error.html.erb_spec.rb +8 -0
- data/spec/views/layouts/error.html.erb_spec.rb +8 -0
- data/spec/views/shared/_add_content.html.erb_spec.rb +33 -20
- data/spec/views/shared/_my_actions.html.erb_spec.rb +18 -6
- data/spec/views/single_use_links/new_download.html.erb_spec.rb +29 -0
- data/spec/views/single_use_links_viewer/show.html.erb_spec.rb +32 -0
- data/tasks/jetty.rake +1 -1
- data/vendor/assets/javascrips/fileupload/jquery.fileupload-process.js +175 -0
- data/vendor/assets/javascrips/fileupload/jquery.fileupload-ui.js +710 -0
- data/vendor/assets/javascrips/fileupload/jquery.fileupload-validate.js +122 -0
- data/vendor/assets/javascrips/fileupload/jquery.fileupload.js +1477 -0
- data/vendor/assets/javascrips/fileupload/locale.js +27 -0
- data/vendor/assets/javascrips/fileupload/tmpl.js +87 -0
- metadata +242 -213
- data/app/assets/javascripts/curation_concerns/help_modal.js +0 -36
- data/app/assets/javascripts/curation_concerns/link_groups.js.coffee +0 -123
- data/app/assets/javascripts/curation_concerns/link_users.js.coffee +0 -126
- data/app/assets/javascripts/curation_concerns/proxy_rights.js.coffee +0 -95
- data/app/assets/javascripts/curation_concerns/proxy_submission.js +0 -23
- data/app/assets/javascripts/curation_concerns/select_works.js.coffee +0 -20
- data/app/controllers/catalog_controller.rb +0 -3
- data/app/controllers/concerns/curation_concerns/generic_files_controller_behavior.rb +0 -149
- data/app/controllers/curation_concerns/generic_files_controller.rb +0 -13
- data/app/datastreams/curation_concerns/generic_work_rdf_properties.rb +0 -57
- data/app/datastreams/generic_work_metadata.rb +0 -3
- data/app/forms/curation_concerns/forms/generic_file_edit_form.rb +0 -15
- data/app/forms/curation_concerns/forms/generic_work_edit_form.rb +0 -9
- data/app/helpers/curation_concerns/attribute_helper.rb +0 -67
- data/app/helpers/curation_concerns/generic_file_helper.rb +0 -19
- data/app/helpers/curation_concerns/thumbnail_helper.rb +0 -11
- data/app/presenters/curation_concerns/generic_file_presenter.rb +0 -14
- data/app/presenters/curation_concerns/generic_work_presenter.rb +0 -13
- data/app/views/catalog/_index_default.html.erb +0 -17
- data/app/views/collections/_form_representative_image.html.erb +0 -13
- data/app/views/collections/_identifier_and_action.html.erb +0 -15
- data/app/views/curation_concerns/base/_form_content_license.html.erb +0 -16
- data/app/views/curation_concerns/base/_form_editors.html.erb +0 -15
- data/app/views/curation_concerns/generic_files/_actions.html.erb +0 -16
- data/app/views/curation_concerns/generic_files/_generic_file.html.erb +0 -12
- data/app/views/curation_concerns/generic_files/_media_display.html.erb +0 -19
- data/app/views/curation_concerns/generic_files/jq_upload.json.jbuilder +0 -8
- data/app/views/curation_concerns/generic_files/show.html.erb +0 -15
- data/app/workers/visibility_copy_worker.rb +0 -30
- data/curation_concerns-models/.gitignore +0 -17
- data/curation_concerns-models/Gemfile +0 -4
- data/curation_concerns-models/LICENSE.md +0 -177
- data/curation_concerns-models/README.md +0 -42
- data/curation_concerns-models/Rakefile +0 -1
- data/curation_concerns-models/app/actors/concerns/curation_concerns/manages_embargoes_actor.rb +0 -99
- data/curation_concerns-models/app/actors/curation_concerns/base_actor.rb +0 -90
- data/curation_concerns-models/app/actors/curation_concerns/generic_file_actor.rb +0 -150
- data/curation_concerns-models/app/actors/curation_concerns/work_actor_behavior.rb +0 -88
- data/curation_concerns-models/app/jobs/active_fedora_id_based_job.rb +0 -22
- data/curation_concerns-models/app/jobs/active_fedora_pid_based_job.rb +0 -6
- data/curation_concerns-models/app/jobs/audit_job.rb +0 -58
- data/curation_concerns-models/app/jobs/characterize_job.rb +0 -11
- data/curation_concerns-models/app/jobs/copy_permissions_job.rb +0 -24
- data/curation_concerns-models/app/jobs/create_derivatives_job.rb +0 -15
- data/curation_concerns-models/app/jobs/import_url_job.rb +0 -56
- data/curation_concerns-models/app/jobs/ingest_local_file_job.rb +0 -48
- data/curation_concerns-models/app/jobs/resolrize_job.rb +0 -9
- data/curation_concerns-models/app/models/checksum_audit_log.rb +0 -21
- data/curation_concerns-models/app/models/concerns/curation_concerns/ability.rb +0 -34
- data/curation_concerns-models/app/models/concerns/curation_concerns/basic_metadata.rb +0 -87
- data/curation_concerns-models/app/models/concerns/curation_concerns/collection_behavior.rb +0 -47
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/belongs_to_works.rb +0 -53
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/characterization.rb +0 -89
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/content.rb +0 -8
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/export.rb +0 -343
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/full_text_indexing.rb +0 -12
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/indexing.rb +0 -14
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file/versions.rb +0 -16
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file.rb +0 -5
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_file_behavior.rb +0 -44
- data/curation_concerns-models/app/models/concerns/curation_concerns/generic_work_behavior.rb +0 -38
- data/curation_concerns-models/app/models/concerns/curation_concerns/has_representative.rb +0 -14
- data/curation_concerns-models/app/models/concerns/curation_concerns/human_readable_type.rb +0 -23
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/readable.rb +0 -19
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions/writable.rb +0 -75
- data/curation_concerns-models/app/models/concerns/curation_concerns/permissions.rb +0 -7
- data/curation_concerns-models/app/models/concerns/curation_concerns/serializers.rb +0 -15
- data/curation_concerns-models/app/models/concerns/curation_concerns/solr_document_behavior.rb +0 -135
- data/curation_concerns-models/app/models/concerns/curation_concerns/user.rb +0 -65
- data/curation_concerns-models/app/models/concerns/curation_concerns/with_basic_metadata.rb +0 -98
- data/curation_concerns-models/app/models/concerns/curation_concerns/with_generic_files.rb +0 -29
- data/curation_concerns-models/app/models/curation_concerns/classify_concern.rb +0 -47
- data/curation_concerns-models/app/models/curation_concerns/quick_classification_query.rb +0 -31
- data/curation_concerns-models/app/models/datastreams/fits_datastream.rb +0 -148
- data/curation_concerns-models/app/models/version_committer.rb +0 -2
- data/curation_concerns-models/app/services/curation_concerns/characterization_service.rb +0 -71
- data/curation_concerns-models/app/services/curation_concerns/full_text_extraction_service.rb +0 -38
- data/curation_concerns-models/app/services/curation_concerns/generic_file_audit_service.rb +0 -85
- data/curation_concerns-models/app/services/curation_concerns/generic_file_indexing_service.rb +0 -14
- data/curation_concerns-models/app/services/curation_concerns/generic_work_indexing_service.rb +0 -16
- data/curation_concerns-models/app/services/curation_concerns/noid.rb +0 -23
- data/curation_concerns-models/app/services/curation_concerns/repository_audit_service.rb +0 -9
- data/curation_concerns-models/app/services/curation_concerns/versioning_service.rb +0 -27
- data/curation_concerns-models/config/locales/curation_concerns.en.yml +0 -6
- data/curation_concerns-models/curation_concerns-models.gemspec +0 -34
- data/curation_concerns-models/lib/curation_concerns/messages.rb +0 -66
- data/curation_concerns-models/lib/curation_concerns/models/engine.rb +0 -61
- data/curation_concerns-models/lib/curation_concerns/models/resque.rb +0 -36
- data/curation_concerns-models/lib/curation_concerns/models/utils.rb +0 -22
- data/curation_concerns-models/lib/curation_concerns/models/version.rb +0 -5
- data/curation_concerns-models/lib/curation_concerns/models.rb +0 -32
- data/curation_concerns-models/lib/generators/curation_concerns/models/abstract_migration_generator.rb +0 -30
- data/curation_concerns-models/lib/generators/curation_concerns/models/clamav_generator.rb +0 -19
- data/curation_concerns-models/lib/generators/curation_concerns/models/fulltext_generator.rb +0 -28
- data/curation_concerns-models/lib/generators/curation_concerns/models/install_generator.rb +0 -70
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/collection.rb +0 -4
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/app/models/generic_file.rb +0 -4
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/clamav.rb +0 -1
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/curation_concerns.rb +0 -123
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/mime_types.rb +0 -6
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis.yml +0 -9
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/redis_config.rb +0 -32
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque-pool.yml +0 -1
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_admin.rb +0 -10
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/config/resque_config.rb +0 -5
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_checksum_audit_logs.rb +0 -19
- data/curation_concerns-models/lib/generators/curation_concerns/models/templates/migrations/create_version_committers.rb +0 -15
- data/curation_concerns-models/lib/tasks/curation_concerns-models_tasks.rake +0 -75
- data/curation_concerns-models/lib/tasks/migrate.rake +0 -13
- data/curation_concerns-models/lib/tasks/resque.rake +0 -13
- data/curation_concerns-models/lib/tasks/solr_reindex.rake +0 -8
- data/lib/curation_concerns/configuration.rb +0 -74
- data/lib/generators/curation_concerns/templates/curation_concerns_config.rb +0 -2
- data/solr_conf/conf/solrconfig.xml +0 -223
- data/spec/abilities/generic_file_abilities_spec.rb +0 -62
- data/spec/actors/curation_concerns/generic_file_actor_spec.rb +0 -116
- data/spec/controllers/curation_concerns/generic_files_controller_spec.rb +0 -251
- data/spec/forms/generic_file_edit_form_spec.rb +0 -33
- data/spec/helpers/thumbnail_helper_spec.rb +0 -21
- data/spec/jobs/copy_permissions_job_spec.rb +0 -49
- data/spec/jobs/curation_concerns_resque_queue_spec.rb +0 -49
- data/spec/models/curation_concerns/generic_file/derivatives_spec.rb +0 -88
- data/spec/models/curation_concerns/generic_work_behavior_spec.rb +0 -35
- data/spec/models/fits_datastream_spec.rb +0 -127
- data/spec/models/generic_file_spec.rb +0 -619
- data/spec/presenters/curation_concerns/generic_file_presenter_spec.rb +0 -16
- data/spec/services/characterization_service_spec.rb +0 -30
- data/spec/services/full_text_extraction_service_spec.rb +0 -5
- data/spec/services/generic_file_audit_service_spec.rb +0 -71
- data/spec/services/generic_file_indexing_service_spec.rb +0 -57
- data/spec/services/generic_work_indexing_service_spec.rb +0 -18
- data/spec/workers/visibility_copy_worker_spec.rb +0 -70
- data/vendor/assets/javascripts/handlebars.js +0 -2278
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js +0 -602
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js +0 -356
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js +0 -50
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js +0 -1276
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js +0 -610
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js +0 -498
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js +0 -528
- data/vendor/assets/javascripts/jquery.tokeninput.js +0 -1061
- data/vendor/assets/stylesheets/jquery-ui-lightness.css +0 -474
- data/vendor/assets/stylesheets/token-input-facebook.css +0 -122
- data/vendor/assets/stylesheets/token-input-mac.css +0 -204
- data/vendor/assets/stylesheets/token-input.css +0 -127
@@ -1,619 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
# This tests the GenericFile model that is inserted into the host app by curation_concerns:models:install
|
4
|
-
# It includes the CurationConcerns::GenericFileBehavior module and nothing else
|
5
|
-
# So this test covers both the GenericFileBehavior module and the generated GenericFile model
|
6
|
-
describe GenericFile do
|
7
|
-
|
8
|
-
let(:user) { FactoryGirl.find_or_create(:jill) }
|
9
|
-
|
10
|
-
describe "rdf type" do
|
11
|
-
subject { described_class.new.type }
|
12
|
-
it { is_expected.to include(RDFVocabularies::PCDMTerms.Object,WorksVocabularies::WorksTerms.GenericFile) }
|
13
|
-
end
|
14
|
-
|
15
|
-
it "is a Hydra::Works GenericFile" do
|
16
|
-
expect(subject).to be_works_generic_file
|
17
|
-
end
|
18
|
-
|
19
|
-
it "should have depositor" do
|
20
|
-
subject.depositor = 'tess@example.com'
|
21
|
-
end
|
22
|
-
|
23
|
-
it "should update attributes" do
|
24
|
-
subject.attributes = {title:["My new Title"]}
|
25
|
-
expect(subject.title).to eq(["My new Title"])
|
26
|
-
end
|
27
|
-
|
28
|
-
context "when it is initialized" do
|
29
|
-
it "has empty arrays for all the properties" do
|
30
|
-
subject.attributes.each do |k,v|
|
31
|
-
expect(Array(v)).to eq([])
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
describe "visibility" do
|
37
|
-
it "should not be changed when it's new" do
|
38
|
-
expect(subject).not_to be_visibility_changed
|
39
|
-
end
|
40
|
-
it "should be changed when it has been changed" do
|
41
|
-
subject.visibility= 'open'
|
42
|
-
expect(subject).to be_visibility_changed
|
43
|
-
end
|
44
|
-
|
45
|
-
it "should not be changed when it's set to its previous value" do
|
46
|
-
subject.visibility= 'restricted'
|
47
|
-
expect(subject).not_to be_visibility_changed
|
48
|
-
end
|
49
|
-
|
50
|
-
end
|
51
|
-
|
52
|
-
describe "#apply_depositor_metadata" do
|
53
|
-
before { subject.apply_depositor_metadata('jcoyne') }
|
54
|
-
|
55
|
-
it "should grant edit access and record the depositor" do
|
56
|
-
expect(subject.edit_users).to eq ['jcoyne']
|
57
|
-
expect(subject.depositor).to eq 'jcoyne'
|
58
|
-
end
|
59
|
-
end
|
60
|
-
|
61
|
-
describe "attributes" do
|
62
|
-
it "should have a set of permissions" do
|
63
|
-
subject.read_groups=['group1', 'group2']
|
64
|
-
subject.edit_users=['user1']
|
65
|
-
subject.read_users=['user2', 'user3']
|
66
|
-
expect(subject.permissions.map(&:to_hash)).to match_array [
|
67
|
-
{type: "group", access: "read", name: "group1"},
|
68
|
-
{type: "group", access: "read", name: "group2"},
|
69
|
-
{type: "person", access: "read", name: "user2"},
|
70
|
-
{type: "person", access: "read", name: "user3"},
|
71
|
-
{type: "person", access: "edit", name: "user1"}]
|
72
|
-
end
|
73
|
-
|
74
|
-
it "should have a characterization datastream" do
|
75
|
-
expect(subject.characterization).to be_kind_of FitsDatastream
|
76
|
-
end
|
77
|
-
|
78
|
-
it "should have attached content" do
|
79
|
-
subject.add_file(File.open(fixture_path + '/world.png'), path: 'content', original_name: 'world.png')
|
80
|
-
expect(subject.content).to be_kind_of ActiveFedora::File
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
describe "metadata" do
|
85
|
-
it "should have descriptive metadata" do
|
86
|
-
expect(subject).to respond_to(:relative_path)
|
87
|
-
expect(subject).to respond_to(:depositor)
|
88
|
-
expect(subject).to respond_to(:related_url)
|
89
|
-
expect(subject).to respond_to(:based_near)
|
90
|
-
expect(subject).to respond_to(:part_of)
|
91
|
-
expect(subject).to respond_to(:contributor)
|
92
|
-
expect(subject).to respond_to(:creator)
|
93
|
-
expect(subject).to respond_to(:title)
|
94
|
-
expect(subject).to respond_to(:description)
|
95
|
-
expect(subject).to respond_to(:publisher)
|
96
|
-
expect(subject).to respond_to(:date_created)
|
97
|
-
expect(subject).to respond_to(:date_uploaded)
|
98
|
-
expect(subject).to respond_to(:date_modified)
|
99
|
-
expect(subject).to respond_to(:subject)
|
100
|
-
expect(subject).to respond_to(:language)
|
101
|
-
expect(subject).to respond_to(:rights)
|
102
|
-
expect(subject).to respond_to(:resource_type)
|
103
|
-
expect(subject).to respond_to(:identifier)
|
104
|
-
end
|
105
|
-
it "should delegate methods to characterization metadata" do
|
106
|
-
expect(subject).to respond_to(:format_label)
|
107
|
-
expect(subject).to respond_to(:mime_type)
|
108
|
-
expect(subject).to respond_to(:file_size)
|
109
|
-
expect(subject).to respond_to(:last_modified)
|
110
|
-
expect(subject).to respond_to(:filename)
|
111
|
-
expect(subject).to respond_to(:original_checksum)
|
112
|
-
expect(subject).to respond_to(:well_formed)
|
113
|
-
expect(subject).to respond_to(:file_title)
|
114
|
-
expect(subject).to respond_to(:file_author)
|
115
|
-
expect(subject).to respond_to(:page_count)
|
116
|
-
end
|
117
|
-
it "should redefine to_param to make redis keys more recognizable" do
|
118
|
-
expect(subject.to_param).to eq subject.id
|
119
|
-
end
|
120
|
-
|
121
|
-
describe "that have been saved" do
|
122
|
-
before { subject.apply_depositor_metadata('jcoyne') }
|
123
|
-
|
124
|
-
it "should be able to set values via delegated methods" do
|
125
|
-
subject.related_url = ["http://example.org/"]
|
126
|
-
subject.creator = ["John Doe"]
|
127
|
-
subject.title = ["New work"]
|
128
|
-
subject.save
|
129
|
-
f = subject.reload
|
130
|
-
expect(f.related_url).to eq ["http://example.org/"]
|
131
|
-
expect(f.creator).to eq ["John Doe"]
|
132
|
-
expect(f.title).to eq ["New work"]
|
133
|
-
end
|
134
|
-
|
135
|
-
it "should be able to be added to w/o unexpected graph behavior" do
|
136
|
-
subject.creator = ["John Doe"]
|
137
|
-
subject.title = ["New work"]
|
138
|
-
subject.save!
|
139
|
-
f = subject.reload
|
140
|
-
expect(f.creator).to eq ["John Doe"]
|
141
|
-
expect(f.title).to eq ["New work"]
|
142
|
-
f.creator = ["Jane Doe"]
|
143
|
-
f.title += ["Newer work"]
|
144
|
-
f.save
|
145
|
-
f = subject.reload
|
146
|
-
expect(f.creator).to eq ["Jane Doe"]
|
147
|
-
# TODO: Is order important?
|
148
|
-
expect(f.title).to include("New work")
|
149
|
-
expect(f.title).to include("Newer work")
|
150
|
-
end
|
151
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
describe "#indexer" do
|
155
|
-
subject { described_class.indexer }
|
156
|
-
it { is_expected.to eq CurationConcerns::GenericFileIndexingService }
|
157
|
-
end
|
158
|
-
|
159
|
-
it "should support multi-valued fields in solr" do
|
160
|
-
subject.tag = ["tag1", "tag2"]
|
161
|
-
expect { subject.save }.not_to raise_error
|
162
|
-
subject.delete
|
163
|
-
end
|
164
|
-
|
165
|
-
it "should support setting and getting the relative_path value" do
|
166
|
-
subject.relative_path = "documents/research/NSF/2010"
|
167
|
-
expect(subject.relative_path).to eq "documents/research/NSF/2010"
|
168
|
-
end
|
169
|
-
describe "create_thumbnail" do
|
170
|
-
before do
|
171
|
-
@f = GenericFile.new
|
172
|
-
@f.apply_depositor_metadata('mjg36')
|
173
|
-
end
|
174
|
-
describe "with a video", if: CurationConcerns.config.enable_ffmpeg do
|
175
|
-
before do
|
176
|
-
allow(@f).to receive(mime_type: 'video/quicktime') #Would get set by the characterization job
|
177
|
-
@f.add_file(File.open("#{fixture_path}/countdown.avi", 'rb'), path: 'content', original_name: 'countdown.avi')
|
178
|
-
@f.save
|
179
|
-
end
|
180
|
-
it "should make a png thumbnail" do
|
181
|
-
@f.create_thumbnail
|
182
|
-
expect(@f.thumbnail.content.size).to eq 4768 # this is a bad test. I just want to show that it did something.
|
183
|
-
expect(@f.thumbnail.mime_type).to eq 'image/png'
|
184
|
-
end
|
185
|
-
end
|
186
|
-
end
|
187
|
-
|
188
|
-
describe "#related_files" do
|
189
|
-
let!(:f1) { GenericFile.new }
|
190
|
-
|
191
|
-
context "when there are no related files" do
|
192
|
-
it "should return an empty array" do
|
193
|
-
expect(f1.related_files).to eq []
|
194
|
-
end
|
195
|
-
end
|
196
|
-
|
197
|
-
context "when there are related files" do
|
198
|
-
let(:parent_work) { FactoryGirl.create(:work_with_files)}
|
199
|
-
let(:f1) { parent_work.generic_files.first }
|
200
|
-
let(:f2) { parent_work.generic_files.last }
|
201
|
-
subject { f1.reload.related_files }
|
202
|
-
it "returns all generic_files contained in parent work(s) but excludes itself" do
|
203
|
-
expect(subject).to include(f2)
|
204
|
-
expect(subject).to_not include(f1)
|
205
|
-
end
|
206
|
-
end
|
207
|
-
end
|
208
|
-
|
209
|
-
describe "noid integration" do
|
210
|
-
before do
|
211
|
-
allow_any_instance_of(ActiveFedora::Noid::Service).to receive(:mint).and_return(noid)
|
212
|
-
end
|
213
|
-
|
214
|
-
let(:noid) { 'wd3763094' }
|
215
|
-
|
216
|
-
subject do
|
217
|
-
GenericFile.create { |f| f.apply_depositor_metadata('mjg36') }
|
218
|
-
end
|
219
|
-
|
220
|
-
it "runs the overridden #assign_id method" do
|
221
|
-
expect_any_instance_of(ActiveFedora::Noid::Service).to receive(:mint).once
|
222
|
-
GenericFile.create { |f| f.apply_depositor_metadata('mjg36') }
|
223
|
-
end
|
224
|
-
|
225
|
-
it "returns the expected identifier" do
|
226
|
-
expect(subject.id).to eq noid
|
227
|
-
end
|
228
|
-
|
229
|
-
it "has a treeified URL" do
|
230
|
-
expect(subject.uri).to eq 'http://localhost:8983/fedora/rest/test/wd/37/63/09/wd3763094'
|
231
|
-
end
|
232
|
-
|
233
|
-
context "when a url is provided" do
|
234
|
-
let(:url) { 'http://localhost:8983/fedora/rest/test/wd/37/63/09/wd3763094' }
|
235
|
-
|
236
|
-
it "transforms the url into an id" do
|
237
|
-
expect(GenericFile.uri_to_id(url)).to eq 'wd3763094'
|
238
|
-
end
|
239
|
-
end
|
240
|
-
end
|
241
|
-
|
242
|
-
context "with access control metadata" do
|
243
|
-
subject do
|
244
|
-
GenericFile.new do |m|
|
245
|
-
m.apply_depositor_metadata('jcoyne')
|
246
|
-
m.permissions_attributes = [{type: 'person', access: 'read', name: "person1"},
|
247
|
-
{type: 'person', access: 'read', name: "person2"},
|
248
|
-
{type: 'group', access: 'read', name: "group-6"},
|
249
|
-
{type: 'group', access: 'read', name: "group-7"},
|
250
|
-
{type: 'group', access: 'edit', name: "group-8"}]
|
251
|
-
end
|
252
|
-
end
|
253
|
-
|
254
|
-
it "should have read groups accessor" do
|
255
|
-
expect(subject.read_groups).to eq ['group-6', 'group-7']
|
256
|
-
end
|
257
|
-
|
258
|
-
it "should have read groups string accessor" do
|
259
|
-
expect(subject.read_groups_string).to eq 'group-6, group-7'
|
260
|
-
end
|
261
|
-
|
262
|
-
it "should have read groups writer" do
|
263
|
-
subject.read_groups = ['group-2', 'group-3']
|
264
|
-
expect(subject.read_groups).to eq ['group-2', 'group-3']
|
265
|
-
end
|
266
|
-
|
267
|
-
it "should have read groups string writer" do
|
268
|
-
subject.read_groups_string = 'umg/up.dlt.staff, group-3'
|
269
|
-
expect(subject.read_groups).to eq ['umg/up.dlt.staff', 'group-3']
|
270
|
-
expect(subject.edit_groups).to eq ['group-8']
|
271
|
-
expect(subject.read_users).to eq ['person1', 'person2']
|
272
|
-
expect(subject.edit_users).to eq ['jcoyne']
|
273
|
-
end
|
274
|
-
|
275
|
-
it "should only revoke eligible groups" do
|
276
|
-
subject.set_read_groups(['group-2', 'group-3'], ['group-6'])
|
277
|
-
# 'group-7' is not eligible to be revoked
|
278
|
-
expect(subject.read_groups).to match_array ['group-2', 'group-3', 'group-7']
|
279
|
-
expect(subject.edit_groups).to eq ['group-8']
|
280
|
-
expect(subject.read_users).to match_array ['person1', 'person2']
|
281
|
-
expect(subject.edit_users).to eq ['jcoyne']
|
282
|
-
end
|
283
|
-
end
|
284
|
-
|
285
|
-
describe "permissions validation" do
|
286
|
-
before { subject.apply_depositor_metadata('mjg36') }
|
287
|
-
|
288
|
-
describe "overriding" do
|
289
|
-
let(:asset) { SampleKlass.new }
|
290
|
-
before do
|
291
|
-
class SampleKlass < GenericFile
|
292
|
-
def paranoid_edit_permissions
|
293
|
-
[]
|
294
|
-
end
|
295
|
-
end
|
296
|
-
asset.apply_depositor_metadata('mjg36')
|
297
|
-
end
|
298
|
-
after do
|
299
|
-
Object.send(:remove_const, :SampleKlass)
|
300
|
-
end
|
301
|
-
context "when the public has edit access" do
|
302
|
-
before { subject.edit_groups = ['public'] }
|
303
|
-
|
304
|
-
it "should be invalid" do
|
305
|
-
expect(subject).to_not be_valid
|
306
|
-
expect(subject.errors[:edit_groups]).to include('Public cannot have edit access')
|
307
|
-
end
|
308
|
-
end
|
309
|
-
end
|
310
|
-
|
311
|
-
context "when the depositor does not have edit access" do
|
312
|
-
before do
|
313
|
-
subject.permissions = [ Hydra::AccessControls::Permission.new(type: 'person', name: 'mjg36', access: 'read')]
|
314
|
-
end
|
315
|
-
it "should be invalid" do
|
316
|
-
expect(subject).to_not be_valid
|
317
|
-
expect(subject.errors[:edit_users]).to include('Depositor must have edit access')
|
318
|
-
end
|
319
|
-
end
|
320
|
-
|
321
|
-
context "when the public has edit access" do
|
322
|
-
before { subject.edit_groups = ['public'] }
|
323
|
-
|
324
|
-
it "should be invalid" do
|
325
|
-
expect(subject).to_not be_valid
|
326
|
-
expect(subject.errors[:edit_groups]).to include('Public cannot have edit access')
|
327
|
-
end
|
328
|
-
end
|
329
|
-
|
330
|
-
context "when registered has edit access" do
|
331
|
-
before { subject.edit_groups = ['registered'] }
|
332
|
-
|
333
|
-
it "should be invalid" do
|
334
|
-
expect(subject).to_not be_valid
|
335
|
-
expect(subject.errors[:edit_groups]).to include('Registered cannot have edit access')
|
336
|
-
end
|
337
|
-
end
|
338
|
-
|
339
|
-
context "everything is copacetic" do
|
340
|
-
it "should be valid" do
|
341
|
-
expect(subject).to be_valid
|
342
|
-
end
|
343
|
-
end
|
344
|
-
end
|
345
|
-
|
346
|
-
describe "file content validation" do
|
347
|
-
subject { FactoryGirl.create(:generic_file) }
|
348
|
-
let(:file_path) { fixture_path + '/small_file.txt' }
|
349
|
-
|
350
|
-
context "when file contains a virus" do
|
351
|
-
before do
|
352
|
-
allow(subject).to receive(:warn) # suppress virus warnings
|
353
|
-
expect(ClamAV.instance).to receive(:scanfile).and_return("EL CRAPO VIRUS")
|
354
|
-
# TODO: Test that this works with Hydra::Works::UploadFileToGenericFile. see https://github.com/projecthydra-labs/hydra-works/pull/139
|
355
|
-
# Hydra::Works::UploadFileToGenericFile.call(subject, file_path, original_name: 'small_file.txt')
|
356
|
-
of = subject.build_original_file
|
357
|
-
of.content = File.open(file_path)
|
358
|
-
end
|
359
|
-
|
360
|
-
it "populates the errors hash during validation" do
|
361
|
-
expect(subject).to_not be_valid
|
362
|
-
expect(subject.errors.messages[:base].first).to match /A virus was found in .*: EL CRAPO VIRUS/
|
363
|
-
end
|
364
|
-
|
365
|
-
it "does not save the file or create a new version" do
|
366
|
-
original_version_count = subject.versions.count
|
367
|
-
subject.save
|
368
|
-
expect(subject.versions.count).to eq original_version_count
|
369
|
-
expect(subject.reload.original_file).to be_nil
|
370
|
-
end
|
371
|
-
end
|
372
|
-
end
|
373
|
-
|
374
|
-
describe "to_solr" do
|
375
|
-
before do
|
376
|
-
subject.title = ['One Flew Over the Cuckoo\'s Nest']
|
377
|
-
subject.characterization.height = '500'
|
378
|
-
subject.characterization.width = '600'
|
379
|
-
end
|
380
|
-
let(:solr_doc) { subject.to_solr }
|
381
|
-
|
382
|
-
it "has a solr_doc" do
|
383
|
-
expect(solr_doc['title_tesim']).to eq ['One Flew Over the Cuckoo\'s Nest']
|
384
|
-
expect(solr_doc['title_sim']).to eq ['One Flew Over the Cuckoo\'s Nest']
|
385
|
-
expect(solr_doc['height_isi']).to eq 500
|
386
|
-
expect(solr_doc['width_isi']).to eq 600
|
387
|
-
end
|
388
|
-
end
|
389
|
-
|
390
|
-
context "with versions" do
|
391
|
-
it "should have versions" do
|
392
|
-
expect(subject.versions.count).to eq 0
|
393
|
-
end
|
394
|
-
end
|
395
|
-
|
396
|
-
describe "public?" do
|
397
|
-
context "when read group is set to public" do
|
398
|
-
before { subject.read_groups = ['public'] }
|
399
|
-
|
400
|
-
it { is_expected.to be_public }
|
401
|
-
end
|
402
|
-
|
403
|
-
context "when read group is not set to public" do
|
404
|
-
before { subject.read_groups = ['foo'] }
|
405
|
-
it { is_expected.not_to be_public }
|
406
|
-
end
|
407
|
-
end
|
408
|
-
|
409
|
-
describe "work associations" do
|
410
|
-
let(:work) { FactoryGirl.create(:work_with_one_file) }
|
411
|
-
subject { work.generic_files.first.reload }
|
412
|
-
it "should belong to works" do
|
413
|
-
expect(subject.generic_works).to eq [work]
|
414
|
-
end
|
415
|
-
end
|
416
|
-
|
417
|
-
describe '#to_s' do
|
418
|
-
it 'uses the provided titles' do
|
419
|
-
subject.title = ["Hello", "World"]
|
420
|
-
expect(subject.to_s).to eq("Hello | World")
|
421
|
-
end
|
422
|
-
|
423
|
-
it 'falls back on label if no titles are given' do
|
424
|
-
subject.title = []
|
425
|
-
subject.label = 'Spam'
|
426
|
-
expect(subject.to_s).to eq("Spam")
|
427
|
-
end
|
428
|
-
|
429
|
-
it 'with no label or titles it is "No Title"' do
|
430
|
-
subject.title = []
|
431
|
-
subject.label = nil
|
432
|
-
expect(subject.to_s).to eq("No Title")
|
433
|
-
end
|
434
|
-
end
|
435
|
-
|
436
|
-
describe "to_solr record" do
|
437
|
-
let(:depositor) { 'jcoyne' }
|
438
|
-
subject do
|
439
|
-
GenericFile.new.tap do |f|
|
440
|
-
f.apply_depositor_metadata(depositor)
|
441
|
-
f.save
|
442
|
-
end
|
443
|
-
end
|
444
|
-
let(:depositor_key) { Solrizer.solr_name("depositor") }
|
445
|
-
let(:title_key) { Solrizer.solr_name("title", :stored_searchable, type: :string) }
|
446
|
-
let(:title) { ["abc123"] }
|
447
|
-
let(:no_terms) { GenericFile.find(subject.id).to_solr }
|
448
|
-
let(:terms) {
|
449
|
-
file = GenericFile.find(subject.id)
|
450
|
-
file.title = title
|
451
|
-
file.save
|
452
|
-
file.to_solr
|
453
|
-
}
|
454
|
-
|
455
|
-
context "without terms" do
|
456
|
-
specify "title is nil" do
|
457
|
-
expect(no_terms[title_key]).to be_nil
|
458
|
-
end
|
459
|
-
end
|
460
|
-
|
461
|
-
context "with terms" do
|
462
|
-
specify "depositor is set" do
|
463
|
-
expect(terms[depositor_key].first).to eql(depositor)
|
464
|
-
end
|
465
|
-
specify "title is set" do
|
466
|
-
expect(terms[title_key]).to eql(title)
|
467
|
-
end
|
468
|
-
end
|
469
|
-
|
470
|
-
end
|
471
|
-
|
472
|
-
describe "assign_id" do
|
473
|
-
context "with noids enabled (by default)" do
|
474
|
-
it "uses the noid service" do
|
475
|
-
expect_any_instance_of(ActiveFedora::Noid::Service).to receive(:mint).once
|
476
|
-
subject.assign_id
|
477
|
-
end
|
478
|
-
end
|
479
|
-
|
480
|
-
context "with noids disabled" do
|
481
|
-
before { CurationConcerns.config.enable_noids = false }
|
482
|
-
after { CurationConcerns.config.enable_noids = true }
|
483
|
-
|
484
|
-
it "does not use the noid service" do
|
485
|
-
expect_any_instance_of(ActiveFedora::Noid::Service).not_to receive(:mint)
|
486
|
-
subject.assign_id
|
487
|
-
end
|
488
|
-
end
|
489
|
-
end
|
490
|
-
|
491
|
-
describe 'with a parent work' do
|
492
|
-
|
493
|
-
let(:parent) { FactoryGirl.create(:work_with_one_file) }
|
494
|
-
let(:parent_id) { parent.id }
|
495
|
-
|
496
|
-
describe '#related_files' do
|
497
|
-
let(:parent) { FactoryGirl.create(:work_with_files) }
|
498
|
-
let(:sibling) { parent.generic_files.last }
|
499
|
-
subject { parent.generic_files.first.reload }
|
500
|
-
it "returns related files, but not itself" do
|
501
|
-
expect(subject.related_files).to eq([sibling])
|
502
|
-
expect(sibling.reload.related_files).to eq([subject])
|
503
|
-
end
|
504
|
-
end
|
505
|
-
|
506
|
-
describe '#remove_representative_relationship' do
|
507
|
-
let(:some_other_id) { 'something456' }
|
508
|
-
subject { parent.generic_files.first.reload }
|
509
|
-
context "the parent object doesn't exist" do
|
510
|
-
before do
|
511
|
-
parent.representative = subject.id
|
512
|
-
parent.save!
|
513
|
-
@parent_id = parent.id
|
514
|
-
parent.destroy
|
515
|
-
end
|
516
|
-
end
|
517
|
-
|
518
|
-
context 'it is not the representative' do
|
519
|
-
before do
|
520
|
-
parent.representative = some_other_id
|
521
|
-
parent.save!
|
522
|
-
end
|
523
|
-
it "doesn't update parent work when file is deleted" do
|
524
|
-
subject.destroy
|
525
|
-
expect(parent.representative).to eq some_other_id
|
526
|
-
end
|
527
|
-
end
|
528
|
-
|
529
|
-
context 'it is the representative' do
|
530
|
-
before do
|
531
|
-
parent.representative = subject.id
|
532
|
-
parent.save!
|
533
|
-
end
|
534
|
-
it 'updates the parent work when the file is deleted' do
|
535
|
-
subject.destroy
|
536
|
-
expect(parent.reload.representative).to be_nil
|
537
|
-
end
|
538
|
-
end
|
539
|
-
end
|
540
|
-
end
|
541
|
-
|
542
|
-
describe "mime type recognition" do
|
543
|
-
context "#image?" do
|
544
|
-
context "when image/jp2" do
|
545
|
-
before { subject.mime_type = 'image/jp2' }
|
546
|
-
it { should be_image }
|
547
|
-
end
|
548
|
-
context "when image/jpg" do
|
549
|
-
before { subject.mime_type = 'image/jpg' }
|
550
|
-
it { should be_image }
|
551
|
-
end
|
552
|
-
context "when image/png" do
|
553
|
-
before { subject.mime_type = 'image/png' }
|
554
|
-
it { should be_image }
|
555
|
-
end
|
556
|
-
context "when image/tiff" do
|
557
|
-
before { subject.mime_type = 'image/tiff' }
|
558
|
-
it { should be_image }
|
559
|
-
end
|
560
|
-
end
|
561
|
-
|
562
|
-
describe "#pdf?" do
|
563
|
-
before { subject.mime_type = 'application/pdf' }
|
564
|
-
it { should be_pdf }
|
565
|
-
end
|
566
|
-
|
567
|
-
describe "#audio?" do
|
568
|
-
context "when x-wave" do
|
569
|
-
before { subject.mime_type = 'audio/x-wave' }
|
570
|
-
it { should be_audio }
|
571
|
-
end
|
572
|
-
context "when x-wav" do
|
573
|
-
before { subject.mime_type = 'audio/x-wav' }
|
574
|
-
it { should be_audio }
|
575
|
-
end
|
576
|
-
context "when mpeg" do
|
577
|
-
before { subject.mime_type = 'audio/mpeg' }
|
578
|
-
it { should be_audio }
|
579
|
-
end
|
580
|
-
context "when mp3" do
|
581
|
-
before { subject.mime_type = 'audio/mp3' }
|
582
|
-
it { should be_audio }
|
583
|
-
end
|
584
|
-
context "when ogg" do
|
585
|
-
before { subject.mime_type = 'audio/ogg' }
|
586
|
-
it { should be_audio }
|
587
|
-
end
|
588
|
-
end
|
589
|
-
|
590
|
-
describe "#video?" do
|
591
|
-
context "should be true for avi" do
|
592
|
-
before { subject.mime_type = 'video/avi' }
|
593
|
-
it { should be_video }
|
594
|
-
end
|
595
|
-
|
596
|
-
context "should be true for webm" do
|
597
|
-
before { subject.mime_type = 'video/webm' }
|
598
|
-
it { should be_video }
|
599
|
-
end
|
600
|
-
context "should be true for mp4" do
|
601
|
-
before { subject.mime_type = 'video/mp4' }
|
602
|
-
it { should be_video }
|
603
|
-
end
|
604
|
-
context "should be true for mpeg" do
|
605
|
-
before { subject.mime_type = 'video/mpeg' }
|
606
|
-
it { should be_video }
|
607
|
-
end
|
608
|
-
context "should be true for quicktime" do
|
609
|
-
before { subject.mime_type = 'video/quicktime' }
|
610
|
-
it { should be_video }
|
611
|
-
end
|
612
|
-
context "should be true for mxf" do
|
613
|
-
before { subject.mime_type = 'application/mxf' }
|
614
|
-
it { should be_video }
|
615
|
-
end
|
616
|
-
end
|
617
|
-
end
|
618
|
-
|
619
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe CurationConcerns::GenericFilePresenter do
|
4
|
-
|
5
|
-
describe ".terms" do
|
6
|
-
it "should return a list" do
|
7
|
-
expect(described_class.terms).to eq([:resource_type, :title,
|
8
|
-
:creator, :contributor, :description, :tag, :rights, :publisher,
|
9
|
-
:date_created, :subject, :language, :identifier, :based_near,
|
10
|
-
:related_url])
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
let(:presenter) { CurationConcerns::GenericFilePresenter.new(file) }
|
15
|
-
|
16
|
-
end
|
@@ -1,30 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe CurationConcerns::CharacterizationService do
|
4
|
-
let(:generic_file) { FactoryGirl.create(:generic_file) }
|
5
|
-
|
6
|
-
describe "#run" do
|
7
|
-
let(:service_instance) { double() }
|
8
|
-
it "creates an instance of the service and calls .characterize on it" do
|
9
|
-
expect(described_class).to receive(:new).with(generic_file).and_return(service_instance)
|
10
|
-
expect(service_instance).to receive(:characterize)
|
11
|
-
described_class.run(generic_file)
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
# TODO: Enable in travis see https://github.com/projecthydra-labs/curation_concerns/issues/40
|
16
|
-
describe "characterize", unless: $in_travis do
|
17
|
-
subject { described_class.new(generic_file) }
|
18
|
-
before do
|
19
|
-
Hydra::Works::UploadFileToGenericFile.call(generic_file, File.open(fixture_file_path('charter.docx')))
|
20
|
-
end
|
21
|
-
it "characterizes, extracts fulltext and stores the results" do
|
22
|
-
expect(subject).to receive(:extract_fulltext).and_return("The fulltext")
|
23
|
-
subject.characterize
|
24
|
-
expect(generic_file.mime_type).to eq 'application/vnd.oasis.opendocument.text'
|
25
|
-
expect(generic_file.filename).to eq 'charter.docx'
|
26
|
-
expect(generic_file.extracted_text.content).to eq "The fulltext"
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
end
|