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
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Spotlight::SolrDocument::AtomicUpdates, type: :model do
|
4
|
+
let(:blacklight_solr) { double }
|
5
|
+
subject do
|
6
|
+
::SolrDocument.new.extend(described_class)
|
7
|
+
end
|
8
|
+
|
9
|
+
before do
|
10
|
+
allow(subject).to receive_messages(blacklight_solr: blacklight_solr)
|
11
|
+
end
|
12
|
+
|
13
|
+
describe '#reindex' do
|
14
|
+
before do
|
15
|
+
allow(subject).to receive_messages(to_solr: { id: 'doc_id', a: 1, b: 2 })
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'sends an atomic update request' do
|
19
|
+
expected = {
|
20
|
+
params: { commitWithin: 500 },
|
21
|
+
data: [{ id: 'doc_id', a: { set: 1 }, b: { set: 2 } }].to_json,
|
22
|
+
headers: { 'Content-Type' => 'application/json' }
|
23
|
+
}
|
24
|
+
expect(blacklight_solr).to receive(:update).with(expected)
|
25
|
+
subject.reindex
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'cowardlies refuse to index a document if the only value is an id' do
|
29
|
+
allow(subject).to receive_messages(to_solr: { id: 'doc_id' })
|
30
|
+
expect(blacklight_solr).not_to receive(:update)
|
31
|
+
subject.reindex
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
data/spec/models/spotlight/{solr_document_images_spec.rb → solr_document/spotlight_images_spec.rb}
RENAMED
@@ -1,27 +1,28 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
3
|
describe Spotlight::SolrDocument::SpotlightImages do
|
4
|
-
|
4
|
+
subject do
|
5
5
|
SolrDocument.new(
|
6
|
-
Spotlight::Engine.config.full_image_field
|
7
|
-
Spotlight::Engine.config.thumbnail_field
|
8
|
-
Spotlight::Engine.config.square_image_field => ['http://lorempixel.com/200/200/']
|
6
|
+
Spotlight::Engine.config.full_image_field => ['http://lorempixel.com/800/500/'],
|
7
|
+
Spotlight::Engine.config.thumbnail_field => ['http://lorempixel.com/400/240/'],
|
8
|
+
Spotlight::Engine.config.square_image_field => ['http://lorempixel.com/200/200/']
|
9
9
|
)
|
10
|
-
|
11
|
-
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'is a Versions class' do
|
12
13
|
expect(subject.spotlight_image_versions).to be_a Spotlight::SolrDocument::SpotlightImages::Versions
|
13
14
|
end
|
14
|
-
it '
|
15
|
+
it 'maps image urls in the document to the appropriate version' do
|
15
16
|
expect(subject.spotlight_image_versions.full).to eq ['http://lorempixel.com/800/500/']
|
16
17
|
expect(subject.spotlight_image_versions.thumb).to eq ['http://lorempixel.com/400/240/']
|
17
18
|
expect(subject.spotlight_image_versions.square).to eq ['http://lorempixel.com/200/200/']
|
18
19
|
end
|
19
|
-
it '
|
20
|
+
it 'includes the version keys in the versions array' do
|
20
21
|
[:full, :thumb, :square].each do |version|
|
21
22
|
expect(subject.spotlight_image_versions.versions).to include version
|
22
23
|
end
|
23
24
|
end
|
24
|
-
it '
|
25
|
+
it 'includes newly configured image versions' do
|
25
26
|
Spotlight::ImageDerivatives.spotlight_image_derivatives << {
|
26
27
|
version: :tiny,
|
27
28
|
field: :new_image_field
|
@@ -32,4 +33,11 @@ describe Spotlight::SolrDocument::SpotlightImages do
|
|
32
33
|
d[:version] == :tiny
|
33
34
|
end
|
34
35
|
end
|
36
|
+
|
37
|
+
it 'gracefully handles missing data' do
|
38
|
+
subject = SolrDocument.new Spotlight::Engine.config.full_image_field => ['http://lorempixel.com/800/500/']
|
39
|
+
expect(subject.spotlight_image_versions.full).to eq ['http://lorempixel.com/800/500/']
|
40
|
+
expect(subject.spotlight_image_versions.thumb).to be_empty
|
41
|
+
expect(subject.spotlight_image_versions.square).to be_empty
|
42
|
+
end
|
35
43
|
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Spotlight::SolrDocument::UploadedResource, type: :model do
|
4
|
+
let(:valid_resource) do
|
5
|
+
::SolrDocument.new(id: '123',
|
6
|
+
full_image_url_ssm: ['http://example.com/png.png'],
|
7
|
+
spotlight_full_image_height_ssm: ['1400'],
|
8
|
+
spotlight_full_image_width_ssm: ['1000'],
|
9
|
+
spotlight_resource_type_ssim: ['spotlight/resources/uploads'])
|
10
|
+
end
|
11
|
+
|
12
|
+
describe 'SolrDocument.use_extension' do
|
13
|
+
it 'does not include the uploaded resource extension when the spotlight resource type is not correct' do
|
14
|
+
expect(::SolrDocument.new(id: '123', spotlight_resource_type_ssim: ['not-correct'])).to_not be_a_kind_of(described_class)
|
15
|
+
end
|
16
|
+
it 'includes the uploaded resource extension when the correct fields are present with the correct data' do
|
17
|
+
expect(valid_resource).to be_a_kind_of(described_class)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
describe 'to_openseadragon' do
|
21
|
+
let(:subject) { valid_resource.to_openseadragon }
|
22
|
+
it 'includes hashes for each full_image_url_ssm' do
|
23
|
+
expect(subject).to be_an Array
|
24
|
+
expect(subject.length).to eq 1
|
25
|
+
expect(subject.first.keys.length).to eq 1
|
26
|
+
end
|
27
|
+
it 'the hashes key should be a LegacyImagePyramidTileSource object' do
|
28
|
+
expect(subject.first.keys.first).to be_a(Spotlight::SolrDocument::UploadedResource::LegacyImagePyramidTileSource)
|
29
|
+
end
|
30
|
+
describe 'LegacyImagePyramidTileSource' do
|
31
|
+
let(:subject) { valid_resource.to_openseadragon.first.keys.first.to_tilesource }
|
32
|
+
it 'is a hash' do
|
33
|
+
expect(subject).to be_a Hash
|
34
|
+
end
|
35
|
+
it 'is a legacy image pyramid type' do
|
36
|
+
expect(subject[:type]).to eq 'legacy-image-pyramid'
|
37
|
+
end
|
38
|
+
describe 'levels' do
|
39
|
+
it 'includes one level' do
|
40
|
+
expect(subject[:levels].length).to eq 1
|
41
|
+
end
|
42
|
+
it 'includes the image url' do
|
43
|
+
expect(subject[:levels].first[:url]).to eq 'http://example.com/png.png'
|
44
|
+
end
|
45
|
+
it 'includes the height and width from the document' do
|
46
|
+
expect(subject[:levels].first[:height]).to eq '1400'
|
47
|
+
expect(subject[:levels].first[:width]).to eq '1000'
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -1,20 +1,19 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::SolrDocumentSidecar, :
|
3
|
+
describe Spotlight::SolrDocumentSidecar, type: :model do
|
4
4
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
5
|
before do
|
6
6
|
allow(subject).to receive_messages exhibit: exhibit
|
7
7
|
allow(subject).to receive_messages document: SolrDocument.new(id: 'doc_id')
|
8
8
|
end
|
9
9
|
|
10
|
-
describe
|
10
|
+
describe '#to_solr' do
|
11
11
|
before do
|
12
|
-
subject.data = {'a_tesim' => 1, 'b_tesim' => 2, 'c_tesim' => 3 }
|
12
|
+
subject.data = { 'a_tesim' => 1, 'b_tesim' => 2, 'c_tesim' => 3 }
|
13
13
|
end
|
14
14
|
|
15
15
|
its(:to_solr) { should include id: 'doc_id' }
|
16
16
|
its(:to_solr) { should include "exhibit_#{exhibit.id}_public_bsi".to_sym => true }
|
17
17
|
its(:to_solr) { should include 'a_tesim', 'b_tesim', 'c_tesim' }
|
18
18
|
end
|
19
|
-
|
20
19
|
end
|
@@ -1,12 +1,12 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
3
|
module Spotlight
|
4
|
-
describe
|
5
|
-
describe
|
4
|
+
describe 'Catalog controller', type: :routing do
|
5
|
+
describe 'routing' do
|
6
6
|
routes { Spotlight::Engine.routes }
|
7
7
|
|
8
|
-
it
|
9
|
-
expect(get(
|
8
|
+
it 'routes to #edit' do
|
9
|
+
expect(get('/1/catalog/dq287tq6352/edit')).to route_to('spotlight/catalog#edit', exhibit_id: '1', id: 'dq287tq6352')
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
@@ -1,45 +1,44 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
3
|
module Spotlight
|
4
|
-
describe
|
5
|
-
describe
|
4
|
+
describe 'FeaturePagesController and AboutPagesController', type: :routing do
|
5
|
+
describe 'routing' do
|
6
6
|
routes { Spotlight::Engine.routes }
|
7
7
|
|
8
|
-
it
|
9
|
-
expect(get(
|
10
|
-
expect(get(
|
8
|
+
it 'routes to #index' do
|
9
|
+
expect(get('/1/feature')).to route_to('spotlight/feature_pages#index', exhibit_id: '1')
|
10
|
+
expect(get('/1/about')).to route_to('spotlight/about_pages#index', exhibit_id: '1')
|
11
11
|
end
|
12
12
|
|
13
|
-
it
|
14
|
-
expect(get(
|
15
|
-
expect(get(
|
13
|
+
it 'routes to #new' do
|
14
|
+
expect(get('/1/feature/new')).to route_to('spotlight/feature_pages#new', exhibit_id: '1')
|
15
|
+
expect(get('/1/about/new')).to route_to('spotlight/about_pages#new', exhibit_id: '1')
|
16
16
|
end
|
17
17
|
|
18
|
-
it
|
19
|
-
expect(get(
|
20
|
-
expect(get(
|
18
|
+
it 'routes to #show' do
|
19
|
+
expect(get('/1/feature/2')).to route_to('spotlight/feature_pages#show', id: '2', exhibit_id: '1')
|
20
|
+
expect(get('/1/about/2')).to route_to('spotlight/about_pages#show', id: '2', exhibit_id: '1')
|
21
21
|
end
|
22
22
|
|
23
|
-
it
|
24
|
-
expect(get(
|
25
|
-
expect(get(
|
23
|
+
it 'routes to #edit' do
|
24
|
+
expect(get('/1/feature/2/edit')).to route_to('spotlight/feature_pages#edit', id: '2', exhibit_id: '1')
|
25
|
+
expect(get('/1/about/2/edit')).to route_to('spotlight/about_pages#edit', id: '2', exhibit_id: '1')
|
26
26
|
end
|
27
27
|
|
28
|
-
it
|
29
|
-
expect(post(
|
30
|
-
expect(post(
|
28
|
+
it 'routes to #create' do
|
29
|
+
expect(post('/1/feature')).to route_to('spotlight/feature_pages#create', exhibit_id: '1')
|
30
|
+
expect(post('/1/about')).to route_to('spotlight/about_pages#create', exhibit_id: '1')
|
31
31
|
end
|
32
32
|
|
33
|
-
it
|
34
|
-
expect(put(
|
35
|
-
expect(put(
|
33
|
+
it 'routes to #update' do
|
34
|
+
expect(put('/1/feature/2')).to route_to('spotlight/feature_pages#update', id: '2', exhibit_id: '1')
|
35
|
+
expect(put('/1/about/2')).to route_to('spotlight/about_pages#update', id: '2', exhibit_id: '1')
|
36
36
|
end
|
37
37
|
|
38
|
-
it
|
39
|
-
expect(delete(
|
40
|
-
expect(delete(
|
38
|
+
it 'routes to #destroy' do
|
39
|
+
expect(delete('/1/feature/2')).to route_to('spotlight/feature_pages#destroy', id: '2', exhibit_id: '1')
|
40
|
+
expect(delete('/1/about/2')).to route_to('spotlight/about_pages#destroy', id: '2', exhibit_id: '1')
|
41
41
|
end
|
42
|
-
|
43
42
|
end
|
44
43
|
end
|
45
44
|
end
|
@@ -3,100 +3,106 @@ require 'spec_helper'
|
|
3
3
|
describe Spotlight::ExhibitExportSerializer do
|
4
4
|
let!(:source_exhibit) { FactoryGirl.create(:exhibit) }
|
5
5
|
|
6
|
-
|
6
|
+
before do
|
7
|
+
allow_any_instance_of(Spotlight::Search).to receive(:set_default_featured_image)
|
8
|
+
allow_any_instance_of(SolrDocument).to receive(:reindex)
|
9
|
+
allow_any_instance_of(Spotlight::Resource).to receive(:reindex)
|
10
|
+
end
|
11
|
+
|
12
|
+
subject { JSON.parse(described_class.new(source_exhibit).to_json) }
|
7
13
|
|
8
|
-
it
|
14
|
+
it 'does not include unique identifiers' do
|
9
15
|
expect(subject).to_not have_key 'id'
|
10
16
|
expect(subject).to_not have_key 'slug'
|
11
17
|
expect(subject).to_not have_key 'name'
|
12
18
|
expect(subject).to_not have_key 'default'
|
13
19
|
end
|
14
20
|
|
15
|
-
it
|
16
|
-
expect(subject[
|
21
|
+
it 'has search attributes' do
|
22
|
+
expect(subject['searches']).to have(source_exhibit.searches.count).searches
|
17
23
|
end
|
18
24
|
|
19
|
-
it
|
20
|
-
expect(subject).to have_key
|
25
|
+
it 'has home page attributes' do
|
26
|
+
expect(subject).to have_key 'home_page'
|
21
27
|
expect(subject['home_page']).to_not have_key 'id'
|
22
28
|
expect(subject['home_page']).to_not have_key 'scope'
|
23
29
|
expect(subject['home_page']).to_not have_key 'exhibit_id'
|
24
30
|
end
|
25
31
|
|
26
|
-
it
|
27
|
-
expect(subject[
|
32
|
+
it 'has about pages' do
|
33
|
+
expect(subject['about_pages']).to have(source_exhibit.about_pages.count).pages
|
28
34
|
end
|
29
35
|
|
30
|
-
it
|
31
|
-
expect(subject[
|
36
|
+
it 'has feature pages' do
|
37
|
+
expect(subject['feature_pages']).to have(source_exhibit.feature_pages.at_top_level.count).pages
|
32
38
|
end
|
33
39
|
|
34
|
-
it
|
35
|
-
expect(subject[
|
40
|
+
it 'has custom fields' do
|
41
|
+
expect(subject['custom_fields']).to have(source_exhibit.custom_fields.count).items
|
36
42
|
end
|
37
43
|
|
38
|
-
it
|
39
|
-
expect(subject[
|
44
|
+
it 'has contacts' do
|
45
|
+
expect(subject['contacts']).to have(source_exhibit.contacts.count).items
|
40
46
|
end
|
41
47
|
|
42
|
-
it
|
43
|
-
expect(subject[
|
48
|
+
it 'has contact emails' do
|
49
|
+
expect(subject['contact_emails']).to have(source_exhibit.contact_emails.count).items
|
44
50
|
end
|
45
51
|
|
46
|
-
it
|
47
|
-
expect(subject).to have_key
|
52
|
+
it 'has blacklight configuration attributes' do
|
53
|
+
expect(subject).to have_key 'blacklight_configuration'
|
48
54
|
end
|
49
55
|
|
50
|
-
it
|
56
|
+
it 'has solr document sidecars' do
|
51
57
|
source_exhibit.solr_document_sidecars.create! document: SolrDocument.new(id: 1), public: false
|
52
|
-
expect(subject[
|
53
|
-
expect(subject[
|
54
|
-
|
55
|
-
expect(subject[
|
56
|
-
expect(subject[
|
58
|
+
expect(subject['solr_document_sidecars']).to have_at_least(1).item
|
59
|
+
expect(subject['solr_document_sidecars']).to have(source_exhibit.solr_document_sidecars.count).items
|
60
|
+
|
61
|
+
expect(subject['solr_document_sidecars'].first).to include('document_id', 'public')
|
62
|
+
expect(subject['solr_document_sidecars'].first).to_not include 'id'
|
57
63
|
end
|
58
64
|
|
59
|
-
it
|
60
|
-
expect(subject[
|
65
|
+
it 'has attachments' do
|
66
|
+
expect(subject['attachments']).to have(source_exhibit.attachments.count).items
|
61
67
|
end
|
62
68
|
|
63
|
-
it
|
64
|
-
expect(subject[
|
69
|
+
it 'has resources' do
|
70
|
+
expect(subject['resources']).to have(source_exhibit.resources.count).items
|
65
71
|
end
|
66
72
|
|
67
|
-
it
|
68
|
-
source_exhibit.tag(SolrDocument.new(id: 1), with:
|
69
|
-
expect(subject[
|
73
|
+
it 'has tags' do
|
74
|
+
source_exhibit.tag(SolrDocument.new(id: 1), with: 'xyz', on: :tags)
|
75
|
+
expect(subject['owned_taggings']).to have(source_exhibit.owned_taggings.count).items
|
70
76
|
end
|
71
77
|
|
72
|
-
describe
|
78
|
+
describe 'should round-trip data' do
|
73
79
|
before do
|
74
80
|
source_exhibit.solr_document_sidecars.create! document: SolrDocument.new(id: 1), public: false
|
75
|
-
source_exhibit.tag(SolrDocument.new(id: 1), with:
|
81
|
+
source_exhibit.tag(SolrDocument.new(id: 1), with: 'xyz', on: :tags)
|
76
82
|
end
|
77
83
|
|
78
84
|
let :export do
|
79
|
-
|
85
|
+
described_class.new(source_exhibit).as_json
|
80
86
|
end
|
81
87
|
|
82
88
|
subject do
|
83
89
|
e = FactoryGirl.create(:exhibit)
|
84
|
-
e.import(export).tap
|
90
|
+
e.import(export).tap(&:save)
|
85
91
|
end
|
86
92
|
|
87
|
-
it
|
93
|
+
it 'has exhibit properties' do
|
88
94
|
expect(subject.title).to eq source_exhibit.title
|
89
95
|
end
|
90
96
|
|
91
|
-
it
|
97
|
+
it 'does not duplicate saved searches' do
|
92
98
|
expect(subject.searches).to have(1).item
|
93
99
|
end
|
94
100
|
|
95
|
-
it
|
101
|
+
it 'has blacklight configuration properties' do
|
96
102
|
expect(subject.blacklight_configuration).to be_persisted
|
97
103
|
end
|
98
104
|
|
99
|
-
it
|
105
|
+
it 'has home page properties' do
|
100
106
|
expect(subject.home_page).to be_persisted
|
101
107
|
expect(subject.home_page.id).not_to eq source_exhibit.home_page.id
|
102
108
|
|
@@ -104,88 +110,102 @@ describe Spotlight::ExhibitExportSerializer do
|
|
104
110
|
expect(subject.home_page.content).to eq source_exhibit.home_page.content
|
105
111
|
end
|
106
112
|
|
107
|
-
it
|
113
|
+
it 'has sidecars' do
|
108
114
|
expect(SolrDocument.new(id: 1).public? subject).to be_falsey
|
109
115
|
end
|
110
116
|
|
111
|
-
it
|
117
|
+
it 'has tags' do
|
112
118
|
expect(subject.owned_taggings.length).to eq source_exhibit.owned_taggings.length
|
113
119
|
expect(subject.owned_taggings.first).to be_persisted
|
114
|
-
expect(subject.owned_taggings.first.tag.name).to eq
|
120
|
+
expect(subject.owned_taggings.first.tag.name).to eq 'xyz'
|
115
121
|
end
|
116
122
|
|
117
|
-
it
|
123
|
+
it 'deals with nested feature pages' do
|
118
124
|
FactoryGirl.create :feature_subpage, exhibit: source_exhibit
|
119
125
|
expect(subject.feature_pages.at_top_level.length).to eq 1
|
120
126
|
expect(subject.feature_pages.first.child_pages.length).to eq 1
|
121
127
|
end
|
122
128
|
|
123
|
-
it
|
129
|
+
it 'assigns STI resources the correct class' do
|
124
130
|
resource = FactoryGirl.create :uploaded_resource, exhibit: source_exhibit
|
125
131
|
expect(subject.resources.length).to eq 1
|
126
132
|
expect(subject.resources.first.class).to eq Spotlight::Resources::Upload
|
127
133
|
expect(subject.resources.first.url.file.path).not_to eq resource.url.file.path
|
128
134
|
end
|
129
135
|
|
130
|
-
it
|
136
|
+
it 'assigns normal resources the correct class' do
|
137
|
+
resource = FactoryGirl.create :resource, exhibit: source_exhibit
|
138
|
+
expect(subject.resources.length).to eq 1
|
139
|
+
expect(subject.resources.first.class).to eq Spotlight::Resource
|
140
|
+
expect(subject.resources.first.url).to eq resource.url
|
141
|
+
end
|
142
|
+
|
143
|
+
it 'copies contact avatars' do
|
131
144
|
contact = FactoryGirl.create :contact, exhibit: source_exhibit
|
132
145
|
expect(subject.contacts.length).to eq 1
|
133
146
|
expect(subject.contacts.first.avatar.file.path).not_to eq contact.avatar.file.path
|
134
147
|
end
|
135
148
|
end
|
136
149
|
|
137
|
-
it
|
150
|
+
it 'is idempotent-ish' do
|
138
151
|
FactoryGirl.create :feature_subpage, exhibit: source_exhibit
|
139
|
-
export =
|
152
|
+
export = described_class.new(source_exhibit).as_json
|
140
153
|
e = FactoryGirl.create(:exhibit)
|
141
|
-
e.import(export).tap
|
142
|
-
e.import(export).tap
|
154
|
+
e.import(export).tap(&:save)
|
155
|
+
e.import(export).tap(&:save)
|
143
156
|
end
|
144
157
|
|
145
|
-
describe
|
158
|
+
describe 'should export saved searches with query parameters that can be re-generated' do
|
146
159
|
before do
|
147
|
-
source_exhibit.feature_pages.create content: [{
|
160
|
+
source_exhibit.feature_pages.create content: [{
|
161
|
+
type: 'search_results',
|
162
|
+
data: {
|
163
|
+
'item' => {
|
164
|
+
search.slug => { id: search.slug, display: 'true' }
|
165
|
+
},
|
166
|
+
view: ['list']
|
167
|
+
}
|
168
|
+
}].to_json
|
148
169
|
end
|
149
170
|
|
150
171
|
subject do
|
151
172
|
e = FactoryGirl.create(:exhibit)
|
152
|
-
e.import(export).tap
|
173
|
+
e.import(export).tap(&:save)
|
153
174
|
end
|
154
175
|
|
155
176
|
let :export do
|
156
|
-
|
177
|
+
described_class.new(source_exhibit).as_json
|
157
178
|
end
|
158
179
|
|
159
|
-
context
|
180
|
+
context 'with a search object with matching query params' do
|
160
181
|
let :search do
|
161
182
|
source_exhibit.searches.first
|
162
183
|
end
|
163
184
|
|
164
|
-
it
|
185
|
+
it 'uses a search within the exhibit' do
|
165
186
|
# searches need to be published.
|
166
|
-
subject.searches.each { |x| x.
|
187
|
+
subject.searches.each { |x| x.update published: true }
|
167
188
|
|
168
189
|
expect(subject.feature_pages.first.content.first.search.exhibit).to eq subject
|
169
190
|
end
|
170
191
|
|
171
|
-
it
|
192
|
+
it 'uses the existing search object with the same query params' do
|
172
193
|
expect(subject.searches).to have(1).item
|
173
194
|
end
|
174
195
|
end
|
175
196
|
|
176
|
-
context
|
177
|
-
|
178
|
-
|
179
|
-
|
197
|
+
context 'with a search object that needs to be created' do
|
198
|
+
let :search do
|
199
|
+
source_exhibit.searches.create title: 'custom query', slug: 'xyz', published: true
|
200
|
+
end
|
180
201
|
|
181
|
-
|
182
|
-
|
183
|
-
|
202
|
+
it 'creates a search within the exhibit' do
|
203
|
+
expect(subject.feature_pages.first.content.first.search.exhibit).to eq subject
|
204
|
+
end
|
184
205
|
|
185
|
-
|
186
|
-
|
187
|
-
|
206
|
+
it 'uses the existing search object with the same query params' do
|
207
|
+
expect(subject.searches).to have(2).items
|
208
|
+
end
|
188
209
|
end
|
189
210
|
end
|
190
|
-
|
191
211
|
end
|