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,47 +1,51 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::ContactEmail, :
|
3
|
+
describe Spotlight::ContactEmail, type: :model do
|
4
4
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
|
-
subject {
|
5
|
+
subject { described_class.new(exhibit: exhibit) }
|
6
6
|
|
7
7
|
it { is_expected.not_to be_valid }
|
8
8
|
|
9
|
-
describe
|
9
|
+
describe 'with an invalid email set' do
|
10
10
|
before { subject.email = '@-foo' }
|
11
|
-
it
|
12
|
-
expect(subject).to_not be_valid
|
11
|
+
it 'does not be valid' do
|
12
|
+
expect(subject).to_not be_valid
|
13
13
|
expect(subject.errors[:email]).to eq ['is not valid']
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
17
|
-
describe
|
17
|
+
describe 'with a valid email set' do
|
18
18
|
before { subject.email = 'foo@example.com' }
|
19
19
|
it { is_expected.to be_valid }
|
20
20
|
|
21
|
-
describe
|
22
|
-
it
|
21
|
+
describe 'when saved' do
|
22
|
+
it 'sends a confirmation' do
|
23
23
|
expect(subject).to receive(:send_devise_notification)
|
24
|
-
subject.save
|
24
|
+
subject.save
|
25
25
|
end
|
26
26
|
end
|
27
|
-
describe
|
28
|
-
it
|
29
|
-
expect
|
30
|
-
subject.send(:send_devise_notification, :confirmation_instructions,
|
31
|
-
|
27
|
+
describe '#send_devise_notification' do
|
28
|
+
it 'sends stuff' do
|
29
|
+
expect do
|
30
|
+
subject.send(:send_devise_notification, :confirmation_instructions, 'Q7PEPdLVxymsQL2_s_Rg', {})
|
31
|
+
end.to change { ActionMailer::Base.deliveries.count }.by(1)
|
32
32
|
end
|
33
33
|
end
|
34
34
|
end
|
35
|
-
|
36
|
-
describe
|
37
|
-
it
|
38
|
-
a = exhibit.contact_emails.create(:
|
39
|
-
a.confirm
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
35
|
+
|
36
|
+
describe '.confirmed' do
|
37
|
+
it 'scopes contacts to only confirmed contacts' do
|
38
|
+
a = exhibit.contact_emails.create(email: 'a@example.com')
|
39
|
+
if a.respond_to? :confirm
|
40
|
+
a.confirm
|
41
|
+
else
|
42
|
+
a.confirm!
|
43
|
+
end
|
44
|
+
|
45
|
+
b = exhibit.contact_emails.create(email: 'b@example.com')
|
46
|
+
|
47
|
+
expect(described_class.confirmed.to_a).to include a
|
48
|
+
expect(described_class.confirmed.to_a).to_not include b
|
44
49
|
end
|
45
50
|
end
|
46
|
-
|
47
51
|
end
|
@@ -1,22 +1,21 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::Contact, :
|
4
|
-
|
5
|
-
|
6
|
-
it "should be an attribute" do
|
3
|
+
describe Spotlight::Contact, type: :model do
|
4
|
+
context '#show_in_sidebar' do
|
5
|
+
it 'is an attribute' do
|
7
6
|
subject.show_in_sidebar = false
|
8
7
|
subject.save
|
9
8
|
expect(subject.show_in_sidebar).to be_falsey
|
10
9
|
end
|
11
|
-
it
|
10
|
+
it 'is published by default' do
|
12
11
|
subject.save
|
13
12
|
expect(subject.show_in_sidebar).to be_truthy
|
14
13
|
end
|
15
14
|
end
|
16
|
-
context
|
15
|
+
context '#fields' do
|
17
16
|
it 'show allow new fields to be configured' do
|
18
17
|
expect(subject.class.fields).to_not have_key(:new_field)
|
19
|
-
|
18
|
+
described_class.fields[:new_field] = {}
|
20
19
|
expect(subject.class.fields).to have_key(:new_field)
|
21
20
|
end
|
22
21
|
end
|
@@ -1,62 +1,62 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::CustomField, :
|
4
|
-
describe
|
5
|
-
subject {
|
3
|
+
describe Spotlight::CustomField, type: :model do
|
4
|
+
describe '#label' do
|
5
|
+
subject { described_class.new configuration: { 'label' => 'the configured label' }, field: 'foo_tesim' }
|
6
6
|
describe "when the exhibit doesn't have a config" do
|
7
|
-
its(:label) { should eq
|
7
|
+
its(:label) { should eq 'the configured label' }
|
8
8
|
end
|
9
9
|
|
10
|
-
describe
|
10
|
+
describe 'when the exhibit has a config' do
|
11
11
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
12
12
|
before { subject.exhibit = exhibit }
|
13
|
-
describe
|
13
|
+
describe 'that overrides the label' do
|
14
14
|
before do
|
15
|
-
exhibit.blacklight_configuration.index_fields['foo_tesim'] = { 'label' =>
|
15
|
+
exhibit.blacklight_configuration.index_fields['foo_tesim'] = { 'label' => 'overridden' }
|
16
16
|
end
|
17
|
-
its(:label) { should eq
|
17
|
+
its(:label) { should eq 'overridden' }
|
18
18
|
end
|
19
19
|
describe "that doesn't override the label" do
|
20
|
-
its(:label) { should eq
|
20
|
+
its(:label) { should eq 'the configured label' }
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
-
describe
|
26
|
-
subject {
|
25
|
+
describe '#label=' do
|
26
|
+
subject { described_class.new field: 'foo_tesim' }
|
27
27
|
describe "when the exhibit doesn't have a config" do
|
28
28
|
before { subject.label = 'the configured label' }
|
29
|
-
its(:configuration) { should eq(
|
29
|
+
its(:configuration) { should eq('label' => 'the configured label') }
|
30
30
|
end
|
31
31
|
|
32
|
-
describe
|
32
|
+
describe 'when the exhibit has a config' do
|
33
33
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
34
34
|
before { subject.exhibit = exhibit }
|
35
|
-
describe
|
35
|
+
describe 'that overrides the label' do
|
36
36
|
before do
|
37
|
-
exhibit.blacklight_configuration.index_fields['foo_tesim'] = { 'label' =>
|
37
|
+
exhibit.blacklight_configuration.index_fields['foo_tesim'] = { 'label' => 'overridden' }
|
38
38
|
subject.label = 'edited'
|
39
39
|
end
|
40
|
-
it
|
40
|
+
it 'has updated the exhibit' do
|
41
41
|
expect(subject.exhibit.blacklight_configuration.index_fields['foo_tesim']['label']).to eq 'edited'
|
42
42
|
end
|
43
43
|
end
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe
|
47
|
+
describe '#field' do
|
48
48
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
49
|
-
it
|
50
|
-
subject.configuration[
|
49
|
+
it 'is auto-generated from the field label' do
|
50
|
+
subject.configuration['label'] = 'xyz'
|
51
51
|
subject.exhibit = exhibit
|
52
52
|
subject.save
|
53
53
|
|
54
54
|
expect(subject.field).to eq "exhibit_#{exhibit.to_param}_xyz_tesim"
|
55
55
|
end
|
56
56
|
|
57
|
-
it
|
58
|
-
allow(Spotlight::Engine.config.solr_fields).to receive(:prefix).and_return
|
59
|
-
subject.configuration[
|
57
|
+
it 'uses the solr field prefix' do
|
58
|
+
allow(Spotlight::Engine.config.solr_fields).to receive(:prefix).and_return 'prefix_'
|
59
|
+
subject.configuration['label'] = 'xyz'
|
60
60
|
subject.exhibit = exhibit
|
61
61
|
subject.save
|
62
62
|
|
@@ -67,90 +67,89 @@ describe Spotlight::CustomField, :type => :model do
|
|
67
67
|
describe '#configured_to_display?' do
|
68
68
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
69
69
|
before do
|
70
|
-
exhibit.blacklight_configuration.blacklight_config.view = {view_name: {}}
|
70
|
+
exhibit.blacklight_configuration.blacklight_config.view = { view_name: {} }
|
71
71
|
subject.exhibit = exhibit
|
72
|
-
subject.label =
|
72
|
+
subject.label = 'Label'
|
73
73
|
subject.field = 'foo_tesim'
|
74
74
|
end
|
75
|
-
it '
|
75
|
+
it 'is truthy when a view has been configured true' do
|
76
76
|
exhibit.blacklight_configuration.blacklight_config.index_fields['foo_tesim'] =
|
77
|
-
Blacklight::Configuration::IndexField.new(label:
|
77
|
+
Blacklight::Configuration::IndexField.new(label: 'Label', enabled: true, view_name: true)
|
78
78
|
subject.save
|
79
79
|
|
80
80
|
expect(subject).to be_configured_to_display
|
81
81
|
end
|
82
|
-
it '
|
82
|
+
it 'is truthey for show views when enabled' do
|
83
83
|
exhibit.blacklight_configuration.blacklight_config.index_fields['foo_tesim'] =
|
84
|
-
Blacklight::Configuration::IndexField.new(label:
|
84
|
+
Blacklight::Configuration::IndexField.new(label: 'Label', enabled: true, show: true)
|
85
85
|
subject.save
|
86
86
|
|
87
87
|
expect(subject).to be_configured_to_display
|
88
88
|
end
|
89
|
-
it '
|
89
|
+
it 'is falsey when a few has not been configured true' do
|
90
90
|
exhibit.blacklight_configuration.blacklight_config.index_fields['foo_tesim'] =
|
91
|
-
Blacklight::Configuration::IndexField.new(label:
|
91
|
+
Blacklight::Configuration::IndexField.new(label: 'Label', enabled: true, view_name: false)
|
92
92
|
subject.save
|
93
93
|
|
94
94
|
expect(subject).to_not be_configured_to_display
|
95
95
|
end
|
96
|
-
it '
|
97
|
-
exhibit.blacklight_configuration.index_fields['foo_tesim'] = { 'label' =>
|
96
|
+
it 'is falsey when the field is not enabled' do
|
97
|
+
exhibit.blacklight_configuration.index_fields['foo_tesim'] = { 'label' => 'overridden', enabled: false, view_name: false }
|
98
98
|
subject.save
|
99
99
|
|
100
100
|
expect(subject).to_not be_configured_to_display
|
101
101
|
end
|
102
102
|
end
|
103
103
|
|
104
|
-
describe
|
105
|
-
let(:exhibit) { double(to_param:
|
104
|
+
describe '#field_name' do
|
105
|
+
let(:exhibit) { double(to_param: 'a') }
|
106
106
|
|
107
107
|
before do
|
108
|
-
subject.label =
|
108
|
+
subject.label = 'xyz'
|
109
109
|
end
|
110
110
|
|
111
|
-
it
|
112
|
-
subject.field_type =
|
111
|
+
it 'ends in the text suffix if it is a text field' do
|
112
|
+
subject.field_type = 'text'
|
113
113
|
expect(subject.send(:field_name)).to end_with Spotlight::Engine.config.solr_fields.text_suffix
|
114
114
|
end
|
115
115
|
|
116
|
-
it
|
117
|
-
subject.field_type =
|
116
|
+
it 'ends in a string suffix if it is a vocab field' do
|
117
|
+
subject.field_type = 'vocab'
|
118
118
|
expect(subject.send(:field_name)).to end_with Spotlight::Engine.config.solr_fields.string_suffix
|
119
119
|
end
|
120
120
|
end
|
121
121
|
|
122
|
-
describe
|
122
|
+
describe 'changing the field type' do
|
123
123
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
124
124
|
before do
|
125
|
-
subject.label =
|
125
|
+
subject.label = 'xyz'
|
126
126
|
subject.exhibit = exhibit
|
127
127
|
subject.save!
|
128
128
|
end
|
129
129
|
|
130
|
-
it
|
131
|
-
expect(subject.field).to end_with
|
132
|
-
subject.field_type =
|
130
|
+
it 'changes the field name for the field' do
|
131
|
+
expect(subject.field).to end_with 'tesim'
|
132
|
+
subject.field_type = 'vocab'
|
133
133
|
subject.save
|
134
|
-
expect(subject.field).to end_with
|
134
|
+
expect(subject.field).to end_with 'ssim'
|
135
135
|
end
|
136
136
|
|
137
|
-
it
|
137
|
+
it 'copies index field configuration to the new field name' do
|
138
138
|
subject.exhibit.blacklight_configuration.index_fields_will_change!
|
139
139
|
subject.exhibit.blacklight_configuration.index_fields[subject.field] = { value: true }
|
140
140
|
subject.exhibit.blacklight_configuration.save
|
141
141
|
expect(subject.exhibit.blacklight_configuration.index_fields).to have_key subject.field
|
142
142
|
|
143
|
-
subject.field_type =
|
143
|
+
subject.field_type = 'vocab'
|
144
144
|
subject.save
|
145
145
|
expect(subject.exhibit.blacklight_configuration.index_fields).to have_key subject.field
|
146
146
|
expect(subject.exhibit.blacklight_configuration.index_fields[subject.field]).to include value: true
|
147
147
|
end
|
148
|
-
|
149
|
-
it
|
150
|
-
expect(Spotlight::RenameSidecarFieldJob).to receive(:perform_later).with(exhibit, subject.field, subject.field.sub(
|
151
|
-
subject.field_type =
|
148
|
+
|
149
|
+
it 'queues a job to reindex any documents with data in the old field' do
|
150
|
+
expect(Spotlight::RenameSidecarFieldJob).to receive(:perform_later).with(exhibit, subject.field, subject.field.sub('tesim', 'ssim'))
|
151
|
+
subject.field_type = 'vocab'
|
152
152
|
subject.save
|
153
153
|
end
|
154
154
|
end
|
155
|
-
|
156
155
|
end
|
@@ -1,170 +1,212 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::Exhibit, :
|
4
|
-
subject {
|
3
|
+
describe Spotlight::Exhibit, type: :model do
|
4
|
+
subject { FactoryGirl.build(:exhibit, title: 'Sample') }
|
5
5
|
|
6
|
-
it
|
7
|
-
subject.title =
|
8
|
-
expect(subject.title).to eq
|
6
|
+
it 'has a title' do
|
7
|
+
subject.title = 'Test title'
|
8
|
+
expect(subject.title).to eq 'Test title'
|
9
9
|
end
|
10
10
|
|
11
|
-
it
|
12
|
-
subject.subtitle =
|
13
|
-
expect(subject.subtitle).to eq
|
11
|
+
it 'has a subtitle' do
|
12
|
+
subject.subtitle = 'Test subtitle'
|
13
|
+
expect(subject.subtitle).to eq 'Test subtitle'
|
14
14
|
end
|
15
15
|
|
16
|
-
it
|
17
|
-
subject.description =
|
16
|
+
it 'has a description that strips html tags' do
|
17
|
+
subject.description = 'Test <b>description</b>'
|
18
18
|
subject.save!
|
19
|
-
expect(subject.description).to eq
|
19
|
+
expect(subject.description).to eq 'Test description'
|
20
20
|
end
|
21
|
-
describe
|
21
|
+
describe 'contact_emails' do
|
22
22
|
before do
|
23
|
-
subject.contact_emails_attributes= [
|
23
|
+
subject.contact_emails_attributes = [{ 'email' => 'chris@example.com' }, { 'email' => 'jesse@stanford.edu' }]
|
24
24
|
end
|
25
|
-
it
|
25
|
+
it 'accepts nested contact_emails' do
|
26
26
|
expect(subject.contact_emails.size).to eq 2
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
it
|
31
|
-
expect(subject.to_s).to eq
|
32
|
-
subject.title =
|
33
|
-
expect(subject.to_s).to eq
|
30
|
+
it 'has a #to_s' do
|
31
|
+
expect(subject.to_s).to eq 'Sample'
|
32
|
+
subject.title = 'New Title'
|
33
|
+
expect(subject.to_s).to eq 'New Title'
|
34
34
|
end
|
35
35
|
|
36
|
-
describe
|
37
|
-
before { subject.save!
|
36
|
+
describe 'that is saved' do
|
37
|
+
before { subject.save! }
|
38
38
|
|
39
|
-
it
|
39
|
+
it 'has a configuration' do
|
40
40
|
expect(subject.blacklight_configuration).to be_kind_of Spotlight::BlacklightConfiguration
|
41
41
|
end
|
42
42
|
|
43
|
-
it
|
43
|
+
it 'has an unpublished search' do
|
44
44
|
expect(subject.searches).to have(1).search
|
45
45
|
expect(subject.searches.published).to be_empty
|
46
46
|
expect(subject.searches.first.query_params).to be_empty
|
47
47
|
end
|
48
|
-
|
49
48
|
end
|
50
49
|
|
51
|
-
describe
|
52
|
-
subject {
|
53
|
-
it
|
50
|
+
describe '#main_navigations' do
|
51
|
+
subject { FactoryGirl.create(:exhibit, title: 'Sample') }
|
52
|
+
it 'has main navigations' do
|
54
53
|
expect(subject.main_navigations).to have(3).main_navigations
|
55
54
|
expect(subject.main_navigations.map(&:label).compact).to be_blank
|
56
55
|
expect(subject.main_navigations.map(&:weight)).to eq [0, 1, 2]
|
57
56
|
end
|
58
|
-
it "
|
59
|
-
expect(Spotlight::Engine.config).to receive(:exhibit_main_navigation).and_return([:a
|
57
|
+
it "uses the engine's configuration for default navigations" do
|
58
|
+
expect(Spotlight::Engine.config).to receive(:exhibit_main_navigation).and_return([:a, :b])
|
60
59
|
expect(subject.main_navigations).to have(2).main_navigations
|
61
|
-
expect(subject.main_navigations.map(&:nav_type).compact).to match_array
|
60
|
+
expect(subject.main_navigations.map(&:nav_type).compact).to match_array %w(a b)
|
62
61
|
end
|
63
62
|
end
|
64
63
|
|
65
|
-
describe
|
64
|
+
describe 'contacts' do
|
66
65
|
before do
|
67
|
-
subject.contacts_attributes= [
|
68
|
-
{
|
69
|
-
{
|
66
|
+
subject.contacts_attributes = [
|
67
|
+
{ 'show_in_sidebar' => '0', 'name' => 'Justin Coyne', 'contact_info' => { 'email' => 'jcoyne@justincoyne.com', 'title' => '', 'location' => 'US' } },
|
68
|
+
{ 'show_in_sidebar' => '0', 'name' => '', 'contact_info' => { 'email' => '', 'title' => 'Librarian', 'location' => '' } }]
|
70
69
|
end
|
71
|
-
it
|
70
|
+
it 'accepts nested contacts' do
|
72
71
|
expect(subject.contacts.size).to eq 2
|
73
72
|
end
|
74
73
|
end
|
75
74
|
|
76
|
-
describe
|
77
|
-
it
|
75
|
+
describe 'import' do
|
76
|
+
it 'removes the default browse category' do
|
78
77
|
subject.save
|
79
|
-
expect { subject.import({}) }.to change {subject.searches.count}.by(0)
|
80
|
-
expect { subject.import(
|
78
|
+
expect { subject.import({}) }.to change { subject.searches.count }.by(0)
|
79
|
+
expect { subject.import('searches' => [{ 'title' => 'All Exhibit Items', 'slug' => 'all-exhibit-items' }]) }.to change { subject.searches.count }.by(0)
|
81
80
|
end
|
82
81
|
|
83
|
-
it
|
82
|
+
it 'imports nested attributes from the hash' do
|
84
83
|
subject.save
|
85
84
|
subject.import 'title' => 'xyz'
|
86
85
|
expect(subject.title).to eq 'xyz'
|
87
86
|
end
|
88
87
|
|
89
|
-
it
|
88
|
+
it 'munges taggings so they can be imported easily' do
|
90
89
|
expect do
|
91
|
-
subject.import(
|
90
|
+
subject.import('owned_taggings' => [{ 'taggable_id' => '1', 'taggable_type' => 'SolrDocument', 'context' => 'tags', 'tag' => 'xyz' }])
|
92
91
|
subject.save
|
93
92
|
end.to change { subject.owned_taggings.count }.by(1)
|
94
93
|
tag = subject.owned_taggings.last
|
95
|
-
expect(tag.taggable_id).to eq
|
96
|
-
expect(tag.tag.name).to eq
|
94
|
+
expect(tag.taggable_id).to eq '1'
|
95
|
+
expect(tag.tag.name).to eq 'xyz'
|
96
|
+
end
|
97
|
+
|
98
|
+
describe 'importing with the default attribute' do
|
99
|
+
before do
|
100
|
+
described_class.where(default: true).delete_all
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'imports and sets the exhibit as the default exhibit' do
|
104
|
+
subject.import 'default' => true
|
105
|
+
subject.save
|
106
|
+
|
107
|
+
expect(described_class.default).to eq subject
|
108
|
+
end
|
109
|
+
|
110
|
+
it 'ignores the default flag if a default exhibit exists' do
|
111
|
+
FactoryGirl.create(:exhibit, default: true)
|
112
|
+
expect(described_class.default).to be_persisted
|
113
|
+
|
114
|
+
subject.import 'default' => true
|
115
|
+
subject.save
|
116
|
+
|
117
|
+
expect(described_class.default).not_to eq subject
|
118
|
+
end
|
97
119
|
end
|
98
120
|
end
|
99
121
|
|
100
|
-
describe
|
122
|
+
describe '#blacklight_config' do
|
101
123
|
subject { FactoryGirl.create(:exhibit) }
|
102
124
|
before do
|
103
|
-
subject.blacklight_configuration.index = { timestamp_field:
|
125
|
+
subject.blacklight_configuration.index = { timestamp_field: 'timestamp_field' }
|
104
126
|
subject.save!
|
105
127
|
subject.reload
|
106
128
|
end
|
107
129
|
|
108
|
-
it
|
130
|
+
it 'creates a blacklight_configuration from the database' do
|
109
131
|
expect(subject.blacklight_config.index.timestamp_field).to eq 'timestamp_field'
|
110
132
|
end
|
111
133
|
end
|
112
134
|
|
113
|
-
describe
|
135
|
+
describe '#destroy' do
|
114
136
|
subject { FactoryGirl.create(:exhibit) }
|
115
137
|
let(:default_exhibit) { double }
|
116
|
-
it
|
117
|
-
allow(
|
138
|
+
it 'touches the default exhibit when it is destroyed' do
|
139
|
+
allow(described_class).to receive_messages(default: default_exhibit)
|
118
140
|
expect(default_exhibit).to receive(:touch)
|
119
141
|
subject.destroy
|
120
142
|
end
|
121
143
|
end
|
122
144
|
|
123
|
-
describe
|
145
|
+
describe '#solr_data' do
|
124
146
|
subject { FactoryGirl.create(:exhibit) }
|
125
147
|
|
126
|
-
it
|
148
|
+
it 'provides a solr field with the exhibit slug' do
|
127
149
|
expect(subject.solr_data).to include(:"spotlight_exhibit_slug_#{subject.slug}_bsi" => true)
|
128
150
|
end
|
129
151
|
end
|
130
152
|
|
131
|
-
describe
|
153
|
+
describe '#analytics' do
|
132
154
|
subject { FactoryGirl.create(:exhibit) }
|
133
|
-
let(:ga_data) { OpenStruct.new(pageviews: 123)}
|
155
|
+
let(:ga_data) { OpenStruct.new(pageviews: 123) }
|
134
156
|
|
135
157
|
before do
|
136
158
|
allow(Spotlight::Analytics::Ga).to receive(:enabled?).and_return(true)
|
137
159
|
allow(Spotlight::Analytics::Ga).to receive(:exhibit_data).with(subject, hash_including(:start_date)).and_return(ga_data)
|
138
160
|
end
|
139
161
|
|
140
|
-
it
|
162
|
+
it 'requests analytics data' do
|
141
163
|
expect(subject.analytics.pageviews).to eq 123
|
142
164
|
end
|
143
165
|
end
|
144
166
|
|
145
|
-
describe
|
167
|
+
describe '#page_analytics' do
|
146
168
|
subject { FactoryGirl.create(:exhibit) }
|
147
|
-
let(:ga_data) { [OpenStruct.new(pageviews: 123)]}
|
169
|
+
let(:ga_data) { [OpenStruct.new(pageviews: 123)] }
|
148
170
|
|
149
171
|
before do
|
150
172
|
allow(Spotlight::Analytics::Ga).to receive(:enabled?).and_return(true)
|
151
173
|
allow(Spotlight::Analytics::Ga).to receive(:page_data).with(subject, hash_including(:start_date)).and_return(ga_data)
|
152
174
|
end
|
153
175
|
|
154
|
-
it
|
176
|
+
it 'requests analytics data' do
|
155
177
|
expect(subject.page_analytics.length).to eq 1
|
156
178
|
expect(subject.page_analytics.first.pageviews).to eq 123
|
157
179
|
end
|
158
180
|
end
|
159
181
|
|
160
|
-
describe
|
182
|
+
describe '#reindex_later' do
|
161
183
|
subject { FactoryGirl.create(:exhibit) }
|
162
184
|
|
163
|
-
it
|
185
|
+
it 'queues a reindex job for the exhibit' do
|
164
186
|
expect(Spotlight::ReindexJob).to receive(:perform_later).with(subject)
|
165
187
|
subject.reindex_later
|
166
188
|
end
|
167
|
-
|
168
189
|
end
|
169
190
|
|
191
|
+
describe '.default?' do
|
192
|
+
context 'without a default exhibit' do
|
193
|
+
before do
|
194
|
+
described_class.where(default: true).delete_all
|
195
|
+
end
|
196
|
+
|
197
|
+
it 'is false' do
|
198
|
+
expect(described_class.default?).to eq false
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
context 'with a default exhibit' do
|
203
|
+
before do
|
204
|
+
described_class.default
|
205
|
+
end
|
206
|
+
|
207
|
+
it 'is true' do
|
208
|
+
expect(described_class.default?).to eq true
|
209
|
+
end
|
210
|
+
end
|
211
|
+
end
|
170
212
|
end
|