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,29 +1,27 @@
|
|
1
|
-
require
|
2
|
-
describe
|
1
|
+
require 'spec_helper'
|
2
|
+
describe 'Home page', type: :feature do
|
3
3
|
let(:exhibit_visitor) { FactoryGirl.create(:exhibit_visitor) }
|
4
|
-
let!(:default_exhibit) {
|
5
|
-
let!(:second_exhibit) { FactoryGirl.create(:exhibit, title:
|
4
|
+
let!(:default_exhibit) { FactoryGirl.create(:default_exhibit, title: 'Default exhibit') }
|
5
|
+
let!(:second_exhibit) { FactoryGirl.create(:exhibit, title: 'Second exhibit') }
|
6
6
|
|
7
|
-
before {login_as exhibit_visitor}
|
7
|
+
before { login_as exhibit_visitor }
|
8
8
|
|
9
|
-
it
|
9
|
+
it 'exists by default on exhibits' do
|
10
10
|
visit '/'
|
11
11
|
|
12
|
-
expect(page).to have_selector
|
13
|
-
expect(page).to have_link
|
12
|
+
expect(page).to have_selector '.site-title', text: 'Default exhibit'
|
13
|
+
expect(page).to have_link 'More Exhibits'
|
14
14
|
within '#exhibit-masthead .dropdown-menu' do
|
15
|
-
expect(page).to have_no_link
|
16
|
-
click_link
|
15
|
+
expect(page).to have_no_link 'Default exhibit'
|
16
|
+
click_link 'Second exhibit'
|
17
17
|
end
|
18
18
|
|
19
|
-
expect(page).to have_selector
|
20
|
-
expect(page).to have_link
|
19
|
+
expect(page).to have_selector '.site-title', text: 'Second exhibit'
|
20
|
+
expect(page).to have_link 'More Exhibits'
|
21
21
|
within '#exhibit-masthead .dropdown-menu' do
|
22
|
-
expect(page).to have_no_link
|
23
|
-
click_link
|
22
|
+
expect(page).to have_no_link 'Second exhibit'
|
23
|
+
click_link 'Default exhibit'
|
24
24
|
end
|
25
|
-
expect(page).to have_selector
|
26
|
-
|
25
|
+
expect(page).to have_selector '.site-title', text: 'Default exhibit'
|
27
26
|
end
|
28
27
|
end
|
29
|
-
|
@@ -1,30 +1,36 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let!(:exhibit) { FactoryGirl.create(:
|
5
|
-
it
|
3
|
+
describe 'Report a Problem', type: :feature do
|
4
|
+
let!(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
|
+
it 'does not have a header link' do
|
6
6
|
visit root_path
|
7
|
-
expect(page).to_not have_content
|
7
|
+
expect(page).to_not have_content 'Feedback'
|
8
8
|
end
|
9
9
|
|
10
|
-
describe
|
10
|
+
describe 'when emails are setup' do
|
11
11
|
before do
|
12
|
-
exhibit.contact_emails_attributes= [
|
12
|
+
exhibit.contact_emails_attributes = [{ 'email' => 'test@example.com' }, { 'email' => 'test2@example.com' }]
|
13
13
|
exhibit.save!
|
14
|
-
exhibit.contact_emails.first.
|
14
|
+
exhibit.contact_emails.first.tap do |e|
|
15
|
+
if e.respond_to? :confirm
|
16
|
+
e.confirm
|
17
|
+
else
|
18
|
+
e.confirm!
|
19
|
+
end
|
20
|
+
end
|
15
21
|
end
|
16
22
|
|
17
|
-
it
|
23
|
+
it 'accepts a problem report', js: true do
|
18
24
|
visit spotlight.exhibit_catalog_path(exhibit, id: 'dq287tq6352')
|
19
|
-
click_on
|
20
|
-
expect(find(
|
21
|
-
fill_in
|
22
|
-
fill_in
|
23
|
-
fill_in
|
25
|
+
click_on 'Feedback'
|
26
|
+
expect(find('#contact_form_current_url', visible: false).value).to end_with spotlight.exhibit_catalog_path(exhibit, id: 'dq287tq6352')
|
27
|
+
fill_in 'Name', with: 'Some Body'
|
28
|
+
fill_in 'Email', with: 'test@example.com'
|
29
|
+
fill_in 'Message', with: 'This is my problem report'
|
24
30
|
|
25
|
-
expect
|
26
|
-
click_on
|
27
|
-
|
31
|
+
expect do
|
32
|
+
click_on 'Send'
|
33
|
+
end.to change { ActionMailer::Base.deliveries.count }.by(1)
|
28
34
|
end
|
29
35
|
end
|
30
36
|
end
|
@@ -1,99 +1,99 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Add and update the site masthead', type: :feature do
|
4
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
6
6
|
|
7
7
|
before { login_as user }
|
8
|
-
it '
|
8
|
+
it 'updates site masthead options' do
|
9
9
|
visit spotlight.exhibit_dashboard_path(exhibit)
|
10
10
|
|
11
|
-
within
|
12
|
-
click_link
|
11
|
+
within '#sidebar' do
|
12
|
+
click_link 'Appearance'
|
13
13
|
end
|
14
14
|
|
15
|
-
click_link
|
15
|
+
click_link 'Site masthead'
|
16
16
|
|
17
|
-
within
|
18
|
-
check
|
19
|
-
choose
|
20
|
-
attach_file('
|
17
|
+
within '#site-masthead' do
|
18
|
+
check 'Show background image in masthead'
|
19
|
+
choose 'Upload an image'
|
20
|
+
attach_file('exhibit_masthead_attributes_image', File.absolute_path(File.join(FIXTURES_PATH, 'avatar.png')))
|
21
21
|
end
|
22
22
|
|
23
|
-
click_button
|
23
|
+
click_button 'Save changes'
|
24
24
|
|
25
|
-
expect(page).to have_content(
|
25
|
+
expect(page).to have_content('The exhibit was successfully updated.')
|
26
26
|
|
27
|
-
within
|
28
|
-
click_link
|
27
|
+
within '#sidebar' do
|
28
|
+
click_link 'Appearance'
|
29
29
|
end
|
30
30
|
|
31
|
-
click_link
|
32
|
-
|
33
|
-
within
|
31
|
+
click_link 'Site masthead'
|
32
|
+
|
33
|
+
within '#site-masthead' do
|
34
34
|
expect(field_labeled('Show background image in masthead')).to be_checked
|
35
35
|
expect(field_labeled('Upload an image')).to be_checked
|
36
36
|
end
|
37
37
|
end
|
38
|
-
it '
|
38
|
+
it 'displays a masthead image when one is uploaded and configured' do
|
39
39
|
visit spotlight.exhibit_dashboard_path(exhibit)
|
40
40
|
expect(page).to_not have_css('#exhibit-masthead.with-image')
|
41
|
-
within
|
42
|
-
click_link
|
41
|
+
within '#sidebar' do
|
42
|
+
click_link 'Appearance'
|
43
43
|
end
|
44
44
|
|
45
|
-
click_link
|
46
|
-
|
47
|
-
within
|
48
|
-
check
|
45
|
+
click_link 'Site masthead'
|
46
|
+
|
47
|
+
within '#site-masthead' do
|
48
|
+
check 'Show background image in masthead'
|
49
49
|
|
50
|
-
attach_file('
|
50
|
+
attach_file('exhibit_masthead_attributes_image', File.absolute_path(File.join(FIXTURES_PATH, 'avatar.png')))
|
51
51
|
end
|
52
52
|
|
53
|
-
click_button
|
53
|
+
click_button 'Save changes'
|
54
54
|
|
55
|
-
expect(page).to have_content(
|
55
|
+
expect(page).to have_content('The exhibit was successfully updated.')
|
56
56
|
|
57
57
|
expect(page).to have_css('#exhibit-masthead.with-image .background-container')
|
58
58
|
end
|
59
|
-
it '
|
59
|
+
it 'does not display an uploaded masthead if configured to not display' do
|
60
60
|
visit spotlight.exhibit_dashboard_path(exhibit)
|
61
61
|
expect(page).to_not have_css('#exhibit-masthead.with-image')
|
62
|
-
within
|
63
|
-
click_link
|
62
|
+
within '#sidebar' do
|
63
|
+
click_link 'Appearance'
|
64
64
|
end
|
65
65
|
|
66
|
-
click_link
|
67
|
-
|
68
|
-
within
|
69
|
-
attach_file('
|
66
|
+
click_link 'Site masthead'
|
67
|
+
|
68
|
+
within '#site-masthead' do
|
69
|
+
attach_file('exhibit_masthead_attributes_image', File.absolute_path(File.join(FIXTURES_PATH, 'avatar.png')))
|
70
70
|
end
|
71
71
|
|
72
|
-
click_button
|
72
|
+
click_button 'Save changes'
|
73
73
|
|
74
|
-
expect(page).to have_content(
|
74
|
+
expect(page).to have_content('The exhibit was successfully updated.')
|
75
75
|
|
76
76
|
expect(page).to_not have_css('#exhibit-masthead.with-image .background-container')
|
77
77
|
end
|
78
|
-
it '
|
78
|
+
it 'displays a masthead image when one is uploaded from an exhibit item', js: true do
|
79
79
|
skip "Capyabara and jcrop don't play well together.."
|
80
80
|
visit spotlight.exhibit_dashboard_path(exhibit)
|
81
81
|
expect(page).to_not have_css('#exhibit-masthead.with-image')
|
82
|
-
within
|
83
|
-
click_link
|
82
|
+
within '#sidebar' do
|
83
|
+
click_link 'Appearance'
|
84
84
|
end
|
85
85
|
|
86
|
-
click_link
|
87
|
-
|
88
|
-
within
|
89
|
-
check
|
86
|
+
click_link 'Site masthead'
|
87
|
+
|
88
|
+
within '#site-masthead' do
|
89
|
+
check 'Show background image in masthead'
|
90
90
|
|
91
|
-
fill_in_typeahead_field 'document_title', with:
|
91
|
+
fill_in_typeahead_field 'document_title', with: 'Armenia'
|
92
92
|
end
|
93
93
|
|
94
|
-
click_button
|
94
|
+
click_button 'Save changes'
|
95
95
|
|
96
|
-
expect(page).to have_content(
|
96
|
+
expect(page).to have_content('The appearance was successfully updated.')
|
97
97
|
|
98
98
|
expect(page).to have_css('#exhibit-masthead.with-image .background-container')
|
99
99
|
end
|
@@ -1,21 +1,20 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Slideshow', type: :feature, js: true do
|
4
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
6
6
|
|
7
7
|
before do
|
8
8
|
login_as user
|
9
|
-
exhibit.blacklight_configuration.update(document_index_view_types:
|
9
|
+
exhibit.blacklight_configuration.update(document_index_view_types: %w(list gallery slideshow))
|
10
10
|
end
|
11
|
-
it
|
12
|
-
visit spotlight.exhibit_catalog_index_path(exhibit, f: {genre_ssim: ['map']})
|
13
|
-
expect(page).to have_content
|
14
|
-
within
|
15
|
-
click_link
|
11
|
+
it 'has slideshow' do
|
12
|
+
visit spotlight.exhibit_catalog_index_path(exhibit, f: { genre_ssim: ['map'] })
|
13
|
+
expect(page).to have_content 'You searched for:'
|
14
|
+
within '.view-type' do
|
15
|
+
click_link 'Slideshow'
|
16
16
|
end
|
17
17
|
find('.grid [data-slide-to="1"]').trigger('click')
|
18
18
|
expect(page).to have_selector '#slideshow', visible: true
|
19
19
|
end
|
20
|
-
|
21
20
|
end
|
@@ -1,29 +1,29 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Tags Administration', type: :feature do
|
4
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let!(:tagging) { FactoryGirl.create(:tagging, tagger: exhibit) }
|
6
6
|
let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
7
7
|
before { login_as exhibit_curator }
|
8
8
|
|
9
|
-
describe
|
10
|
-
it
|
9
|
+
describe 'index' do
|
10
|
+
it 'has tags' do
|
11
11
|
visit spotlight.exhibit_tags_path(exhibit)
|
12
|
-
expect(page).to have_css(
|
12
|
+
expect(page).to have_css('td', text: tagging.tag.name)
|
13
13
|
end
|
14
14
|
|
15
|
-
it
|
15
|
+
it 'links tags to a search' do
|
16
16
|
visit spotlight.exhibit_tags_path(exhibit)
|
17
17
|
click_on tagging.tag.name
|
18
18
|
expect(page).to have_content "Remove constraint Exhibit Tags: #{tagging.tag.name}"
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
22
|
-
describe
|
23
|
-
it
|
22
|
+
describe 'destroy' do
|
23
|
+
it 'destroys a tag' do
|
24
24
|
visit spotlight.exhibit_tags_path(exhibit)
|
25
|
-
click_link
|
26
|
-
expect(page).not_to have_css(
|
25
|
+
click_link 'Delete'
|
26
|
+
expect(page).not_to have_css('td', text: tagging.tag.name)
|
27
27
|
end
|
28
28
|
end
|
29
29
|
end
|
@@ -1,18 +1,18 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let!(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Uploading a non-repository item', type: :feature do
|
4
|
+
let!(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let!(:custom_field) { FactoryGirl.create(:custom_field, exhibit: exhibit) }
|
6
6
|
let!(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
7
7
|
before { login_as exhibit_curator }
|
8
8
|
|
9
|
-
describe
|
10
|
-
it
|
9
|
+
describe 'forms' do
|
10
|
+
it 'displays the single item upload form' do
|
11
11
|
visit spotlight.new_exhibit_resources_upload_path(exhibit)
|
12
|
-
expect(page).to have_css(
|
13
|
-
expect(page).to have_css
|
12
|
+
expect(page).to have_css('h1', text: /Curation/)
|
13
|
+
expect(page).to have_css 'h1 small', text: 'Add non-repository items'
|
14
14
|
|
15
|
-
within(
|
15
|
+
within('form#new_resources_upload') do
|
16
16
|
expect(page).to have_css('#resources_upload_url[type="file"]')
|
17
17
|
expect(page).to have_css('.help-block', text: 'Valid file types: jpg jpeg png')
|
18
18
|
expect(page).to have_css('#resources_upload_data_full_title_tesim[type="text"]')
|
@@ -22,52 +22,52 @@ describe "Uploading a non-repository item", :type => :feature do
|
|
22
22
|
expect(page).to have_css("#resources_upload_data_#{custom_field.field}[type='text']")
|
23
23
|
end
|
24
24
|
end
|
25
|
-
it
|
25
|
+
it 'displays the multi-item CSV upload form' do
|
26
26
|
visit spotlight.new_exhibit_resources_upload_path(exhibit)
|
27
|
-
expect(page).to have_css(
|
28
|
-
expect(page).to have_css
|
29
|
-
within(
|
27
|
+
expect(page).to have_css('h1', text: /Curation/)
|
28
|
+
expect(page).to have_css 'h1 small', text: 'Add non-repository items'
|
29
|
+
within('form#new_resources_csv_upload') do
|
30
30
|
expect(page).to have_css('#resources_csv_upload_url[type="file"]')
|
31
31
|
expect(page).to have_css('.help-block a', text: 'Download template')
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe
|
37
|
-
it
|
36
|
+
describe 'upload' do
|
37
|
+
it 'creates a new non-repository item' do
|
38
38
|
visit spotlight.new_exhibit_resources_upload_path(exhibit)
|
39
|
-
attach_file(
|
40
|
-
fill_in
|
39
|
+
attach_file('resources_upload_url', File.join(FIXTURES_PATH, '800x600.png'))
|
40
|
+
fill_in 'Title', with: '800x600'
|
41
41
|
|
42
|
-
within
|
43
|
-
click_button
|
42
|
+
within '#new_resources_upload' do
|
43
|
+
click_button 'Add item'
|
44
44
|
end
|
45
|
-
expect(page).to have_content
|
45
|
+
expect(page).to have_content 'Object uploaded successfully.'
|
46
46
|
|
47
|
-
expect(Spotlight::Resource.last.url.file.path).to end_with
|
47
|
+
expect(Spotlight::Resource.last.url.file.path).to end_with '800x600.png'
|
48
48
|
Blacklight.default_index.connection.delete_by_id Spotlight::Resource.last.send(:compound_id)
|
49
49
|
Blacklight.default_index.connection.commit
|
50
50
|
end
|
51
51
|
|
52
|
-
it
|
52
|
+
it 'is editable' do
|
53
53
|
visit spotlight.new_exhibit_resources_upload_path(exhibit)
|
54
|
-
attach_file(
|
55
|
-
fill_in
|
54
|
+
attach_file('resources_upload_url', File.join(FIXTURES_PATH, '800x600.png'))
|
55
|
+
fill_in 'Title', with: '800x600'
|
56
56
|
|
57
|
-
within
|
58
|
-
click_button
|
57
|
+
within '#new_resources_upload' do
|
58
|
+
click_button 'Add item'
|
59
59
|
end
|
60
60
|
|
61
|
-
click_link
|
62
|
-
click_link
|
63
|
-
fill_in
|
61
|
+
click_link '800x600'
|
62
|
+
click_link 'Edit'
|
63
|
+
fill_in 'Title', with: 'This is a now an avatar'
|
64
64
|
|
65
|
-
attach_file(
|
65
|
+
attach_file('File', File.join(FIXTURES_PATH, 'avatar.png'))
|
66
66
|
|
67
|
-
click_button
|
67
|
+
click_button 'Save'
|
68
68
|
|
69
|
-
expect(page).to have_content
|
70
|
-
expect(Spotlight::Resource.last.url.file.path).to end_with
|
69
|
+
expect(page).to have_content 'This is a now an avatar'
|
70
|
+
expect(Spotlight::Resource.last.url.file.path).to end_with 'avatar.png'
|
71
71
|
Blacklight.default_index.connection.delete_by_id Spotlight::Resource.last.send(:compound_id)
|
72
72
|
Blacklight.default_index.connection.commit
|
73
73
|
end
|
@@ -1,15 +1,15 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let!(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'User Administration', type: :feature do
|
4
|
+
let!(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let!(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
6
6
|
before { login_as user }
|
7
|
-
describe
|
8
|
-
it
|
7
|
+
describe 'index' do
|
8
|
+
it 'shows the users for the exhibit' do
|
9
9
|
visit spotlight.exhibit_roles_path(exhibit)
|
10
10
|
exhibit.roles.each do |role|
|
11
|
-
expect(page).to have_css(
|
12
|
-
expect(page).to have_css(
|
11
|
+
expect(page).to have_css('td', text: role.user.email)
|
12
|
+
expect(page).to have_css('td', text: role.role.humanize)
|
13
13
|
end
|
14
14
|
end
|
15
15
|
end
|
@@ -1,19 +1,19 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::ApplicationHelper, :
|
4
|
-
describe
|
5
|
-
it
|
6
|
-
allow(helper).to receive_messages(current_exhibit: double(title:
|
7
|
-
expect(helper.application_name).to eq
|
3
|
+
describe Spotlight::ApplicationHelper, type: :helper do
|
4
|
+
describe '#application_name' do
|
5
|
+
it 'includes the exhibit' do
|
6
|
+
allow(helper).to receive_messages(current_exhibit: double(title: 'My Exhibit'))
|
7
|
+
expect(helper.application_name).to eq 'My Exhibit - Blacklight'
|
8
8
|
end
|
9
9
|
|
10
|
-
it "
|
10
|
+
it "is just the application name if there isn't an exhibit" do
|
11
11
|
allow(helper).to receive_messages(current_exhibit: nil)
|
12
|
-
expect(helper.application_name).to eq
|
12
|
+
expect(helper.application_name).to eq 'Blacklight'
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
16
|
-
describe
|
16
|
+
describe '#url_to_tag_facet' do
|
17
17
|
before do
|
18
18
|
allow(helper).to receive_messages(current_exhibit: FactoryGirl.create(:exhibit))
|
19
19
|
allow(helper).to receive_messages(blacklight_config: Blacklight::Configuration.new)
|
@@ -24,32 +24,39 @@ describe Spotlight::ApplicationHelper, :type => :helper do
|
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
|
-
it
|
27
|
+
it 'is a url for a search with the given tag facet' do
|
28
28
|
allow(Spotlight::SolrDocument).to receive_messages(solr_field_for_tagger: :exhibit_tags)
|
29
|
-
|
29
|
+
expected = spotlight.exhibit_catalog_index_path(exhibit_id: helper.current_exhibit, f: { exhibit_tags: ['tag_value'] })
|
30
|
+
expect(helper.url_to_tag_facet 'tag_value').to eq expected
|
30
31
|
end
|
31
32
|
end
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
|
34
|
+
describe 'search block helpers' do
|
35
|
+
describe 'selected_search_block_views' do
|
36
|
+
let(:block) do
|
37
|
+
SirTrevorRails::Block.new({ type: 'xyz', data: { a: 'on', b: 'off', c: false, d: 'on' } }, 'parent')
|
38
|
+
end
|
39
|
+
|
40
|
+
it "returns keys with a value of 'on'" do
|
41
|
+
expect(helper.selected_search_block_views(block)).to eq %w(a d)
|
36
42
|
end
|
37
43
|
end
|
38
|
-
describe
|
39
|
-
let(:sir_trevor_block)
|
40
|
-
SirTrevorRails::Block.new({type: 'xyz', data: {view:
|
41
|
-
|
44
|
+
describe 'blacklight_view_config_for_search_block' do
|
45
|
+
let(:sir_trevor_block) do
|
46
|
+
SirTrevorRails::Block.new({ type: 'xyz', data: { view: %w(list gallery) } }, 'parent')
|
47
|
+
end
|
42
48
|
|
43
|
-
let(:config)
|
44
|
-
|
45
|
-
|
46
|
-
|
49
|
+
let(:config) do
|
50
|
+
Blacklight::Configuration.new do |config|
|
51
|
+
config.view.list = {}
|
52
|
+
config.view.gallery = {}
|
53
|
+
config.view.slideshow = {}
|
54
|
+
end
|
47
55
|
end
|
48
|
-
}
|
49
56
|
before do
|
50
57
|
allow(helper).to receive_messages(blacklight_config: config)
|
51
58
|
end
|
52
|
-
it
|
59
|
+
it 'returns a blacklight configuration object that has reduced the views to those that are configured in the block' do
|
53
60
|
new_config = helper.blacklight_view_config_for_search_block(sir_trevor_block)
|
54
61
|
expect(new_config.keys).to eq [:list, :gallery]
|
55
62
|
end
|
@@ -57,35 +64,35 @@ describe Spotlight::ApplicationHelper, :type => :helper do
|
|
57
64
|
end
|
58
65
|
describe 'render_document_class' do
|
59
66
|
let(:current_exhibit) { FactoryGirl.create(:exhibit) }
|
60
|
-
let(:document) { SolrDocument.new(some_field:
|
67
|
+
let(:document) { SolrDocument.new(some_field: 'Some data') }
|
61
68
|
before do
|
62
69
|
allow(helper).to receive_messages(current_exhibit: current_exhibit)
|
63
70
|
allow(helper).to receive_messages(blacklight_config: Blacklight::Configuration.new do |config|
|
64
71
|
config.index.display_type_field = :some_field
|
65
72
|
end)
|
66
73
|
end
|
67
|
-
it '
|
74
|
+
it 'returns blacklight-private when the document is private' do
|
68
75
|
allow(document).to receive(:private?).with(current_exhibit).and_return(true)
|
69
|
-
expect(helper.render_document_class(document)).to
|
76
|
+
expect(helper.render_document_class(document)).to include 'blacklight-private'
|
70
77
|
end
|
71
|
-
it '
|
72
|
-
expect(helper.render_document_class(document)).to
|
78
|
+
it 'prefixs "blacklight-" to the configured type' do
|
79
|
+
expect(helper.render_document_class(document)).to include 'blacklight-some-data'
|
73
80
|
end
|
74
81
|
end
|
75
82
|
|
76
|
-
describe
|
83
|
+
describe '#add_exhibit_twitter_card_content' do
|
77
84
|
let(:current_exhibit) { FactoryGirl.create(:exhibit) }
|
78
85
|
before do
|
79
86
|
allow(helper).to receive_messages(current_exhibit: current_exhibit)
|
80
|
-
current_exhibit.subtitle =
|
81
|
-
current_exhibit.description =
|
87
|
+
current_exhibit.subtitle = 'xyz'
|
88
|
+
current_exhibit.description = 'abc'
|
82
89
|
TopHat.current['twitter_card'] = nil
|
83
90
|
end
|
84
91
|
|
85
|
-
it
|
86
|
-
allow(helper).to receive(:exhibit_root_url).and_return(
|
92
|
+
it 'generates a twitter card for the exhibit' do
|
93
|
+
allow(helper).to receive(:exhibit_root_url).and_return('some/url')
|
87
94
|
allow(current_exhibit).to receive(:thumbnail).and_return(double)
|
88
|
-
allow(current_exhibit).to receive_message_chain(:thumbnail, :image, :thumb, url:
|
95
|
+
allow(current_exhibit).to receive_message_chain(:thumbnail, :image, :thumb, url: '/image')
|
89
96
|
|
90
97
|
helper.add_exhibit_twitter_card_content
|
91
98
|
|
@@ -97,41 +104,41 @@ describe Spotlight::ApplicationHelper, :type => :helper do
|
|
97
104
|
expect(card).to have_css "meta[name='twitter:image'][value='http://test.host/image']", visible: false
|
98
105
|
end
|
99
106
|
end
|
100
|
-
|
101
|
-
describe
|
102
|
-
it
|
103
|
-
upload = double(url:
|
104
|
-
expect(helper.carrierwave_url(upload)).to eq
|
107
|
+
|
108
|
+
describe '#carrierwave_url' do
|
109
|
+
it 'turns a application-relative URI into a path' do
|
110
|
+
upload = double(url: '/x/y/z')
|
111
|
+
expect(helper.carrierwave_url(upload)).to eq 'http://test.host/x/y/z'
|
105
112
|
end
|
106
113
|
|
107
|
-
it
|
108
|
-
upload = double(url:
|
109
|
-
expect(helper.carrierwave_url(upload)).to eq
|
114
|
+
it 'passes a full URI through' do
|
115
|
+
upload = double(url: 'http://some.host/x/y/z')
|
116
|
+
expect(helper.carrierwave_url(upload)).to eq 'http://some.host/x/y/z'
|
110
117
|
end
|
111
118
|
end
|
112
|
-
|
113
|
-
describe
|
119
|
+
|
120
|
+
describe 'save_search rendering' do
|
114
121
|
let(:current_exhibit) { FactoryGirl.create(:exhibit) }
|
115
122
|
before { allow(helper).to receive_messages(current_exhibit: current_exhibit) }
|
116
|
-
describe
|
117
|
-
it
|
123
|
+
describe 'render_save_this_search?' do
|
124
|
+
it 'returns false if we are on the items admin screen' do
|
118
125
|
allow(helper).to receive(:"can?").with(:curate, current_exhibit).and_return(true)
|
119
|
-
allow(helper).to receive(:params).and_return(
|
126
|
+
allow(helper).to receive(:params).and_return(controller: 'spotlight/catalog', action: 'admin')
|
120
127
|
expect(helper.render_save_this_search?).to be_falsey
|
121
128
|
end
|
122
|
-
it
|
129
|
+
it 'returns true if we are not on the items admin screen' do
|
123
130
|
allow(helper).to receive(:"can?").with(:curate, current_exhibit).and_return(true)
|
124
|
-
allow(helper).to receive(:params).and_return(
|
131
|
+
allow(helper).to receive(:params).and_return(controller: 'spotlight/catalog', action: 'index')
|
125
132
|
expect(helper.render_save_this_search?).to be_truthy
|
126
133
|
end
|
127
|
-
it
|
134
|
+
it 'returns false if a user cannot curate the object' do
|
128
135
|
allow(helper).to receive(:"can?").with(:curate, current_exhibit).and_return(false)
|
129
136
|
expect(helper.render_save_this_search?).to be_falsey
|
130
137
|
end
|
131
138
|
end
|
132
139
|
end
|
133
140
|
|
134
|
-
describe
|
141
|
+
describe '#uploaded_field_label' do
|
135
142
|
let :field do
|
136
143
|
OpenStruct.new field_name: 'x'
|
137
144
|
end
|
@@ -144,18 +151,18 @@ describe Spotlight::ApplicationHelper, :type => :helper do
|
|
144
151
|
allow(helper).to receive_messages(blacklight_config: blacklight_config)
|
145
152
|
end
|
146
153
|
|
147
|
-
it
|
154
|
+
it 'uses the configuration-provided label' do
|
148
155
|
field.label = 'label x'
|
149
156
|
expect(helper.uploaded_field_label(field)).to eq 'label x'
|
150
157
|
end
|
151
158
|
|
152
|
-
it
|
159
|
+
it 'pulls the label from the solr field' do
|
153
160
|
blacklight_config.add_index_field 'x', label: 'solr x'
|
154
161
|
expect(helper.uploaded_field_label(field)).to eq 'solr x'
|
155
162
|
end
|
156
163
|
end
|
157
164
|
|
158
|
-
describe
|
165
|
+
describe '#available_view_fields' do
|
159
166
|
let :blacklight_config do
|
160
167
|
Blacklight::Configuration.new
|
161
168
|
end
|
@@ -164,7 +171,7 @@ describe Spotlight::ApplicationHelper, :type => :helper do
|
|
164
171
|
allow(helper).to receive_message_chain(:current_exhibit, :blacklight_configuration, default_blacklight_config: blacklight_config)
|
165
172
|
end
|
166
173
|
|
167
|
-
it
|
174
|
+
it 'excludes view fields that are never visible (e.g. atom, rss)' do
|
168
175
|
blacklight_config.view.a.if = true
|
169
176
|
blacklight_config.view.b.if = false
|
170
177
|
|