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,13 +1,13 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::BrowseHelper, :
|
4
|
-
it
|
5
|
-
allow(helper).to receive_messages(blacklight_config: double(view: {:
|
3
|
+
describe Spotlight::BrowseHelper, type: :helper do
|
4
|
+
it 'defaults to the gallery' do
|
5
|
+
allow(helper).to receive_messages(blacklight_config: double(view: { gallery: true }))
|
6
6
|
expect(helper.default_document_index_view_type).to eq :gallery
|
7
7
|
end
|
8
|
-
|
9
|
-
it "
|
10
|
-
allow(helper).to receive_messages(blacklight_config: double(view: { :
|
8
|
+
|
9
|
+
it "uses the blacklight default if gallery isn't available" do
|
10
|
+
allow(helper).to receive_messages(blacklight_config: double(view: { list: true }))
|
11
11
|
expect(helper.default_document_index_view_type).to eq :list
|
12
12
|
end
|
13
13
|
end
|
@@ -1,126 +1,132 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
module Spotlight
|
4
|
-
describe CrudLinkHelpers, :
|
4
|
+
describe CrudLinkHelpers, type: :helper do
|
5
5
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
6
6
|
let(:some_model) { Spotlight::FeaturePage.create! exhibit: exhibit }
|
7
|
-
describe
|
8
|
-
|
9
|
-
|
10
|
-
expect(helper
|
11
|
-
expect(helper.cancel_link(:my_model, "#")).to have_link "Cancel", href: "#"
|
7
|
+
describe '#cancel_link' do
|
8
|
+
it 'is a model-specific cancel link' do
|
9
|
+
expect(helper).to receive(:action_default_value).with(:my_model, :cancel).and_return 'Cancel'
|
10
|
+
expect(helper.cancel_link(:my_model, '#')).to have_link 'Cancel', href: '#'
|
12
11
|
end
|
13
12
|
end
|
14
13
|
|
15
|
-
describe
|
14
|
+
describe '#exhibit_view_link' do
|
16
15
|
before do
|
17
|
-
allow(helper).to receive_messages action_default_value:
|
16
|
+
allow(helper).to receive_messages action_default_value: 'View'
|
18
17
|
end
|
19
18
|
|
20
|
-
it
|
21
|
-
expect(helper).to receive(:action_default_value).with(some_model, :view).and_return
|
22
|
-
expect(helper.exhibit_view_link(some_model)).to have_link
|
19
|
+
it 'is a model-specific view link' do
|
20
|
+
expect(helper).to receive(:action_default_value).with(some_model, :view).and_return 'View'
|
21
|
+
expect(helper.exhibit_view_link(some_model)).to have_link 'View', href: spotlight.exhibit_feature_page_path(some_model.exhibit, some_model)
|
23
22
|
end
|
24
23
|
|
25
|
-
it
|
26
|
-
expect(helper.exhibit_view_link(some_model, '#')).to have_link
|
24
|
+
it 'accepts an explicit link' do
|
25
|
+
expect(helper.exhibit_view_link(some_model, '#')).to have_link 'View', href: '#'
|
27
26
|
end
|
28
27
|
|
29
|
-
it
|
28
|
+
it 'accepts link_to options' do
|
30
29
|
expect(helper.exhibit_view_link(some_model, '#', class: 'btn')).to have_selector 'a.btn'
|
31
30
|
end
|
32
31
|
end
|
33
32
|
|
34
|
-
describe
|
33
|
+
describe '#exhibit_create_link' do
|
35
34
|
let(:some_model) { Spotlight::FeaturePage.new }
|
36
35
|
before do
|
37
36
|
allow(helper).to receive_messages(current_exhibit: exhibit)
|
38
|
-
allow(helper).to receive_messages action_default_value:
|
37
|
+
allow(helper).to receive_messages action_default_value: 'Create'
|
39
38
|
end
|
40
39
|
|
41
|
-
it
|
42
|
-
expect(helper).to receive(:action_default_value).with(some_model).and_return
|
43
|
-
expect(helper.exhibit_create_link(some_model)).to have_link
|
40
|
+
it 'is a model-specific view link' do
|
41
|
+
expect(helper).to receive(:action_default_value).with(some_model).and_return 'Create'
|
42
|
+
expect(helper.exhibit_create_link(some_model)).to have_link 'Create', href: spotlight.new_exhibit_feature_page_path(exhibit)
|
44
43
|
end
|
45
44
|
|
46
|
-
it
|
47
|
-
expect(helper.exhibit_create_link(some_model, '#')).to have_link
|
45
|
+
it 'accepts an explicit link' do
|
46
|
+
expect(helper.exhibit_create_link(some_model, '#')).to have_link 'Create', href: '#'
|
48
47
|
end
|
49
48
|
|
50
|
-
it
|
49
|
+
it 'accepts link_to options' do
|
51
50
|
expect(helper.exhibit_create_link(some_model, '#', class: 'btn')).to have_selector 'a.btn'
|
52
51
|
end
|
53
52
|
end
|
54
53
|
|
55
|
-
describe
|
54
|
+
describe '#exhibit_edit_link' do
|
56
55
|
let(:some_model) { Spotlight::FeaturePage.create! exhibit: exhibit }
|
57
56
|
before do
|
58
57
|
allow(helper).to receive_messages(current_exhibit: exhibit)
|
59
|
-
allow(helper).to receive_messages action_default_value:
|
58
|
+
allow(helper).to receive_messages action_default_value: 'Edit'
|
60
59
|
end
|
61
60
|
|
62
|
-
it
|
63
|
-
expect(helper).to receive(:action_default_value).with(some_model).and_return
|
64
|
-
expect(helper.exhibit_edit_link(some_model)).to have_link
|
61
|
+
it 'is a model-specific edit link' do
|
62
|
+
expect(helper).to receive(:action_default_value).with(some_model).and_return 'Edit'
|
63
|
+
expect(helper.exhibit_edit_link(some_model)).to have_link 'Edit', href: spotlight.edit_exhibit_feature_page_path(exhibit, some_model)
|
65
64
|
end
|
66
65
|
|
67
|
-
it
|
68
|
-
expect(helper.exhibit_edit_link(some_model, '#')).to have_link
|
66
|
+
it 'accepts an explicit link' do
|
67
|
+
expect(helper.exhibit_edit_link(some_model, '#')).to have_link 'Edit', href: '#'
|
69
68
|
end
|
70
69
|
|
71
|
-
it
|
70
|
+
it 'accepts link_to options' do
|
72
71
|
expect(helper.exhibit_edit_link(some_model, '#', class: 'btn')).to have_selector 'a.btn'
|
73
72
|
end
|
74
73
|
end
|
75
74
|
|
76
|
-
describe
|
75
|
+
describe '#exhibit_delete_link' do
|
77
76
|
before do
|
78
|
-
allow(helper).to receive_messages action_default_value:
|
77
|
+
allow(helper).to receive_messages action_default_value: 'Delete'
|
79
78
|
end
|
80
79
|
|
81
|
-
it
|
82
|
-
expect(helper).to receive(:action_default_value).with(some_model, :destroy).and_return
|
83
|
-
expect(helper.exhibit_delete_link(some_model)).to have_link
|
80
|
+
it 'is a model-specific view link' do
|
81
|
+
expect(helper).to receive(:action_default_value).with(some_model, :destroy).and_return 'Delete'
|
82
|
+
expect(helper.exhibit_delete_link(some_model)).to have_link 'Delete', href: spotlight.exhibit_feature_page_path(some_model.exhibit, some_model)
|
84
83
|
end
|
85
84
|
|
86
|
-
it
|
87
|
-
expect(helper.exhibit_delete_link(some_model, '#')).to have_link
|
85
|
+
it 'accepts an explicit link' do
|
86
|
+
expect(helper.exhibit_delete_link(some_model, '#')).to have_link 'Delete', href: '#'
|
88
87
|
end
|
89
88
|
|
90
|
-
it
|
89
|
+
it 'accepts link_to options' do
|
91
90
|
expect(helper.exhibit_delete_link(some_model, '#', class: 'btn')).to have_selector 'a.btn'
|
92
91
|
end
|
93
92
|
end
|
94
93
|
|
95
|
-
describe
|
96
|
-
it
|
94
|
+
describe '#action_label' do
|
95
|
+
it 'returns the label for an action on a model' do
|
97
96
|
some_model = double
|
98
|
-
expect(helper).to receive(:action_default_value).with(some_model, :action).and_return
|
99
|
-
expect(helper.action_label(some_model, :action)).to eq
|
97
|
+
expect(helper).to receive(:action_default_value).with(some_model, :action).and_return 'xyz'
|
98
|
+
expect(helper.action_label(some_model, :action)).to eq 'xyz'
|
100
99
|
end
|
101
100
|
end
|
102
101
|
|
103
|
-
describe
|
104
|
-
it
|
105
|
-
expect(I18n).to receive(:t).with(:'helpers.action.spotlight/feature_page.edit',
|
102
|
+
describe '#action_default_value' do
|
103
|
+
it 'attempts i18n lookups for models' do
|
104
|
+
expect(I18n).to receive(:t).with(:'helpers.action.spotlight/feature_page.edit',
|
105
|
+
model: some_model.class.model_name.human,
|
106
|
+
default: [:'helpers.action.edit', 'Edit Feature page'])
|
106
107
|
expect(helper.send(:action_default_value, some_model))
|
107
108
|
end
|
108
109
|
|
109
|
-
it
|
110
|
+
it 'attempts i18n lookups for unpersisted models' do
|
110
111
|
some_model = Spotlight::FeaturePage.new
|
111
|
-
expect(I18n).to receive(:t).with(:'helpers.action.spotlight/feature_page.create',
|
112
|
+
expect(I18n).to receive(:t).with(:'helpers.action.spotlight/feature_page.create',
|
113
|
+
model: some_model.class.model_name.human,
|
114
|
+
default: [:'helpers.action.create', 'Create Feature page'])
|
112
115
|
expect(helper.send(:action_default_value, some_model))
|
113
116
|
end
|
114
117
|
|
115
|
-
it
|
116
|
-
expect(I18n).to receive(:t).with(:'helpers.action.spotlight/feature_page.custom_action',
|
118
|
+
it 'attempts i18n lookups for models with an explicit action' do
|
119
|
+
expect(I18n).to receive(:t).with(:'helpers.action.spotlight/feature_page.custom_action',
|
120
|
+
model: some_model.class.model_name.human,
|
121
|
+
default: [:'helpers.action.custom_action', 'Custom action Feature page'])
|
117
122
|
expect(helper.send(:action_default_value, some_model, :custom_action))
|
118
123
|
end
|
119
124
|
|
120
|
-
it
|
121
|
-
expect(I18n).to receive(:t).with(:'helpers.action.my_thing.custom_action',
|
125
|
+
it 'attempts i18n lookups for symbols' do
|
126
|
+
expect(I18n).to receive(:t).with(:'helpers.action.my_thing.custom_action',
|
127
|
+
model: :my_thing,
|
128
|
+
default: [:'helpers.action.custom_action', 'Custom action my_thing'])
|
122
129
|
expect(helper.send(:action_default_value, :my_thing, :custom_action))
|
123
|
-
|
124
130
|
end
|
125
131
|
end
|
126
132
|
end
|
@@ -1,30 +1,36 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::MainAppHelpers, :
|
4
|
-
|
5
|
-
describe "#show_contact_form?" do
|
3
|
+
describe Spotlight::MainAppHelpers, type: :helper do
|
4
|
+
describe '#show_contact_form?' do
|
6
5
|
subject { helper }
|
7
6
|
let(:exhibit) { FactoryGirl.create :exhibit }
|
8
7
|
let(:exhibit_with_contacts) { FactoryGirl.create :exhibit }
|
9
|
-
context
|
10
|
-
before
|
8
|
+
context 'with an exhibit with confirmed contacts' do
|
9
|
+
before do
|
10
|
+
exhibit_with_contacts.contact_emails.create(email: 'cabeer@stanford.edu').tap do |e|
|
11
|
+
if e.respond_to? :confirm
|
12
|
+
e.confirm
|
13
|
+
else
|
14
|
+
e.confirm!
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
11
18
|
before { allow(helper).to receive_messages current_exhibit: exhibit_with_contacts }
|
12
19
|
its(:show_contact_form?) { should be_truthy }
|
13
20
|
end
|
14
21
|
|
15
|
-
context
|
22
|
+
context 'with an exhibit with only unconfirmed contacts' do
|
16
23
|
before { exhibit_with_contacts.contact_emails.build email: 'cabeer@stanford.edu' }
|
17
24
|
before { allow(helper).to receive_messages current_exhibit: exhibit_with_contacts }
|
18
25
|
its(:show_contact_form?) { should be_falsey }
|
19
26
|
end
|
20
|
-
|
21
|
-
|
22
|
-
context "with an exhibit without contacts" do
|
27
|
+
|
28
|
+
context 'with an exhibit without contacts' do
|
23
29
|
before { allow(helper).to receive_messages current_exhibit: exhibit }
|
24
30
|
its(:show_contact_form?) { should be_falsey }
|
25
31
|
end
|
26
|
-
|
27
|
-
context
|
32
|
+
|
33
|
+
context 'outside the context of an exhibit' do
|
28
34
|
before { allow(helper).to receive_messages current_exhibit: nil }
|
29
35
|
its(:show_contact_form?) { should be_falsey }
|
30
36
|
end
|
@@ -38,23 +44,38 @@ describe Spotlight::MainAppHelpers, :type => :helper do
|
|
38
44
|
allow(helper).to receive(:controller).and_return(controller)
|
39
45
|
allow(helper).to receive(:document_index_view_type).and_return(nil)
|
40
46
|
allow(field).to receive(:enabled).and_return(true)
|
41
|
-
allow(field).to receive(:show).and_return(:value)
|
42
47
|
end
|
43
|
-
|
44
|
-
|
48
|
+
context 'for sort fields' do
|
49
|
+
let(:field) { Blacklight::Configuration::SortField.new enabled: true }
|
50
|
+
it 'uses the enabled property for sort fields' do
|
51
|
+
expect(helper.field_enabled?(field)).to eq true
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
context 'for search fields' do
|
56
|
+
let(:field) { Blacklight::Configuration::SearchField.new enabled: true }
|
57
|
+
it 'uses the enabled property for search fields' do
|
58
|
+
expect(helper.field_enabled?(field)).to eq true
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
it 'returns the value of field#show if the action_name is "show"' do
|
63
|
+
allow(field).to receive(:show).and_return(:value)
|
64
|
+
allow(helper).to receive(:action_name).and_return('show')
|
45
65
|
expect(helper.field_enabled?(field)).to eq :value
|
46
66
|
end
|
47
|
-
it '
|
48
|
-
allow(
|
67
|
+
it 'returns the value of field#show if the action_name is "edit"' do
|
68
|
+
allow(field).to receive(:show).and_return(:value)
|
69
|
+
allow(helper).to receive(:action_name).and_return('edit')
|
49
70
|
expect(helper.field_enabled?(field)).to eq :value
|
50
71
|
end
|
51
|
-
it
|
72
|
+
it 'returns the value of the original if condition' do
|
52
73
|
allow(field).to receive(:upstream_if).and_return false
|
53
|
-
expect(helper.field_enabled?(field)).to eq false
|
74
|
+
expect(helper.field_enabled?(field)).to eq false
|
54
75
|
end
|
55
76
|
end
|
56
77
|
|
57
|
-
describe
|
78
|
+
describe '#enabled_in_spotlight_view_type_configuration?' do
|
58
79
|
let(:controller) { OpenStruct.new }
|
59
80
|
let(:view) { OpenStruct.new }
|
60
81
|
before do
|
@@ -62,21 +83,20 @@ describe Spotlight::MainAppHelpers, :type => :helper do
|
|
62
83
|
allow(helper).to receive(:controller).and_return(controller)
|
63
84
|
end
|
64
85
|
|
65
|
-
it
|
86
|
+
it 'respects the original if condition' do
|
66
87
|
view.upstream_if = false
|
67
88
|
expect(helper.enabled_in_spotlight_view_type_configuration?(view)).to eq false
|
68
89
|
end
|
69
90
|
|
70
|
-
it
|
91
|
+
it 'is true if there is no exhibit context' do
|
71
92
|
allow(helper).to receive(:current_exhibit).and_return(nil)
|
72
93
|
expect(helper.enabled_in_spotlight_view_type_configuration?(view)).to eq true
|
73
94
|
end
|
74
|
-
|
75
|
-
it "
|
95
|
+
|
96
|
+
it "is true if we're in a page context" do
|
76
97
|
allow(helper).to receive(:current_exhibit).and_return(nil)
|
77
98
|
allow(controller).to receive(:is_a?).with(Spotlight::PagesController).and_return(true)
|
78
99
|
expect(helper.enabled_in_spotlight_view_type_configuration?(view)).to eq true
|
79
100
|
end
|
80
101
|
end
|
81
|
-
|
82
102
|
end
|
@@ -1,20 +1,20 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
module Spotlight
|
4
|
-
describe NavbarHelper, :
|
4
|
+
describe NavbarHelper, type: :helper do
|
5
5
|
describe '#should_render_search_bar?' do
|
6
6
|
before do
|
7
7
|
allow(helper).to receive_messages(current_exhibit: nil)
|
8
8
|
allow(helper).to receive_messages(exhibit_masthead?: true)
|
9
9
|
end
|
10
|
-
it '
|
10
|
+
it 'returns true when there is no exhibit context' do
|
11
11
|
expect(helper.should_render_spotlight_search_bar?).to be_truthy
|
12
12
|
end
|
13
|
-
it '
|
13
|
+
it 'returns true if searchable' do
|
14
14
|
allow(helper).to receive_messages(current_exhibit: double(searchable?: true))
|
15
15
|
expect(helper.should_render_spotlight_search_bar?).to be_truthy
|
16
16
|
end
|
17
|
-
it '
|
17
|
+
it 'returns false if currently under an "Exhibity" browse category' do
|
18
18
|
allow(helper).to receive_messages(exhibit_masthead?: false)
|
19
19
|
expect(helper.should_render_spotlight_search_bar?).to be_falsey
|
20
20
|
end
|
@@ -1,77 +1,96 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
module Spotlight
|
4
|
-
describe PagesHelper, :
|
4
|
+
describe PagesHelper, type: :helper do
|
5
5
|
let(:blacklight_config) { Blacklight::Configuration.new { |config| config.show.title_field = :abc } }
|
6
|
-
let(:titled_document)
|
7
|
-
let(:untitled_document) { ::SolrDocument.new(
|
6
|
+
let(:titled_document) { ::SolrDocument.new(abc: 'value') }
|
7
|
+
let(:untitled_document) { ::SolrDocument.new(id: '1234') }
|
8
8
|
let!(:current_exhibit) { FactoryGirl.create(:exhibit) }
|
9
9
|
let!(:home_page) { current_exhibit.home_page }
|
10
|
-
let!(:search) { FactoryGirl.create(:search, exhibit: current_exhibit, query_params: {
|
10
|
+
let!(:search) { FactoryGirl.create(:search, exhibit: current_exhibit, query_params: { 'q' => 'query' }, published: true) }
|
11
11
|
|
12
12
|
before(:each) do
|
13
|
-
allow(helper).to receive_messages(:
|
13
|
+
allow(helper).to receive_messages(blacklight_config: blacklight_config)
|
14
14
|
end
|
15
15
|
|
16
|
-
describe
|
17
|
-
|
18
|
-
|
16
|
+
describe 'available_index_fields' do
|
17
|
+
before do
|
18
|
+
blacklight_config.index.title_field = :title_field
|
19
|
+
blacklight_config.add_index_field 'x', label: 'X'
|
19
20
|
end
|
20
|
-
|
21
|
-
|
21
|
+
|
22
|
+
it 'lists the configured index fields' do
|
23
|
+
expect(helper.available_index_fields).to include key: 'x', label: 'X'
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'adds the title field if necessary' do
|
27
|
+
expect(helper.available_index_fields).to include key: :title_field, label: 'Title'
|
22
28
|
end
|
23
29
|
end
|
24
|
-
|
25
|
-
|
26
|
-
|
30
|
+
|
31
|
+
describe 'disable_save_pages_button?' do
|
32
|
+
it 'returns true if there are no pages and we are on the about pages page' do
|
33
|
+
expect(helper).to receive(:page_collection_name).and_return('about_pages')
|
27
34
|
assign(:pages, [])
|
28
35
|
expect(helper.disable_save_pages_button?).to be_truthy
|
29
36
|
end
|
30
|
-
it
|
31
|
-
expect(helper).to receive(:page_collection_name).and_return(
|
37
|
+
it 'returns false if there are about pages' do
|
38
|
+
expect(helper).to receive(:page_collection_name).and_return('about_pages')
|
32
39
|
assign(:pages, [{}])
|
33
40
|
expect(helper.disable_save_pages_button?).to be_falsey
|
34
41
|
end
|
35
|
-
it
|
36
|
-
expect(helper).to receive(:page_collection_name).and_return(
|
42
|
+
it 'returns false if on the feature pages page' do
|
43
|
+
expect(helper).to receive(:page_collection_name).and_return('feature_pages')
|
37
44
|
assign(:pages, [])
|
38
45
|
expect(helper.disable_save_pages_button?).to be_falsey
|
39
46
|
end
|
40
47
|
end
|
41
|
-
describe
|
42
|
-
let(:good)
|
43
|
-
|
48
|
+
describe 'get_search_widget_search_results' do
|
49
|
+
let(:good) do
|
50
|
+
content = { type: 'xyz', data: { 'item' => { search.slug => { id: search.slug, display: 'true' } } } }
|
51
|
+
SirTrevorRails::Blocks::SearchResultsBlock.new(content, home_page)
|
52
|
+
end
|
53
|
+
|
54
|
+
let(:bad) do
|
55
|
+
content = { type: 'xyz', data: { 'item' => { 'garbage' => { id: 'missing', display: 'true' } } } }
|
56
|
+
SirTrevorRails::Blocks::SearchResultsBlock.new(content, home_page)
|
57
|
+
end
|
58
|
+
|
44
59
|
let(:search_result) { [double('response'), double('documents')] }
|
45
|
-
|
46
|
-
|
47
|
-
|
60
|
+
|
61
|
+
it 'returns the results for a given search browse category' do
|
62
|
+
allow(helper).to receive(:search_params_logic).and_return([])
|
63
|
+
expect(helper).to receive(:search_results).with({ 'q' => 'query' }, []).and_return(search_result)
|
64
|
+
expect(helper.get_search_widget_search_results(good)).to eq search_result
|
48
65
|
end
|
49
|
-
it "
|
50
|
-
expect(helper.get_search_widget_search_results(
|
66
|
+
it "returns an empty array when requesting a search that doesn't exist" do
|
67
|
+
expect(helper.get_search_widget_search_results(bad)).to be_empty
|
51
68
|
end
|
52
69
|
end
|
53
70
|
|
54
71
|
describe 'nestable helpers' do
|
55
72
|
describe 'nestable data attributes' do
|
56
|
-
it '
|
57
|
-
expect(helper.nestable_data_attributes(
|
73
|
+
it 'returns the appropriate attributes for feature pages' do
|
74
|
+
expect(helper.nestable_data_attributes('feature_pages')).to eq "data-max-depth='2' data-expand-btn-HTML='' data-collapse-btn-HTML=''"
|
58
75
|
end
|
59
|
-
it '
|
60
|
-
expect(helper.nestable_data_attributes(
|
76
|
+
it 'returns the appropriate attributes for about pages' do
|
77
|
+
expect(helper.nestable_data_attributes('about_pages')).to eq "data-max-depth='1'"
|
61
78
|
end
|
62
|
-
it '
|
63
|
-
expect(helper.nestable_data_attributes(
|
79
|
+
it 'returns a blank string if the type is not valid' do
|
80
|
+
expect(helper.nestable_data_attributes('something_else')).to eq ''
|
64
81
|
end
|
65
82
|
end
|
66
83
|
describe 'nestable data attributes hash' do
|
67
|
-
it '
|
68
|
-
expect(helper.nestable_data_attributes_hash(
|
84
|
+
it 'returns the appropriate hash for feature pages' do
|
85
|
+
expect(helper.nestable_data_attributes_hash('feature_pages')).to eq "data-max-depth": '2',
|
86
|
+
"data-expand-btn-HTML": '',
|
87
|
+
"data-collapse-btn-HTML": ''
|
69
88
|
end
|
70
|
-
it '
|
71
|
-
expect(helper.nestable_data_attributes_hash(
|
89
|
+
it 'returns the appropriate hash for about pages' do
|
90
|
+
expect(helper.nestable_data_attributes_hash('about_pages')).to eq "data-max-depth": '1'
|
72
91
|
end
|
73
|
-
it '
|
74
|
-
expect(helper.nestable_data_attributes_hash(
|
92
|
+
it 'returns an empty hash if the type is not valid' do
|
93
|
+
expect(helper.nestable_data_attributes_hash('something_else')).to eq({})
|
75
94
|
end
|
76
95
|
end
|
77
96
|
end
|