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,17 +0,0 @@
|
|
1
|
-
<h3><%= t('spotlight.resources.csv.header') %></h3>
|
2
|
-
<%= bootstrap_form_for [@resource.exhibit, @resource.becomes(Spotlight::Resources::Csv)], layout: :horizontal, label_col: 'col-md-3', control_col: 'col-sm-5 col-md-5', :html => {:multipart => true } do |f| %>
|
3
|
-
|
4
|
-
<div class="form-group">
|
5
|
-
<%# bootstrap_form_for's file_field doesn't use any of the bootstrap
|
6
|
-
goodness (bootstrap-ruby/rails-bootstrap-forms#49). Instead, we'll lie
|
7
|
-
about the field type and change the attribute ourselves. %>
|
8
|
-
<%= f.url_field :url, type: "file", help: link_to(t('.template'), [:template, @resource.exhibit, @resource.becomes(Spotlight::Resources::Csv)]) %>
|
9
|
-
<%= f.hidden_field :url_cache %>
|
10
|
-
</div>
|
11
|
-
<div class="form-actions col-md-7 col-sm-7">
|
12
|
-
<div class="primary-actions">
|
13
|
-
<%= cancel_link @resource, :back, class: 'btn btn-default' %>
|
14
|
-
<%= f.submit nil, class: 'btn btn-primary' %>
|
15
|
-
</div>
|
16
|
-
</div>
|
17
|
-
<% end %>
|
@@ -1,167 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
describe Spotlight::BlacklightConfigurationsController, :type => :controller do
|
3
|
-
routes { Spotlight::Engine.routes }
|
4
|
-
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
|
6
|
-
describe "when the user is not authorized" do
|
7
|
-
before do
|
8
|
-
sign_in FactoryGirl.create(:exhibit_visitor)
|
9
|
-
end
|
10
|
-
|
11
|
-
it "should deny access" do
|
12
|
-
get :metadata_fields, exhibit_id: exhibit
|
13
|
-
expect(response).to redirect_to main_app.root_path
|
14
|
-
expect(flash[:alert]).to be_present
|
15
|
-
end
|
16
|
-
|
17
|
-
it "should deny access" do
|
18
|
-
get :edit_metadata_fields, exhibit_id: exhibit
|
19
|
-
expect(response).to redirect_to main_app.root_path
|
20
|
-
expect(flash[:alert]).to be_present
|
21
|
-
end
|
22
|
-
|
23
|
-
it "should deny access" do
|
24
|
-
get :edit_facet_fields, exhibit_id: exhibit
|
25
|
-
expect(response).to redirect_to main_app.root_path
|
26
|
-
expect(flash[:alert]).to be_present
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
|
-
describe "when not logged in" do
|
31
|
-
describe "#update" do
|
32
|
-
it "should not be allowed" do
|
33
|
-
patch :update, exhibit_id: exhibit
|
34
|
-
expect(response).to redirect_to main_app.new_user_session_path
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
describe "#edit_metadata_fields" do
|
39
|
-
it "should not be allowed" do
|
40
|
-
get :edit_metadata_fields, exhibit_id: exhibit
|
41
|
-
expect(response).to redirect_to main_app.new_user_session_path
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
describe "#edit_facet_fields" do
|
46
|
-
it "should not be allowed" do
|
47
|
-
get :edit_facet_fields, exhibit_id: exhibit
|
48
|
-
expect(response).to redirect_to main_app.new_user_session_path
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
describe "when signed in" do
|
54
|
-
let(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
55
|
-
before {sign_in user }
|
56
|
-
|
57
|
-
describe "#edit_metadata_fields" do
|
58
|
-
it "should be successful" do
|
59
|
-
expect(controller).to receive(:add_breadcrumb).with("Home", exhibit)
|
60
|
-
expect(controller).to receive(:add_breadcrumb).with("Curation", exhibit_dashboard_path(exhibit))
|
61
|
-
expect(controller).to receive(:add_breadcrumb).with("Metadata", exhibit_edit_metadata_path(exhibit))
|
62
|
-
get :edit_metadata_fields, exhibit_id: exhibit
|
63
|
-
expect(response).to be_successful
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
describe "#edit_facet_fields" do
|
68
|
-
it "should be successful" do
|
69
|
-
expect(controller).to receive(:add_breadcrumb).with("Home", exhibit)
|
70
|
-
expect(controller).to receive(:add_breadcrumb).with("Curation", exhibit_dashboard_path(exhibit))
|
71
|
-
expect(controller).to receive(:add_breadcrumb).with("Search facets", exhibit_edit_facets_path(exhibit))
|
72
|
-
allow(controller).to receive_message_chain(:repository, :send_and_receive).and_return({})
|
73
|
-
get :edit_facet_fields, exhibit_id: exhibit
|
74
|
-
expect(response).to be_successful
|
75
|
-
end
|
76
|
-
end
|
77
|
-
|
78
|
-
describe "#edit_sort_fields" do
|
79
|
-
it "should be successful" do
|
80
|
-
expect(controller).to receive(:add_breadcrumb).with("Home", exhibit)
|
81
|
-
expect(controller).to receive(:add_breadcrumb).with("Curation", exhibit_dashboard_path(exhibit))
|
82
|
-
expect(controller).to receive(:add_breadcrumb).with("Sort fields", exhibit_edit_sort_fields_path(exhibit))
|
83
|
-
get :edit_sort_fields, exhibit_id: exhibit
|
84
|
-
expect(response).to be_successful
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
describe "#metadata_fields" do
|
89
|
-
it "should be successful" do
|
90
|
-
get :metadata_fields, exhibit_id: exhibit, format: 'json'
|
91
|
-
expect(response).to be_successful
|
92
|
-
expect(JSON.parse(response.body).keys).to eq exhibit.blacklight_config.index_fields.keys
|
93
|
-
end
|
94
|
-
end
|
95
|
-
|
96
|
-
describe "#available_search_views" do
|
97
|
-
it "should be successful" do
|
98
|
-
get :available_search_views, exhibit_id: exhibit, format: 'json'
|
99
|
-
expect(response).to be_successful
|
100
|
-
available = JSON.parse(response.body)
|
101
|
-
expect(available).to match_array ['list', 'gallery', 'slideshow']
|
102
|
-
end
|
103
|
-
end
|
104
|
-
|
105
|
-
describe "#alternate_count" do
|
106
|
-
before { controller.instance_variable_set(:@blacklight_configuration, exhibit.blacklight_configuration) }
|
107
|
-
subject { controller.alternate_count }
|
108
|
-
its(:count) { should eq 7 }
|
109
|
-
it "should have correct numbers" do
|
110
|
-
expect(subject['genre_ssim']).to eq 54
|
111
|
-
end
|
112
|
-
end
|
113
|
-
|
114
|
-
describe "#update" do
|
115
|
-
|
116
|
-
it "should update metadata fields" do
|
117
|
-
blacklight_config = Blacklight::Configuration.new
|
118
|
-
blacklight_config.add_index_field ['a', 'b', 'c', 'd', 'e', 'f']
|
119
|
-
allow(::CatalogController).to receive_messages(blacklight_config: blacklight_config)
|
120
|
-
patch :update, exhibit_id: exhibit, blacklight_configuration: {
|
121
|
-
index_fields: {
|
122
|
-
c: { enabled: true, show: true},
|
123
|
-
d: { enabled: true, show: true},
|
124
|
-
e: { enabled: true, list: true},
|
125
|
-
f: { enabled: true, list: true}
|
126
|
-
}
|
127
|
-
}
|
128
|
-
|
129
|
-
expect(flash[:notice]).to eq "The exhibit was successfully updated."
|
130
|
-
expect(response).to redirect_to exhibit_edit_metadata_path(exhibit)
|
131
|
-
assigns[:exhibit].tap do |saved|
|
132
|
-
expect(saved.blacklight_configuration.index_fields).to include 'c', 'd', 'e', 'f'
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
it "should update facet fields" do
|
137
|
-
patch :update, exhibit_id: exhibit, blacklight_configuration: {
|
138
|
-
facet_fields: { 'genre_ssim' => { enabled: '1', label: "Label"} }
|
139
|
-
}
|
140
|
-
expect(flash[:notice]).to eq "The exhibit was successfully updated."
|
141
|
-
expect(response).to redirect_to exhibit_edit_facets_path(exhibit)
|
142
|
-
assigns[:exhibit].tap do |saved|
|
143
|
-
expect(saved.blacklight_configuration.facet_fields.keys).to eq ['genre_ssim']
|
144
|
-
end
|
145
|
-
end
|
146
|
-
|
147
|
-
it "should update sort fields" do
|
148
|
-
patch :update, exhibit_id: exhibit, blacklight_configuration: {
|
149
|
-
sort_fields: {"relevance"=>{"enabled" => "1", "label" => "Relevance"}, "title"=>{"enabled" => "1", "label" => "Title"}, "type"=>{"enabled" => "1", "label" => "Type"}, "date"=>{"enabled" => "0", "label" => "Date"}, "source"=>{"enabled" => "0", "label" => "Source"}, "identifier"=>{"enabled" => "0", "label" => "Identifier"}}
|
150
|
-
}
|
151
|
-
expect(flash[:notice]).to eq "The exhibit was successfully updated."
|
152
|
-
expect(response).to redirect_to exhibit_edit_sort_fields_path(exhibit)
|
153
|
-
assigns[:exhibit].tap do |saved|
|
154
|
-
expect(saved.blacklight_configuration.sort_fields).to eq(
|
155
|
-
{"relevance" => {"label"=>"Relevance", "enabled"=>true},
|
156
|
-
"title" => {"label" => "Title", "enabled"=>true},
|
157
|
-
"type" => {"label" => "Type", "enabled"=>true},
|
158
|
-
"date" => {"label" => "Date", "enabled"=>false},
|
159
|
-
"source" => {"label" => "Source", "enabled"=>false},
|
160
|
-
"identifier" => {"label" => "Identifier", "enabled"=>false}
|
161
|
-
}
|
162
|
-
)
|
163
|
-
end
|
164
|
-
end
|
165
|
-
end
|
166
|
-
end
|
167
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe "Sort Fields Administration", :type => :feature do
|
4
|
-
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
6
|
-
before { login_as exhibit_curator }
|
7
|
-
|
8
|
-
describe "edit" do
|
9
|
-
it "should display the sort fields edit screen" do
|
10
|
-
visit spotlight.exhibit_edit_sort_fields_path(exhibit)
|
11
|
-
expect(page).to have_css("h1 small", text: "Sort fields")
|
12
|
-
end
|
13
|
-
|
14
|
-
it "should update options" do
|
15
|
-
visit spotlight.exhibit_edit_sort_fields_path(exhibit)
|
16
|
-
|
17
|
-
# #field_labeled doesn't appear to work for disabled inputs
|
18
|
-
expect(page).to have_css("input[name='blacklight_configuration[sort_fields][relevance][enable]'][disabled='disabled']")
|
19
|
-
expect(page).to have_css("#nested-sort-fields .dd-item:nth-child(5) h3", text: "Identifier")
|
20
|
-
|
21
|
-
uncheck "blacklight_configuration_sort_fields_title_enabled"
|
22
|
-
uncheck "blacklight_configuration_sort_fields_identifier_enabled"
|
23
|
-
|
24
|
-
find("#blacklight_configuration_sort_fields_type_weight").set("100")
|
25
|
-
|
26
|
-
click_button "Save changes"
|
27
|
-
|
28
|
-
within "#sidebar" do
|
29
|
-
click_link "Sort fields"
|
30
|
-
end
|
31
|
-
|
32
|
-
expect(page).to have_css("input[name='blacklight_configuration[sort_fields][relevance][enable]'][disabled='disabled']")
|
33
|
-
expect(find("#blacklight_configuration_sort_fields_type_enabled")).to be_checked
|
34
|
-
expect(find("#blacklight_configuration_sort_fields_date_enabled")).to be_checked
|
35
|
-
expect(find("#blacklight_configuration_sort_fields_title_enabled")).to_not be_checked
|
36
|
-
expect(find("#blacklight_configuration_sort_fields_identifier_enabled")).to_not be_checked
|
37
|
-
|
38
|
-
# Type is now sorted last
|
39
|
-
expect(page).to have_css("#nested-sort-fields .dd-item:nth-child(5) h3", text: "Type")
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe "Editing metadata fields", type: :feature do
|
4
|
-
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
let(:admin) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
6
|
-
before { login_as(admin) }
|
7
|
-
|
8
|
-
it "should allow curators to select and unselect facets for display" do
|
9
|
-
visit spotlight.exhibit_edit_facets_path exhibit
|
10
|
-
|
11
|
-
expect(page).to have_content "Curation Search Facets"
|
12
|
-
expect(page).to have_button "Save"
|
13
|
-
|
14
|
-
uncheck "blacklight_configuration_facet_fields_language_ssim_show" # Language
|
15
|
-
uncheck "blacklight_configuration_facet_fields_genre_ssim_show" # Genre
|
16
|
-
check "blacklight_configuration_facet_fields_subject_temporal_ssim_show" # Era
|
17
|
-
|
18
|
-
click_on "Save changes"
|
19
|
-
|
20
|
-
expect(exhibit.reload.blacklight_config.facet_fields.select { |k,v| v.show }.keys).to include("subject_temporal_ssim")
|
21
|
-
expect(exhibit.blacklight_config.facet_fields.select { |k,v| v.show }.keys).to_not include("language_ssim", "genre_ssim")
|
22
|
-
end
|
23
|
-
|
24
|
-
it "should display information about the facet" do
|
25
|
-
visit spotlight.exhibit_edit_facets_path exhibit
|
26
|
-
within ".facet-config-genre_ssim" do
|
27
|
-
expect(page).to have_content /\d+ items/
|
28
|
-
expect(page).to have_content /(\d+) unique values/
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
it "should have breadcrumbs" do
|
33
|
-
visit spotlight.exhibit_edit_facets_path exhibit
|
34
|
-
|
35
|
-
expect(page).to have_breadcrumbs "Home", "Curation", "Search facets"
|
36
|
-
end
|
37
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
feature "Facets Administration", js: true do
|
4
|
-
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
6
|
-
before { login_as exhibit_curator }
|
7
|
-
it "should allow us to update the label with edit-in-place" do
|
8
|
-
|
9
|
-
input_id = "blacklight_configuration_facet_fields_genre_ssim_label"
|
10
|
-
visit spotlight.exhibit_home_page_path(exhibit, exhibit.home_page)
|
11
|
-
click_link exhibit_curator.email
|
12
|
-
|
13
|
-
within '#user-util-collapse .dropdown' do
|
14
|
-
click_link 'Dashboard'
|
15
|
-
end
|
16
|
-
|
17
|
-
click_link "Search facets"
|
18
|
-
|
19
|
-
facet = find(".edit-in-place", text: "Genre")
|
20
|
-
expect(page).not_to have_content("Topic")
|
21
|
-
expect(page).to have_css("input##{input_id}", visible: false)
|
22
|
-
|
23
|
-
facet.click
|
24
|
-
|
25
|
-
expect(page).to have_css("input##{input_id}", visible: true)
|
26
|
-
|
27
|
-
fill_in(input_id, with: "Topic")
|
28
|
-
|
29
|
-
click_button "Save changes"
|
30
|
-
|
31
|
-
expect(page).to have_content("The exhibit was successfully updated.")
|
32
|
-
|
33
|
-
expect(page).not_to have_content("Genre")
|
34
|
-
expect(page).to have_content("Topic")
|
35
|
-
end
|
36
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
require "spec_helper"
|
2
|
-
|
3
|
-
describe "Search Facets Administration", :type => :feature do
|
4
|
-
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
6
|
-
before { login_as exhibit_curator }
|
7
|
-
|
8
|
-
describe "edit" do
|
9
|
-
it "should display the facet edit screen" do
|
10
|
-
visit spotlight.exhibit_edit_facets_path(exhibit)
|
11
|
-
expect(page).to have_css("h1 small", text: "Search Facets")
|
12
|
-
within("[data-id='genre_ssim']") do
|
13
|
-
expect(page).to have_content("Genre")
|
14
|
-
expect(page).to have_content(/\d+ items/)
|
15
|
-
expect(page).to have_content("10 unique values")
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,58 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe "Update the appearance", :type => :feature do
|
4
|
-
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
let(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
6
|
-
|
7
|
-
before { login_as user }
|
8
|
-
it "should update appearance options" do
|
9
|
-
visit spotlight.exhibit_dashboard_path(exhibit)
|
10
|
-
within "#sidebar" do
|
11
|
-
click_link "Appearance"
|
12
|
-
end
|
13
|
-
|
14
|
-
click_link "Exhibit style"
|
15
|
-
uncheck "Searchable (offer searchbox and facet sidebar)"
|
16
|
-
|
17
|
-
click_link "Search results"
|
18
|
-
uncheck "List"
|
19
|
-
|
20
|
-
choose "20"
|
21
|
-
|
22
|
-
click_button "Save changes"
|
23
|
-
|
24
|
-
expect(page).to have_content("The appearance was successfully updated.")
|
25
|
-
|
26
|
-
within "#sidebar" do
|
27
|
-
click_link "Appearance"
|
28
|
-
end
|
29
|
-
|
30
|
-
click_link "Exhibit style"
|
31
|
-
expect(field_labeled('Searchable (offer searchbox and facet sidebar)')).to_not be_checked
|
32
|
-
|
33
|
-
click_link "Search results"
|
34
|
-
expect(field_labeled('List')).to_not be_checked
|
35
|
-
expect(field_labeled('Gallery')).to be_checked
|
36
|
-
|
37
|
-
expect(field_labeled('20')).to be_checked
|
38
|
-
expect(field_labeled('10')).to_not be_checked
|
39
|
-
end
|
40
|
-
|
41
|
-
it "should hide search features when the exhibit is not searchable" do
|
42
|
-
visit spotlight.exhibit_dashboard_path(exhibit)
|
43
|
-
within "#sidebar" do
|
44
|
-
click_link "Appearance"
|
45
|
-
end
|
46
|
-
|
47
|
-
uncheck "Searchable (offer searchbox and facet sidebar)"
|
48
|
-
|
49
|
-
click_button "Save changes"
|
50
|
-
|
51
|
-
visit spotlight.exhibit_root_path(exhibit)
|
52
|
-
|
53
|
-
expect(page).to_not have_link "Saved Searches"
|
54
|
-
expect(page).to_not have_link "History"
|
55
|
-
expect(page).to_not have_content "Limit your search"
|
56
|
-
expect(page).to_not have_css ".search-query-form"
|
57
|
-
end
|
58
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Spotlight::BlacklightConfigurationsHelper, type: :helper do
|
4
|
-
describe "#translate_sort_fields" do
|
5
|
-
let(:sort_config) {
|
6
|
-
Blacklight::OpenStructWithHashAccess.new({sort: "score asc, sort_title_ssi desc"})
|
7
|
-
}
|
8
|
-
it 'should translate sort fields' do
|
9
|
-
expect(translate_sort_fields(sort_config)).to eq 'relevancy score ascending, title descending'
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Spotlight::Appearance, :type => :model do
|
4
|
-
let(:config) { FactoryGirl.create(:exhibit).blacklight_configuration }
|
5
|
-
subject { Spotlight::Appearance.new config }
|
6
|
-
|
7
|
-
describe '#searchable' do
|
8
|
-
it 'should be delegated to the exhibit' do
|
9
|
-
expect(config.exhibit).to receive(:searchable)
|
10
|
-
subject.searchable
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe '#exhibit_params' do
|
15
|
-
it 'should include the searchable parameter' do
|
16
|
-
expect(subject.send(:exhibit_params, searchable: true)).to eq({searchable: true})
|
17
|
-
end
|
18
|
-
it 'should include the main_navigations_attribute parameter when main_navigations is present' do
|
19
|
-
expect(subject.send(:exhibit_params, searchable: false, main_navigations: {a: :a})[:main_navigations_attributes]).to eq([:a])
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
describe "#view_type_options" do
|
24
|
-
subject { Spotlight::Appearance.new(config).view_type_options }
|
25
|
-
it "should include the available view types" do
|
26
|
-
expect(subject).to include :list, :gallery, :slideshow
|
27
|
-
end
|
28
|
-
|
29
|
-
it "should not include rss or atom" do
|
30
|
-
expect(subject).not_to include :rss, :atom
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
@@ -1,101 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
describe Spotlight::Resources::Csv, :type => :model do
|
4
|
-
let(:exhibit) { FactoryGirl.create :exhibit }
|
5
|
-
before do
|
6
|
-
allow(Spotlight::SolrDocument).to receive_messages(visibility_field: 'public_bsi')
|
7
|
-
end
|
8
|
-
|
9
|
-
describe "#to_solr" do
|
10
|
-
let(:csv) do
|
11
|
-
[
|
12
|
-
{ 'id' => 15, 'a' => 1, 'b' => 2, 'extra' => 'ignore'},
|
13
|
-
{ 'id' => 16, 'a' => 2, 'b' => 3},
|
14
|
-
]
|
15
|
-
end
|
16
|
-
|
17
|
-
let(:label_to_field) do
|
18
|
-
{ 'id' => 'id', 'a' => 'solr_field_a', 'b' => 'custom_field_b' }
|
19
|
-
end
|
20
|
-
|
21
|
-
before do
|
22
|
-
allow(subject).to receive_messages(csv: csv, label_to_field: label_to_field, exhibit: exhibit, to_global_id: "xyz")
|
23
|
-
end
|
24
|
-
|
25
|
-
it "should map csv headers to solr fields" do
|
26
|
-
expect(subject.to_solr).to have(2).items
|
27
|
-
expect(subject.to_solr.first).to include 'id' => [15], 'solr_field_a' => [1], 'custom_field_b' => [2]
|
28
|
-
expect(subject.to_solr.first).to_not include 'extra'
|
29
|
-
expect(subject.to_solr.last).to include 'id' => [16], 'solr_field_a' => [2], 'custom_field_b' => [3]
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
describe "#label_to_field" do
|
34
|
-
let(:blacklight_config) do
|
35
|
-
Blacklight::Configuration.new do |config|
|
36
|
-
config.index.title_field = 'my_title_field'
|
37
|
-
config.add_index_field 'a', label: "Field A"
|
38
|
-
config.add_index_field 'b', label: "Field B"
|
39
|
-
|
40
|
-
config.add_facet_field 'c', label: "Field C"
|
41
|
-
config.add_facet_field 'd', label: "Field D"
|
42
|
-
end
|
43
|
-
|
44
|
-
end
|
45
|
-
|
46
|
-
before do
|
47
|
-
allow(subject).to receive_messages(exhibit: double(blacklight_config: blacklight_config))
|
48
|
-
end
|
49
|
-
it "should include an id and title" do
|
50
|
-
expect(subject.label_to_field).to include "id" => "id", "Title" => "my_title_field", "Public" => 'public_bsi'
|
51
|
-
end
|
52
|
-
|
53
|
-
it "should include the index fields" do
|
54
|
-
expect(subject.label_to_field).to include "Field A" => "a", "Field B" => "b"
|
55
|
-
end
|
56
|
-
|
57
|
-
it "should include the facet fields" do
|
58
|
-
expect(subject.label_to_field).to include "Field C" => "c", "Field D" => "d"
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
describe "#csv" do
|
63
|
-
it "should load the uploaded file as CSV" do
|
64
|
-
allow(subject).to receive_messages(url: double(path: "/abc"))
|
65
|
-
expect(File).to receive(:open).with("/abc", "r").and_return(StringIO.new "a,b\n1,2")
|
66
|
-
csv = subject.csv
|
67
|
-
expect(csv).to be_a_kind_of CSV
|
68
|
-
expect(csv).to have(1).row
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
describe "persisting exhibit-specific fields into sidecar rows" do
|
73
|
-
|
74
|
-
let!(:custom_field) { FactoryGirl.create :custom_field, exhibit: exhibit }
|
75
|
-
|
76
|
-
let!(:csv_data) do
|
77
|
-
t = Tempfile.new "csv_data"
|
78
|
-
t.puts "id,Public,a,b,#{custom_field.label}"
|
79
|
-
t.puts "1,true,z,y,x"
|
80
|
-
t.puts "2,false,x,v,w"
|
81
|
-
t.rewind
|
82
|
-
t
|
83
|
-
end
|
84
|
-
|
85
|
-
before do
|
86
|
-
allow(subject).to receive_messages(reindex: true)
|
87
|
-
subject.exhibit = exhibit
|
88
|
-
subject.url = csv_data
|
89
|
-
end
|
90
|
-
|
91
|
-
it "should create sidecar files for custom fields" do
|
92
|
-
expect { subject.save! }.to change { Spotlight::SolrDocumentSidecar.count }.by(2)
|
93
|
-
row = subject.exhibit.solr_document_sidecars.where(document_id: "1").first
|
94
|
-
expect(row.public).to be_truthy
|
95
|
-
expect(row.data[custom_field.field]).to eq "x"
|
96
|
-
row = subject.exhibit.solr_document_sidecars.where(document_id: "2").first
|
97
|
-
expect(row.public).to be_falsey
|
98
|
-
expect(row.data[custom_field.field]).to eq "w"
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|