blacklight-spotlight 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +22 -8
- data/Rakefile +40 -39
- data/app/assets/javascripts/spotlight/blacklight_configuration.js +16 -0
- data/app/assets/javascripts/spotlight/blocks/resources_block.js +3 -1
- data/app/assets/stylesheets/spotlight/_blacklight_configuration.scss +2 -2
- data/app/assets/stylesheets/spotlight/_blacklight_overrides.scss +24 -0
- data/app/assets/stylesheets/spotlight/_header.scss +150 -47
- data/app/assets/stylesheets/spotlight/_pages.scss +62 -11
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +1 -0
- data/app/assets/stylesheets/spotlight/_spotlight.scss +1 -0
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +28 -21
- data/app/controllers/spotlight/about_pages_controller.rb +25 -14
- data/app/controllers/spotlight/appearances_controller.rb +34 -30
- data/app/controllers/spotlight/application_controller.rb +2 -1
- data/app/controllers/spotlight/attachments_controller.rb +9 -7
- data/app/controllers/spotlight/browse_controller.rb +13 -9
- data/app/controllers/spotlight/catalog_controller.rb +179 -161
- data/app/controllers/spotlight/concerns/application_controller.rb +22 -20
- data/app/controllers/spotlight/concerns/catalog_search_context.rb +44 -0
- data/app/controllers/spotlight/confirmations_controller.rb +5 -2
- data/app/controllers/spotlight/contact_forms_controller.rb +13 -7
- data/app/controllers/spotlight/contacts_controller.rb +13 -4
- data/app/controllers/spotlight/custom_fields_controller.rb +48 -40
- data/app/controllers/spotlight/dashboards_controller.rb +17 -8
- data/app/controllers/spotlight/default_controller.rb +3 -1
- data/app/controllers/spotlight/exhibits_controller.rb +69 -62
- data/app/controllers/spotlight/feature_pages_controller.rb +21 -11
- data/app/controllers/spotlight/home_pages_controller.rb +6 -5
- data/app/controllers/spotlight/lock_controller.rb +3 -1
- data/app/controllers/spotlight/metadata_configurations_controller.rb +49 -0
- data/app/controllers/spotlight/pages_controller.rb +28 -18
- data/app/controllers/spotlight/resources/upload_controller.rb +53 -46
- data/app/controllers/spotlight/resources_controller.rb +9 -5
- data/app/controllers/spotlight/roles_controller.rb +26 -22
- data/app/controllers/spotlight/search_configurations_controller.rb +66 -0
- data/app/controllers/spotlight/searches_controller.rb +91 -82
- data/app/controllers/spotlight/solr_controller.rb +20 -13
- data/app/controllers/spotlight/tags_controller.rb +5 -3
- data/app/controllers/spotlight/versions_controller.rb +15 -12
- data/app/controllers/spotlight/view_configurations_controller.rb +17 -0
- data/app/helpers/spotlight/application_helper.rb +44 -32
- data/app/helpers/spotlight/browse_helper.rb +13 -1
- data/app/helpers/spotlight/crud_link_helpers.rb +22 -14
- data/app/helpers/spotlight/jcrop_helper.rb +4 -2
- data/app/helpers/spotlight/main_app_helpers.rb +45 -41
- data/app/helpers/spotlight/navbar_helper.rb +6 -0
- data/app/helpers/spotlight/pages_helper.rb +23 -15
- data/app/helpers/spotlight/roles_helper.rb +10 -4
- data/app/helpers/spotlight/search_configurations_helper.rb +22 -0
- data/app/helpers/spotlight/title_helper.rb +16 -13
- data/app/jobs/spotlight/add_uploads_from_csv.rb +13 -9
- data/app/jobs/spotlight/reindex_job.rb +9 -9
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -0
- data/app/mailers/spotlight/confirmation_mailer.rb +2 -0
- data/app/mailers/spotlight/indexing_complete_mailer.rb +4 -2
- data/app/models/ability.rb +3 -0
- data/app/models/concerns/spotlight/ar_light.rb +49 -25
- data/app/models/concerns/spotlight/blacklight_configuration_defaults.rb +25 -10
- data/app/models/concerns/spotlight/exhibit_analytics.rb +28 -0
- data/app/models/concerns/spotlight/image_derivatives.rb +25 -26
- data/app/models/concerns/spotlight/resources/open_graph.rb +23 -19
- data/app/models/concerns/spotlight/resources/web.rb +25 -24
- data/app/models/concerns/spotlight/solr_document.rb +40 -34
- data/app/models/concerns/spotlight/solr_document/active_model_concern.rb +29 -40
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +22 -18
- data/app/models/concerns/spotlight/solr_document/finder.rb +23 -18
- data/app/models/concerns/spotlight/solr_document/spotlight_images.rb +43 -39
- data/app/models/concerns/spotlight/solr_document/uploaded_resource.rb +41 -29
- data/app/models/concerns/spotlight/user.rb +25 -19
- data/app/models/sir_trevor_rails/blocks/browse_block.rb +36 -30
- data/app/models/sir_trevor_rails/blocks/featured_pages_block.rb +24 -18
- data/app/models/sir_trevor_rails/blocks/oembed_block.rb +8 -4
- data/app/models/sir_trevor_rails/blocks/search_results_block.rb +29 -23
- data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +43 -42
- data/app/models/sir_trevor_rails/blocks/solr_documents_carousel_block.rb +16 -12
- data/app/models/sir_trevor_rails/blocks/solr_documents_embed_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/solr_documents_features_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/solr_documents_grid_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/textable.rb +18 -18
- data/app/models/spotlight/ability.rb +32 -33
- data/app/models/spotlight/about_page.rb +3 -1
- data/app/models/spotlight/analytics/ga.rb +46 -27
- data/app/models/spotlight/attachment.rb +3 -1
- data/app/models/spotlight/blacklight_configuration.rb +146 -68
- data/app/models/spotlight/contact.rb +35 -30
- data/app/models/spotlight/contact_email.rb +6 -3
- data/app/models/spotlight/contact_form.rb +4 -3
- data/app/models/spotlight/custom_field.rb +41 -33
- data/app/models/spotlight/exhibit.rb +104 -130
- data/app/models/spotlight/feature_page.rb +9 -7
- data/app/models/spotlight/featured_image.rb +10 -10
- data/app/models/spotlight/field_metadata.rb +46 -0
- data/app/models/spotlight/home_page.rb +8 -5
- data/app/models/spotlight/lock.rb +4 -3
- data/app/models/spotlight/main_navigation.rb +9 -3
- data/app/models/spotlight/masthead.rb +17 -16
- data/app/models/spotlight/page.rb +16 -16
- data/app/models/spotlight/resource.rb +69 -22
- data/app/models/spotlight/resources/csv_upload.rb +8 -4
- data/app/models/spotlight/resources/upload.rb +68 -57
- data/app/models/spotlight/role.rb +30 -34
- data/app/models/spotlight/search.rb +74 -63
- data/app/models/spotlight/solr_document_sidecar.rb +17 -15
- data/app/serializers/spotlight/exhibit_export_serializer.rb +65 -29
- data/app/serializers/spotlight/page_representer.rb +10 -6
- data/app/uploaders/spotlight/attachment_uploader.rb +4 -6
- data/app/uploaders/spotlight/avatar_uploader.rb +4 -3
- data/app/uploaders/spotlight/featured_image_uploader.rb +15 -14
- data/app/uploaders/spotlight/item_uploader.rb +3 -1
- data/app/uploaders/spotlight/masthead_uploader.rb +4 -2
- data/app/views/catalog/_search_form.html.erb +24 -0
- data/app/views/shared/_browse_navbar.html.erb +1 -1
- data/app/views/shared/_exhibit_navbar.html.erb +1 -1
- data/app/views/spotlight/appearances/edit.html.erb +13 -45
- data/app/views/spotlight/catalog/_edit_default.html.erb +1 -1
- data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
- data/app/views/spotlight/exhibits/edit.html.erb +4 -4
- data/app/views/spotlight/home_pages/_empty.html.erb +1 -3
- data/app/views/spotlight/home_pages/_page_options.html.erb +1 -1
- data/app/views/spotlight/{blacklight_configurations → metadata_configurations}/_metadata_field.html.erb +0 -0
- data/app/views/spotlight/{blacklight_configurations/edit_metadata_fields.html.erb → metadata_configurations/edit.html.erb} +1 -1
- data/app/views/spotlight/pages/show.html.erb +2 -2
- data/app/views/spotlight/search_configurations/_default_per_page.html.erb +5 -0
- data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +7 -0
- data/app/views/spotlight/search_configurations/_facets.html.erb +38 -0
- data/app/views/spotlight/search_configurations/_search_fields.html.erb +58 -0
- data/app/views/spotlight/search_configurations/_sort.html.erb +53 -0
- data/app/views/spotlight/search_configurations/edit.html.erb +46 -0
- data/app/views/spotlight/searches/_search.html.erb +1 -1
- data/app/views/spotlight/shared/_admin_sidebar.html.erb +0 -2
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +2 -3
- data/app/views/spotlight/shared/_report_a_problem.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_oembed_block.html.erb +5 -1
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +7 -5
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb +7 -5
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +14 -9
- data/config/locales/spotlight.en.yml +94 -49
- data/config/routes.rb +11 -20
- data/db/migrate/20150410180014_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
- data/db/migrate/20150410180015_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20150410180016_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20150713160101_change_spotlight_searches_to_published.rb +5 -0
- data/db/migrate/20151016092343_remove_searchable_from_exhibit.rb +20 -0
- data/lib/blacklight/spotlight.rb +1 -1
- data/lib/generators/spotlight/install_generator.rb +27 -25
- data/lib/generators/spotlight/templates/catalog_controller.rb +7 -5
- data/lib/generators/spotlight/templates/jetty.rake +8 -2
- data/lib/generators/spotlight/templates/spotlight_helper.rb +3 -1
- data/lib/spotlight.rb +4 -2
- data/lib/spotlight/base.rb +21 -14
- data/lib/spotlight/catalog.rb +10 -9
- data/lib/spotlight/catalog/access_controls_enforcement.rb +30 -15
- data/lib/spotlight/config.rb +4 -2
- data/lib/spotlight/controller.rb +12 -11
- data/lib/spotlight/engine.rb +30 -22
- data/lib/spotlight/rails/routes.rb +7 -4
- data/lib/spotlight/version.rb +2 -1
- data/lib/tasks/spotlight_tasks.rake +56 -50
- data/spec/controllers/application_controller_spec.rb +13 -13
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +63 -59
- data/spec/controllers/spotlight/appearances_controller_spec.rb +29 -24
- data/spec/controllers/spotlight/application_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/attachments_controller_spec.rb +10 -10
- data/spec/controllers/spotlight/browse_controller_spec.rb +23 -25
- data/spec/controllers/spotlight/catalog_controller_spec.rb +82 -87
- data/spec/controllers/spotlight/confirmations_controller_spec.rb +13 -11
- data/spec/controllers/spotlight/contact_forms_controller_spec.rb +17 -12
- data/spec/controllers/spotlight/contacts_controller_spec.rb +36 -36
- data/spec/controllers/spotlight/custom_fields_controller_spec.rb +26 -26
- data/spec/controllers/spotlight/dashboards_controller_spec.rb +14 -14
- data/spec/controllers/spotlight/exhibits_controller_spec.rb +59 -54
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +59 -59
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +28 -29
- data/spec/controllers/spotlight/metadata_configurations_controller_spec.rb +84 -0
- data/spec/controllers/spotlight/resources/upload_controller_spec.rb +42 -33
- data/spec/controllers/spotlight/resources_controller_spec.rb +25 -29
- data/spec/controllers/spotlight/roles_controller_spec.rb +37 -19
- data/spec/controllers/spotlight/search_configurations_controller_spec.rb +125 -0
- data/spec/controllers/spotlight/searches_controller_spec.rb +84 -63
- data/spec/controllers/spotlight/solr_controller_spec.rb +13 -14
- data/spec/controllers/spotlight/tags_controller_spec.rb +16 -16
- data/spec/controllers/spotlight/versions_controller_spec.rb +15 -18
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +31 -0
- data/spec/factories/contacts.rb +1 -3
- data/spec/factories/custom_fields.rb +2 -4
- data/spec/factories/exhibits.rb +4 -2
- data/spec/factories/pages.rb +8 -11
- data/spec/factories/resources.rb +4 -4
- data/spec/factories/searches.rb +10 -13
- data/spec/factories/tags.rb +0 -3
- data/spec/factories/users.rb +2 -4
- data/spec/features/about_page_spec.rb +19 -19
- data/spec/features/add_contacts_spec.rb +34 -34
- data/spec/features/add_custom_field_metadata_spec.rb +24 -26
- data/spec/features/add_item_bookmarklet_spec.rb +12 -12
- data/spec/features/browse_category_admin_spec.rb +39 -39
- data/spec/features/catalog_spec.rb +9 -10
- data/spec/features/confirm_email_spec.rb +10 -10
- data/spec/features/create_exhibit_spec.rb +18 -15
- data/spec/features/create_page_spec.rb +8 -8
- data/spec/features/curator_items.rb +3 -3
- data/spec/features/dashboard_spec.rb +15 -16
- data/spec/features/edit_contact_spec.rb +8 -10
- data/spec/features/edit_search_fields_spec.rb +79 -0
- data/spec/features/exhibits/add_tags_spec.rb +15 -16
- data/spec/features/exhibits/administration_spec.rb +25 -25
- data/spec/features/exhibits/custom_metadata_fields_spec.rb +41 -43
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +19 -19
- data/spec/features/feature_page_spec.rb +49 -48
- data/spec/features/home_page_spec.rb +38 -38
- data/spec/features/import_exhibit_spec.rb +23 -20
- data/spec/features/item_admin_spec.rb +28 -29
- data/spec/features/javascript/about_page_admin_spec.rb +9 -9
- data/spec/features/javascript/block_controls_spec.rb +16 -18
- data/spec/features/javascript/blocks/featured_browse_categories_block_spec.rb +11 -12
- data/spec/features/javascript/blocks/featured_pages_block_spec.rb +12 -13
- data/spec/features/javascript/blocks/search_result_block_spec.rb +17 -17
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +67 -65
- data/spec/features/javascript/edit_in_place_spec.rb +30 -56
- data/spec/features/javascript/feature_page_admin_spec.rb +73 -59
- data/spec/features/javascript/home_page_edit_spec.rb +6 -6
- data/spec/features/javascript/metadata_admin_spec.rb +15 -15
- data/spec/features/javascript/multi_image_select_spec.rb +17 -18
- data/spec/features/javascript/preview_block_spec.rb +11 -12
- data/spec/features/javascript/rule_block_spec.rb +7 -7
- data/spec/features/javascript/search_config_admin_spec.rb +144 -0
- data/spec/features/javascript/search_context_spec.rb +41 -42
- data/spec/features/main_navigation_spec.rb +22 -22
- data/spec/features/metadata_admin_spec.rb +8 -8
- data/spec/features/multiple_exhibits_spec.rb +15 -17
- data/spec/features/report_a_problem_spec.rb +23 -17
- data/spec/features/site_masthead_spec.rb +46 -46
- data/spec/features/slideshow_spec.rb +8 -9
- data/spec/features/tags_admin_spec.rb +11 -11
- data/spec/features/upload_non_repository_item_spec.rb +32 -32
- data/spec/features/user_admin_spec.rb +7 -7
- data/spec/helpers/spotlight/application_helper_spec.rb +63 -56
- data/spec/helpers/spotlight/browse_helper_spec.rb +6 -6
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +58 -52
- data/spec/helpers/spotlight/main_app_helpers_spec.rb +44 -24
- data/spec/helpers/spotlight/navbar_helper_spec.rb +4 -4
- data/spec/helpers/spotlight/pages_helper_spec.rb +56 -37
- data/spec/helpers/spotlight/roles_helper_spec.rb +3 -3
- data/spec/helpers/spotlight/search_configurations_helper_spec.rb +24 -0
- data/spec/helpers/spotlight/title_helper_spec.rb +33 -35
- data/spec/jobs/spotlight/reindex_job_spec.rb +6 -6
- data/spec/jobs/spotlight/rename_sidecar_field_job_spec.rb +7 -7
- data/spec/lib/spotlight/catalog/access_controls_enforcement_spec.rb +41 -26
- data/spec/lib/spotlight/controller_spec.rb +10 -10
- data/spec/lib/spotlight/routes_spec.rb +4 -4
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +13 -13
- data/spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb +8 -8
- data/spec/models/{spotlight/sir_trevor_blocks → sir_trevor_rails/blocks}/textable_spec.rb +7 -8
- data/spec/models/solr_document_spec.rb +49 -50
- data/spec/models/spotlight/ability_spec.rb +17 -20
- data/spec/models/spotlight/about_page_spec.rb +6 -6
- data/spec/models/spotlight/analytics/ga_spec.rb +2 -2
- data/spec/models/spotlight/blacklight_configuration_spec.rb +196 -133
- data/spec/models/spotlight/contact_email_spec.rb +28 -24
- data/spec/models/spotlight/contact_spec.rb +6 -7
- data/spec/models/spotlight/custom_field_spec.rb +51 -52
- data/spec/models/spotlight/exhibit_spec.rb +102 -60
- data/spec/models/spotlight/feature_page_spec.rb +32 -32
- data/spec/models/spotlight/featured_image_spec.rb +5 -5
- data/spec/models/spotlight/field_metadata_spec.rb +78 -0
- data/spec/models/spotlight/home_page_spec.rb +11 -20
- data/spec/models/spotlight/{spotlight_image_derivatives_spec.rb → image_derivatives_spec.rb} +2 -2
- data/spec/models/spotlight/main_navigation_spec.rb +7 -9
- data/spec/models/spotlight/masthead_spec.rb +6 -6
- data/spec/models/spotlight/page_spec.rb +26 -29
- data/spec/models/spotlight/resource_spec.rb +56 -26
- data/spec/models/spotlight/resources/open_graph_spec.rb +16 -18
- data/spec/models/spotlight/resources/upload_spec.rb +32 -35
- data/spec/models/spotlight/resources/web_spec.rb +9 -11
- data/spec/models/spotlight/role_spec.rb +20 -20
- data/spec/models/spotlight/search_spec.rb +32 -15
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +34 -0
- data/spec/models/spotlight/{solr_document_images_spec.rb → solr_document/spotlight_images_spec.rb} +18 -10
- data/spec/models/spotlight/solr_document/uploaded_resource_spec.rb +52 -0
- data/spec/models/spotlight/solr_document_sidecar_spec.rb +3 -4
- data/spec/routing/spotlight/exhibit_catalog_spec.rb +5 -5
- data/spec/routing/spotlight/pages_routing_spec.rb +24 -25
- data/spec/serializers/spotlight/exhibit_export_serializer_spec.rb +88 -68
- data/spec/spec_helper.rb +13 -22
- data/spec/support/features/test_features_helpers.rb +50 -46
- data/spec/support/views/test_view_helpers.rb +1 -1
- data/spec/test_app_templates/Gemfile.extra +0 -1
- data/spec/test_app_templates/carrierwave.rb +2 -2
- data/spec/test_app_templates/catalog_controller.rb +42 -42
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +20 -11
- data/spec/test_app_templates/spotlight_test.rake +3 -3
- data/spec/uploaders/spotlight/item_uploader_spec.rb +68 -0
- data/spec/views/_user_util_links.html.erb_spec.rb +14 -14
- data/spec/views/shared/_analytics.html.erb_spec.rb +4 -6
- data/spec/views/shared/_exhibit_masthead.html.erb_spec.rb +19 -20
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +129 -131
- data/spec/views/shared/_footer.html.erb_spec.rb +6 -7
- data/spec/views/shared/_header_navbar.html.erb_spec.rb +5 -5
- data/spec/views/spotlight/about_pages/_empty.html.erb_spec.rb +4 -4
- data/spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb +9 -11
- data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +31 -28
- data/spec/views/spotlight/browse/_search.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb +10 -12
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/browse/show.html.erb_spec.rb +19 -20
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +7 -7
- data/spec/views/spotlight/catalog/admin.html.erb_spec.rb +7 -7
- data/spec/views/spotlight/catalog/edit.html.erb_spec.rb +3 -6
- data/spec/views/spotlight/catalog/new.html.erb_spec.rb +8 -10
- data/spec/views/spotlight/contacts/edit.html.erb_spec.rb +8 -8
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +22 -22
- data/spec/views/spotlight/exhibits/edit.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb +5 -5
- data/spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb +24 -26
- data/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb +13 -9
- data/spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +26 -0
- data/spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb +22 -0
- data/spec/views/spotlight/pages/edit.html.erb_spec.rb +16 -16
- data/spec/views/spotlight/pages/index.html.erb_spec.rb +19 -17
- data/spec/views/spotlight/pages/new.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +27 -28
- data/spec/views/spotlight/roles/index.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb +54 -0
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +28 -0
- data/spec/views/spotlight/searches/_search.html.erb_spec.rb +20 -10
- data/spec/views/spotlight/searches/edit.html.erb_spec.rb +12 -11
- data/spec/views/spotlight/searches/index.html.erb_spec.rb +12 -7
- data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +4 -4
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +38 -0
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +18 -13
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +14 -12
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +11 -12
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +9 -9
- metadata +167 -83
- data/app/controllers/spotlight/blacklight_configurations_controller.rb +0 -101
- data/app/controllers/spotlight/resources/csv_controller.rb +0 -23
- data/app/forms/spotlight/appearance.rb +0 -86
- data/app/helpers/spotlight/attachments_helper.rb +0 -4
- data/app/helpers/spotlight/blacklight_configurations_helper.rb +0 -15
- data/app/jobs/spotlight/set_default_thumbnail_job.rb +0 -16
- data/app/models/spotlight/resources/csv.rb +0 -80
- data/app/uploaders/spotlight/csv_uploader.rb +0 -15
- data/app/views/spotlight/blacklight_configurations/edit_facet_fields.html.erb +0 -47
- data/app/views/spotlight/blacklight_configurations/edit_sort_fields.html.erb +0 -65
- data/app/views/spotlight/resources/csv/_form.html.erb +0 -17
- data/app/views/spotlight/resources/csv/new.html.erb +0 -3
- data/spec/controllers/spotlight/blacklight_configurations_controller_spec.rb +0 -167
- data/spec/features/edit_sort_fields_spec.rb +0 -42
- data/spec/features/exhibits/edit_facet_fields_spec.rb +0 -37
- data/spec/features/javascript/facet_admin_spec.rb +0 -36
- data/spec/features/search_facets_admin_spec.rb +0 -19
- data/spec/features/update_appearance_spec.rb +0 -58
- data/spec/helpers/spotlight/blacklight_configurations_helper_spec.rb +0 -12
- data/spec/models/spotlight/appearance_spec.rb +0 -33
- data/spec/models/spotlight/resources/csv_spec.rb +0 -101
- data/spec/models/spotlight/solr_document_atomic_updates_spec.rb +0 -29
- data/spec/models/spotlight/solr_document_uploaded_resource_spec.rb +0 -45
- data/spec/uploaders/item_uploader_spec.rb +0 -62
- data/spec/views/spotlight/blacklight_configuration/_metadata_field.html.erb_spec.rb +0 -27
- data/spec/views/spotlight/blacklight_configuration/edit_metadata_fields.html.erb_spec.rb +0 -23
- data/spec/views/spotlight/blacklight_configuration/edit_sort_fields.html.erb_spec.rb +0 -19
@@ -1,10 +1,10 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::ApplicationController, :
|
3
|
+
describe Spotlight::ApplicationController, type: :controller do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
5
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
6
|
-
it
|
6
|
+
it 'provides a search_action_url override' do
|
7
7
|
allow(controller).to receive_messages(current_exhibit: exhibit)
|
8
|
-
expect(controller.search_action_url(q: 'query')).to eq exhibit_catalog_index_url(exhibit, q:
|
8
|
+
expect(controller.search_action_url(q: 'query')).to eq exhibit_catalog_index_url(exhibit, q: 'query')
|
9
9
|
end
|
10
10
|
end
|
@@ -1,24 +1,24 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::AttachmentsController, :
|
3
|
+
describe Spotlight::AttachmentsController, type: :controller do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
5
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
6
|
-
describe
|
7
|
-
describe
|
8
|
-
it
|
9
|
-
post :create, exhibit_id: exhibit
|
6
|
+
describe 'when not logged in' do
|
7
|
+
describe 'GET edit' do
|
8
|
+
it 'is successful' do
|
9
|
+
post :create, exhibit_id: exhibit
|
10
10
|
expect(response).to redirect_to main_app.new_user_session_path
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
|
-
describe
|
15
|
+
describe 'when signed in as a curator' do
|
16
16
|
let(:user) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
17
|
-
before {sign_in user }
|
17
|
+
before { sign_in user }
|
18
18
|
|
19
|
-
describe
|
20
|
-
it
|
21
|
-
post :create, exhibit_id: exhibit, attachment: { name:
|
19
|
+
describe 'POST create' do
|
20
|
+
it 'is successful' do
|
21
|
+
post :create, exhibit_id: exhibit, attachment: { name: 'xyz' }
|
22
22
|
expect(response).to be_successful
|
23
23
|
end
|
24
24
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::BrowseController, :
|
3
|
+
describe Spotlight::BrowseController, type: :controller do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
5
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
6
6
|
let!(:search) { FactoryGirl.create(:published_search, exhibit: exhibit) }
|
@@ -9,62 +9,62 @@ describe Spotlight::BrowseController, :type => :controller do
|
|
9
9
|
|
10
10
|
it { is_expected.to be_a Spotlight::Catalog::AccessControlsEnforcement }
|
11
11
|
|
12
|
-
describe
|
12
|
+
describe 'when authenticated as an admin' do
|
13
13
|
before { sign_in admin }
|
14
|
-
describe
|
15
|
-
it
|
16
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
17
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
14
|
+
describe '#index' do
|
15
|
+
it 'does not show unpublished categories' do
|
16
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
|
17
|
+
expect(controller).to receive(:add_breadcrumb).with('Browse', exhibit_browse_index_path(exhibit))
|
18
18
|
get :index, exhibit_id: exhibit
|
19
19
|
expect(response).to be_successful
|
20
20
|
expect(assigns[:searches]).to eq [search]
|
21
21
|
expect(assigns[:searches]).to_not include unpublished
|
22
22
|
expect(assigns[:exhibit]).to eq exhibit
|
23
|
-
expect(response).to render_template
|
23
|
+
expect(response).to render_template 'spotlight/browse/index'
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
|
-
describe
|
29
|
-
describe
|
30
|
-
it
|
31
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
32
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
28
|
+
describe 'when unauthenticated' do
|
29
|
+
describe '#index' do
|
30
|
+
it 'shows the list of browse categories' do
|
31
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
|
32
|
+
expect(controller).to receive(:add_breadcrumb).with('Browse', exhibit_browse_index_path(exhibit))
|
33
33
|
get :index, exhibit_id: exhibit
|
34
34
|
expect(response).to be_successful
|
35
35
|
expect(assigns[:searches]).to eq [search]
|
36
36
|
expect(assigns[:searches]).to_not include unpublished
|
37
37
|
expect(assigns[:exhibit]).to eq exhibit
|
38
|
-
expect(response).to render_template
|
38
|
+
expect(response).to render_template 'spotlight/browse/index'
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe
|
42
|
+
describe '#show' do
|
43
43
|
let(:mock_response) { double }
|
44
44
|
let(:document_list) { double }
|
45
45
|
before do
|
46
|
-
allow(controller).to receive_messages(
|
46
|
+
allow(controller).to receive_messages(search_results: [mock_response, document_list])
|
47
47
|
end
|
48
|
-
it
|
49
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
50
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
48
|
+
it 'shows the items in the category' do
|
49
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
|
50
|
+
expect(controller).to receive(:add_breadcrumb).with('Browse', exhibit_browse_index_path(exhibit))
|
51
51
|
expect(controller).to receive(:add_breadcrumb).with(search.title, exhibit_browse_path(exhibit, search))
|
52
52
|
get :show, id: search, exhibit_id: exhibit
|
53
53
|
expect(response).to be_successful
|
54
54
|
expect(assigns[:search]).to be_a Spotlight::Search
|
55
55
|
expect(assigns[:response]).to eq mock_response
|
56
56
|
expect(assigns[:document_list]).to eq document_list
|
57
|
-
expect(response).to render_template
|
57
|
+
expect(response).to render_template 'spotlight/browse/show'
|
58
58
|
end
|
59
59
|
|
60
|
-
it
|
60
|
+
it 'removes all the document actions' do
|
61
61
|
get :show, id: search, exhibit_id: exhibit
|
62
62
|
expect(controller.blacklight_config.index.document_actions).to be_blank
|
63
63
|
end
|
64
64
|
|
65
|
-
it
|
66
|
-
config = Blacklight::Configuration.new do |
|
67
|
-
|
65
|
+
it 'uses the blacklight.browse configuration for the document actions' do
|
66
|
+
config = Blacklight::Configuration.new do |c|
|
67
|
+
c.browse.document_actions = [:a, :b, :c]
|
68
68
|
end
|
69
69
|
|
70
70
|
allow(controller). to receive(:blacklight_config).and_return(config)
|
@@ -72,8 +72,6 @@ describe Spotlight::BrowseController, :type => :controller do
|
|
72
72
|
get :show, id: search, exhibit_id: exhibit
|
73
73
|
expect(controller.blacklight_config.index.document_actions).to match_array [:a, :b, :c]
|
74
74
|
end
|
75
|
-
|
76
75
|
end
|
77
76
|
end
|
78
|
-
|
79
77
|
end
|
@@ -1,261 +1,256 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::CatalogController, :
|
3
|
+
describe Spotlight::CatalogController, type: :controller do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
|
-
let
|
6
|
-
|
5
|
+
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
6
|
+
|
7
7
|
it { is_expected.to be_a_kind_of ::CatalogController }
|
8
8
|
it { is_expected.to be_a_kind_of Spotlight::Concerns::ApplicationController }
|
9
9
|
its(:view_context) { should be_a_kind_of Spotlight::ApplicationHelper }
|
10
10
|
|
11
|
-
describe
|
12
|
-
|
13
|
-
|
14
|
-
it "should redirect to the login page" do
|
11
|
+
describe 'when the user is not authenticated' do
|
12
|
+
describe 'GET admin' do
|
13
|
+
it 'redirects to the login page' do
|
15
14
|
get :admin, exhibit_id: exhibit
|
16
15
|
expect(response).to redirect_to main_app.new_user_session_path
|
17
16
|
end
|
18
17
|
end
|
19
18
|
|
20
|
-
describe
|
21
|
-
it
|
19
|
+
describe 'GET edit' do
|
20
|
+
it 'does not be allowed' do
|
22
21
|
get :edit, exhibit_id: exhibit, id: 'dq287tq6352'
|
23
22
|
expect(response).to redirect_to main_app.new_user_session_path
|
24
23
|
end
|
25
24
|
end
|
26
25
|
|
27
|
-
describe
|
28
|
-
let
|
26
|
+
describe 'GET show' do
|
27
|
+
let(:document) { SolrDocument.find('dq287tq6352') }
|
29
28
|
let(:search) { FactoryGirl.create(:search, exhibit: exhibit) }
|
30
|
-
it
|
31
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
29
|
+
it 'shows the item' do
|
30
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
32
31
|
expect(controller).to receive(:add_breadcrumb).with("L'AMERIQUE", exhibit_catalog_path(exhibit, document))
|
33
32
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352'
|
34
33
|
expect(response).to be_successful
|
35
34
|
end
|
36
35
|
|
37
|
-
it
|
36
|
+
it 'shows the item with breadcrumbs to the browse page' do
|
38
37
|
allow(controller).to receive_messages(current_browse_category: search)
|
39
|
-
|
40
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
41
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
38
|
+
|
39
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
40
|
+
expect(controller).to receive(:add_breadcrumb).with('Browse', exhibit_browse_index_path(exhibit))
|
42
41
|
expect(controller).to receive(:add_breadcrumb).with(search.title, exhibit_browse_path(exhibit, search))
|
43
42
|
expect(controller).to receive(:add_breadcrumb).with("L'AMERIQUE", exhibit_catalog_path(exhibit, document))
|
44
43
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352'
|
45
44
|
expect(response).to be_successful
|
46
45
|
end
|
47
46
|
|
48
|
-
it
|
47
|
+
it 'shows the item with breadcrumbs to the feature page' do
|
49
48
|
feature_page = FactoryGirl.create(:feature_page, exhibit: exhibit)
|
50
49
|
allow(controller).to receive_messages(current_page_context: feature_page)
|
51
50
|
|
52
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
51
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
53
52
|
expect(controller).to receive(:add_breadcrumb).with(feature_page.title, [exhibit, feature_page])
|
54
53
|
expect(controller).to receive(:add_breadcrumb).with("L'AMERIQUE", exhibit_catalog_path(exhibit, document))
|
55
54
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352'
|
56
55
|
expect(response).to be_successful
|
57
56
|
end
|
58
57
|
|
59
|
-
it
|
58
|
+
it 'shows the item with breadcrumbs from the home page' do
|
60
59
|
home_page = FactoryGirl.create(:home_page)
|
61
60
|
allow(controller).to receive_messages(current_page_context: home_page)
|
62
61
|
|
63
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
62
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
64
63
|
expect(controller).to receive(:add_breadcrumb).with("L'AMERIQUE", exhibit_catalog_path(exhibit, document))
|
65
64
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352'
|
66
65
|
expect(response).to be_successful
|
67
66
|
end
|
68
67
|
|
69
|
-
it
|
68
|
+
it 'adds the curation widget' do
|
70
69
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352'
|
71
|
-
expect(controller.blacklight_config.show.partials.first).to eq
|
70
|
+
expect(controller.blacklight_config.show.partials.first).to eq 'curation_mode_toggle'
|
72
71
|
end
|
73
72
|
|
74
|
-
it
|
73
|
+
it 'does not have a solr_json serialization' do
|
75
74
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352', format: :solr_json
|
76
75
|
expect(response).not_to be_successful
|
77
76
|
end
|
78
77
|
end
|
79
78
|
|
80
|
-
describe
|
81
|
-
it
|
82
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
83
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
79
|
+
describe 'GET index' do
|
80
|
+
it 'shows the index when there are parameters' do
|
81
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
82
|
+
expect(controller).to receive(:add_breadcrumb).with('Search Results', exhibit_catalog_index_path(exhibit, q: 'map'))
|
84
83
|
get :index, exhibit_id: exhibit, q: 'map'
|
85
84
|
expect(response).to be_successful
|
86
85
|
end
|
87
|
-
it
|
86
|
+
it 'redirects to the exhibit home page when there are no parameters' do
|
88
87
|
get :index, exhibit_id: exhibit
|
89
88
|
expect(response).to redirect_to(exhibit_root_path(exhibit))
|
90
89
|
end
|
91
90
|
end
|
92
91
|
|
93
|
-
describe
|
94
|
-
it
|
92
|
+
describe 'GET autocomplete' do
|
93
|
+
it 'has partial matches for title' do
|
95
94
|
# Testing with ps921pn8250 because it has html escapable characters in the title (c'estadire)
|
96
95
|
get :autocomplete, exhibit_id: exhibit, q: 'PLANIS', format: 'json'
|
97
96
|
expect(assigns[:document_list].first.id).to eq 'ps921pn8250'
|
98
97
|
expect(response).to be_successful
|
99
98
|
json = JSON.parse(response.body)
|
100
99
|
doc = json['docs'].first
|
101
|
-
expect(doc).to include
|
100
|
+
expect(doc).to include 'id', 'title', 'description', 'thumbnail', 'url'
|
102
101
|
expect(doc['id']).to eq 'ps921pn8250'
|
103
102
|
expect(doc['description']).to eq 'ps921pn8250'
|
104
103
|
expect(doc['title']).to eq "PLANISPHERE URANO-GEOGRAPHIQUE c'estadire LES SPHERES CELESTE et TERRESTRE mises en plan."
|
105
104
|
expect(doc['thumbnail']).to eq assigns[:document_list].first.first(:thumbnail_url_ssm)
|
106
105
|
expect(doc['url']).to eq exhibit_catalog_path(exhibit, id: 'ps921pn8250')
|
107
106
|
end
|
108
|
-
it
|
107
|
+
it 'has partial matches for id' do
|
109
108
|
get :autocomplete, exhibit_id: exhibit, q: 'dx157', format: 'json'
|
110
109
|
expect(assigns[:document_list].first.id).to eq 'dx157dh4345'
|
111
110
|
expect(response).to be_successful
|
112
111
|
json = JSON.parse(response.body)
|
113
112
|
expect(json['docs'].first['id']).to eq 'dx157dh4345'
|
114
|
-
expect(json['docs'].first['title']).to eq
|
113
|
+
expect(json['docs'].first['title']).to eq 'KAART der REYZE van drie Schepen naar het ZUYDLAND in de Jaaren 1721 en 1722'
|
115
114
|
end
|
116
115
|
end
|
117
116
|
end
|
118
117
|
|
119
|
-
describe
|
118
|
+
describe 'when the user is not authorized' do
|
120
119
|
before do
|
121
120
|
sign_in FactoryGirl.create(:exhibit_visitor)
|
122
121
|
end
|
123
122
|
|
124
|
-
describe
|
125
|
-
it
|
123
|
+
describe 'GET index' do
|
124
|
+
it 'applies gated discovery access controls' do
|
126
125
|
expect(controller.search_params_logic).to include :apply_permissive_visibility_filter
|
127
126
|
end
|
128
127
|
end
|
129
128
|
|
130
|
-
describe
|
131
|
-
it
|
129
|
+
describe 'GET admin' do
|
130
|
+
it 'denies access' do
|
132
131
|
get :admin, exhibit_id: exhibit
|
133
132
|
expect(response).to redirect_to main_app.root_path
|
134
133
|
expect(flash[:alert]).to be_present
|
135
134
|
end
|
136
135
|
end
|
137
136
|
|
138
|
-
describe
|
139
|
-
it
|
137
|
+
describe 'GET edit' do
|
138
|
+
it 'does not be allowed' do
|
140
139
|
get :edit, exhibit_id: exhibit, id: 'dq287tq6352'
|
141
140
|
expect(response).to redirect_to main_app.root_path
|
142
|
-
expect(flash[:alert]).to eq
|
141
|
+
expect(flash[:alert]).to eq 'You are not authorized to access this page.'
|
143
142
|
end
|
144
143
|
end
|
145
144
|
|
146
|
-
describe
|
147
|
-
it
|
145
|
+
describe 'GET show with private item' do
|
146
|
+
it 'does not be allowed' do
|
148
147
|
allow_any_instance_of(::SolrDocument).to receive(:private?).and_return(true)
|
149
148
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352'
|
150
149
|
expect(response).to redirect_to main_app.root_path
|
151
|
-
expect(flash[:alert]).to eq
|
150
|
+
expect(flash[:alert]).to eq 'You are not authorized to access this page.'
|
152
151
|
end
|
153
152
|
end
|
154
153
|
|
155
|
-
describe
|
156
|
-
it
|
154
|
+
describe 'PUT make_public' do
|
155
|
+
it 'does not be allowed' do
|
157
156
|
put :make_public, exhibit_id: exhibit, catalog_id: 'dq287tq6352'
|
158
157
|
expect(response).to redirect_to main_app.root_path
|
159
|
-
expect(flash[:alert]).to eq
|
158
|
+
expect(flash[:alert]).to eq 'You are not authorized to access this page.'
|
160
159
|
end
|
161
|
-
|
162
160
|
end
|
163
161
|
|
164
|
-
describe
|
165
|
-
it
|
162
|
+
describe 'DELETE make_private' do
|
163
|
+
it 'does not be allowed' do
|
166
164
|
delete :make_private, exhibit_id: exhibit, catalog_id: 'dq287tq6352'
|
167
165
|
expect(response).to redirect_to main_app.root_path
|
168
|
-
expect(flash[:alert]).to eq
|
166
|
+
expect(flash[:alert]).to eq 'You are not authorized to access this page.'
|
169
167
|
end
|
170
168
|
end
|
171
169
|
end
|
172
170
|
|
173
|
-
describe
|
171
|
+
describe 'when the user is a curator' do
|
174
172
|
before { sign_in FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
175
173
|
|
176
|
-
it
|
177
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
178
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
179
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
174
|
+
it 'shows all the items' do
|
175
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
176
|
+
expect(controller).to receive(:add_breadcrumb).with('Curation', exhibit_dashboard_path(exhibit))
|
177
|
+
expect(controller).to receive(:add_breadcrumb).with('Items', admin_exhibit_catalog_index_path(exhibit))
|
180
178
|
get :admin, exhibit_id: exhibit
|
181
179
|
expect(response).to be_successful
|
182
180
|
expect(assigns[:document_list]).to be_a Array
|
183
181
|
expect(assigns[:exhibit]).to eq exhibit
|
184
|
-
expect(response).to render_template
|
182
|
+
expect(response).to render_template 'spotlight/catalog/admin'
|
185
183
|
expect(controller.blacklight_config.view.admin_table.document_actions).to be_empty
|
186
184
|
end
|
187
185
|
|
188
|
-
it
|
186
|
+
it 'uses the admin table view and hide the document actions' do
|
189
187
|
get :admin, exhibit_id: exhibit
|
190
188
|
|
191
189
|
expect(controller.blacklight_config.view.to_h.keys).to match_array [:admin_table]
|
192
190
|
expect(controller.blacklight_config.view.admin_table.document_actions).to be_empty
|
193
191
|
end
|
194
|
-
|
195
|
-
describe
|
196
|
-
it
|
197
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
198
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
199
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
200
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
192
|
+
|
193
|
+
describe 'GET new' do
|
194
|
+
it 'is successful' do
|
195
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
|
196
|
+
expect(controller).to receive(:add_breadcrumb).with('Curation', exhibit_dashboard_path(exhibit))
|
197
|
+
expect(controller).to receive(:add_breadcrumb).with('Items', admin_exhibit_catalog_index_path(exhibit))
|
198
|
+
expect(controller).to receive(:add_breadcrumb).with('Import items', new_exhibit_catalog_path(exhibit))
|
201
199
|
get :new, exhibit_id: exhibit
|
202
200
|
expect(response).to be_successful
|
203
201
|
end
|
204
202
|
end
|
205
203
|
|
206
|
-
describe
|
207
|
-
it
|
204
|
+
describe 'GET edit' do
|
205
|
+
it 'is successful' do
|
208
206
|
get :edit, exhibit_id: exhibit, id: 'dq287tq6352'
|
209
207
|
expect(response).to be_successful
|
210
208
|
expect(assigns[:exhibit]).to eq exhibit
|
211
209
|
expect(assigns[:document]).to be_kind_of SolrDocument
|
212
210
|
end
|
213
211
|
end
|
214
|
-
describe
|
215
|
-
it
|
216
|
-
expect
|
217
|
-
patch :update, exhibit_id: exhibit, id: 'dq287tq6352', solr_document: {exhibit_tag_list: 'one, two'}
|
218
|
-
|
212
|
+
describe 'PATCH update' do
|
213
|
+
it 'is successful' do
|
214
|
+
expect do
|
215
|
+
patch :update, exhibit_id: exhibit, id: 'dq287tq6352', solr_document: { exhibit_tag_list: 'one, two' }
|
216
|
+
end.to change { exhibit.owned_taggings.count }.by(2)
|
219
217
|
end
|
220
218
|
end
|
221
219
|
|
222
|
-
|
223
|
-
describe "PUT make_public" do
|
220
|
+
describe 'PUT make_public' do
|
224
221
|
before do
|
225
|
-
request.env[
|
222
|
+
request.env['HTTP_REFERER'] = 'where_i_came_from'
|
226
223
|
allow_any_instance_of(::SolrDocument).to receive(:reindex)
|
227
224
|
end
|
228
225
|
|
229
|
-
it
|
226
|
+
it 'is successful' do
|
230
227
|
expect_any_instance_of(::SolrDocument).to receive(:reindex)
|
231
228
|
expect_any_instance_of(::SolrDocument).to receive(:make_public!).with(exhibit)
|
232
229
|
put :make_public, exhibit_id: exhibit, catalog_id: 'dq287tq6352'
|
233
|
-
expect(response).to redirect_to
|
230
|
+
expect(response).to redirect_to 'where_i_came_from'
|
234
231
|
end
|
235
|
-
|
236
232
|
end
|
237
233
|
|
238
|
-
describe
|
239
|
-
|
234
|
+
describe 'DELETE make_private' do
|
240
235
|
before do
|
241
|
-
request.env[
|
236
|
+
request.env['HTTP_REFERER'] = 'where_i_came_from'
|
242
237
|
allow_any_instance_of(::SolrDocument).to receive(:reindex)
|
243
238
|
end
|
244
239
|
|
245
|
-
it
|
240
|
+
it 'is successful' do
|
246
241
|
expect_any_instance_of(::SolrDocument).to receive(:reindex)
|
247
242
|
expect_any_instance_of(::SolrDocument).to receive(:make_private!).with(exhibit)
|
248
243
|
delete :make_private, exhibit_id: exhibit, catalog_id: 'dq287tq6352'
|
249
|
-
expect(response).to redirect_to
|
244
|
+
expect(response).to redirect_to 'where_i_came_from'
|
250
245
|
end
|
251
246
|
end
|
252
247
|
end
|
253
248
|
|
254
|
-
describe
|
249
|
+
describe 'when the user is a site admin' do
|
255
250
|
before { sign_in FactoryGirl.create(:site_admin, exhibit: exhibit) }
|
256
251
|
|
257
|
-
describe
|
258
|
-
it
|
252
|
+
describe 'show' do
|
253
|
+
it 'has a solr_json serialization' do
|
259
254
|
get :show, exhibit_id: exhibit, id: 'dq287tq6352', format: :solr_json
|
260
255
|
expect(response).to be_successful
|
261
256
|
data = JSON.parse(response.body).with_indifferent_access
|