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,8 +1,11 @@
|
|
1
|
-
module
|
2
|
-
|
3
|
-
|
1
|
+
module Spotlight
|
2
|
+
##
|
3
|
+
# Spotlight routing helpers
|
4
|
+
module Routes
|
4
5
|
def spotlight_root
|
5
|
-
root to:
|
6
|
+
root to: 'spotlight/default#index'
|
6
7
|
end
|
7
8
|
end
|
8
9
|
end
|
10
|
+
|
11
|
+
ActionDispatch::Routing::Mapper.send :include, Spotlight::Routes
|
data/lib/spotlight/version.rb
CHANGED
@@ -1,92 +1,99 @@
|
|
1
1
|
namespace :spotlight do
|
2
|
-
desc
|
3
|
-
task :
|
4
|
-
puts
|
5
|
-
|
6
|
-
|
7
|
-
password = prompt_password
|
8
|
-
u = User.create!(email: email, password: password)
|
2
|
+
desc 'Create an initial admin user and default exhibit'
|
3
|
+
task initialize: :environment do
|
4
|
+
puts 'Creating an initial admin user.'
|
5
|
+
u = prompt_to_create_user
|
6
|
+
|
9
7
|
Spotlight::Role.create(user: u, exhibit: nil, role: 'admin')
|
10
|
-
puts
|
8
|
+
puts 'User created.'
|
11
9
|
end
|
12
10
|
|
13
|
-
desc
|
14
|
-
task :
|
15
|
-
|
16
|
-
email = $stdin.gets.chomp
|
17
|
-
u = User.find_by email: email
|
11
|
+
desc 'Add application-wide admin privileges to a user'
|
12
|
+
task admin: :environment do
|
13
|
+
u = prompt_to_create_user
|
18
14
|
Spotlight::Role.create(user: u, exhibit: nil, role: 'admin')
|
19
15
|
end
|
20
16
|
|
21
|
-
desc
|
22
|
-
task :
|
23
|
-
print
|
17
|
+
desc 'Create a new exhibit'
|
18
|
+
task exhibit: :environment do
|
19
|
+
print 'Exhibit title: '
|
24
20
|
title = $stdin.gets.chomp
|
25
21
|
|
26
22
|
exhibit = Spotlight::Exhibit.create!(title: title)
|
27
23
|
|
28
|
-
puts
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
u = User.find_by(email: email)
|
33
|
-
unless u
|
34
|
-
puts "User not found."
|
35
|
-
password = prompt_password
|
36
|
-
u = User.create!(email: email, password: password)
|
37
|
-
end
|
24
|
+
puts 'Who can admin this exhibit?'
|
25
|
+
|
26
|
+
u = prompt_to_create_user
|
27
|
+
|
38
28
|
Spotlight::Role.create(user: u, exhibit: exhibit, role: 'admin')
|
39
|
-
puts
|
29
|
+
puts 'Exhibit created.'
|
40
30
|
end
|
41
31
|
|
42
|
-
desc
|
32
|
+
desc 'Import an exhibit'
|
43
33
|
task import: :environment do
|
44
34
|
contents = if ENV['FILE']
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
35
|
+
File.read(ENV['FILE'])
|
36
|
+
else
|
37
|
+
STDIN.read
|
38
|
+
end
|
49
39
|
|
50
40
|
data = JSON.parse(contents)
|
51
41
|
|
52
|
-
exhibit = Spotlight::Exhibit.find_or_create_by slug: data[
|
53
|
-
e.title = data[
|
42
|
+
exhibit = Spotlight::Exhibit.find_or_create_by! slug: data['slug'] do |e|
|
43
|
+
e.title = data['title']
|
54
44
|
end
|
55
45
|
|
56
46
|
exhibit.import data
|
57
47
|
|
58
|
-
|
48
|
+
exhibit.save!
|
49
|
+
|
50
|
+
puts Spotlight::ExhibitExportSerializer.new(exhibit.reload).to_json
|
59
51
|
end
|
60
52
|
|
61
|
-
def
|
53
|
+
def prompt_to_create_user
|
54
|
+
User.find_or_create_by!(email: prompt_for_email) do |u|
|
55
|
+
puts 'User not found. Enter a password to create the user.'
|
56
|
+
u.password = prompt_for_password
|
57
|
+
end
|
58
|
+
rescue => e
|
59
|
+
puts e
|
60
|
+
retry
|
61
|
+
end
|
62
|
+
|
63
|
+
def prompt_for_email
|
64
|
+
print 'Email: '
|
65
|
+
$stdin.gets.chomp
|
66
|
+
end
|
67
|
+
|
68
|
+
def prompt_for_password
|
62
69
|
begin
|
63
|
-
system
|
64
|
-
print
|
70
|
+
system 'stty -echo'
|
71
|
+
print 'Password (must be 8+ characters): '
|
65
72
|
password = $stdin.gets.chomp
|
66
73
|
puts "\n"
|
67
74
|
ensure
|
68
|
-
system
|
75
|
+
system 'stty echo'
|
69
76
|
end
|
70
77
|
password
|
71
78
|
end
|
72
79
|
|
73
80
|
namespace :check do
|
74
|
-
desc
|
75
|
-
task :solr, [:model_name] => ['blacklight:check:solr', :environment] do |_,
|
81
|
+
desc 'Check the Solr connection and controller configuration'
|
82
|
+
task :solr, [:model_name] => ['blacklight:check:solr', :environment] do |_, _args|
|
76
83
|
errors = 0
|
77
|
-
verbose = ENV.fetch('VERBOSE', false).present?
|
78
84
|
|
79
85
|
puts "[#{Blacklight.default_index.connection.uri}]"
|
80
86
|
|
81
|
-
print
|
87
|
+
print ' - atomic updates:'
|
82
88
|
begin
|
83
89
|
id = 'test123'
|
84
90
|
field = "test_#{Spotlight::Engine.config.solr_fields.string_suffix}"
|
91
|
+
sample_doc = { Spotlight::Engine.blacklight_config.document_model.unique_key => id, field => { set: 'a-new-string' } }
|
85
92
|
Blacklight.default_index.connection.add Spotlight::Engine.blacklight_config.document_model.unique_key.to_sym => id, field => 'some-string'
|
86
|
-
Blacklight.default_index.connection.update data: [
|
93
|
+
Blacklight.default_index.connection.update data: [sample_doc].to_json, headers: { 'Content-Type' => 'application/json' }
|
87
94
|
Blacklight.default_index.connection.delete_by_id id
|
88
95
|
print " OK\n"
|
89
|
-
rescue
|
96
|
+
rescue StandardError => e
|
90
97
|
errors += 1
|
91
98
|
puts e.to_s
|
92
99
|
end
|
@@ -97,15 +104,14 @@ namespace :spotlight do
|
|
97
104
|
|
98
105
|
task :reindex, [:exhibit_slug] => :environment do |_, args|
|
99
106
|
exhibits = if args[:exhibit_slug]
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
107
|
+
Spotlight::Exhibit.where(slug: args[:exhibit_slug])
|
108
|
+
else
|
109
|
+
Spotlight::Exhibit.all
|
110
|
+
end
|
104
111
|
|
105
112
|
exhibits.find_each do |e|
|
106
113
|
puts " == Reindexing #{e.title} =="
|
107
114
|
e.reindex_later
|
108
115
|
end
|
109
116
|
end
|
110
|
-
|
111
117
|
end
|
@@ -1,29 +1,29 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe ApplicationController, :
|
3
|
+
describe ApplicationController, type: :controller do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
|
-
let
|
5
|
+
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
6
6
|
it { is_expected.to be_a_kind_of Spotlight::Controller }
|
7
7
|
|
8
|
-
describe
|
9
|
-
|
10
|
-
context "with a current exhibit" do
|
11
|
-
|
8
|
+
describe 'exhibit-specific routing' do
|
9
|
+
context 'with a current exhibit' do
|
12
10
|
before do
|
13
11
|
allow(controller).to receive(:current_exhibit).and_return(exhibit)
|
14
12
|
end
|
15
13
|
|
16
|
-
describe
|
17
|
-
it
|
18
|
-
|
14
|
+
describe '#search_action_url' do
|
15
|
+
it 'is a path within the current exhibit' do
|
16
|
+
expected = { controller: 'spotlight/catalog', action: 'index', exhibit_id: exhibit.slug }
|
17
|
+
expect(get: controller.search_action_url(only_path: true).gsub('/spotlight', '')).to route_to expected
|
19
18
|
end
|
20
19
|
end
|
21
20
|
|
22
|
-
describe
|
23
|
-
it
|
24
|
-
|
21
|
+
describe '#search_facets_url' do
|
22
|
+
it 'is a path within the current exhibit' do
|
23
|
+
expected = { controller: 'spotlight/catalog', action: 'facet', id: 'some-facet', exhibit_id: exhibit.slug }
|
24
|
+
expect(get: controller.search_facet_url(id: 'some-facet', only_path: true).gsub('/spotlight', '')).to route_to expected
|
25
25
|
end
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
29
|
-
end
|
29
|
+
end
|
@@ -1,42 +1,41 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe Spotlight::AboutPagesController, :
|
3
|
+
describe Spotlight::AboutPagesController, type: :controller do
|
4
4
|
routes { Spotlight::Engine.routes }
|
5
|
-
let(:valid_attributes) { {
|
5
|
+
let(:valid_attributes) { { 'title' => 'MyString' } }
|
6
6
|
|
7
7
|
it { is_expected.to be_a Spotlight::Catalog::AccessControlsEnforcement }
|
8
8
|
|
9
|
-
describe
|
10
|
-
|
11
|
-
describe "POST update_all" do
|
9
|
+
describe 'when not logged in' do
|
10
|
+
describe 'POST update_all' do
|
12
11
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
13
|
-
it
|
12
|
+
it 'does not be allowed' do
|
14
13
|
post :update_all, exhibit_id: exhibit
|
15
14
|
expect(response).to redirect_to main_app.new_user_session_path
|
16
15
|
end
|
17
16
|
end
|
18
17
|
end
|
19
18
|
|
20
|
-
describe
|
19
|
+
describe 'when signed in as a curator' do
|
21
20
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
22
21
|
let(:user) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
23
|
-
before {sign_in user }
|
22
|
+
before { sign_in user }
|
24
23
|
|
25
|
-
describe
|
24
|
+
describe 'GET show' do
|
26
25
|
let(:page) { FactoryGirl.create(:about_page, weight: 0, exhibit: exhibit) }
|
27
26
|
let(:page2) { FactoryGirl.create(:about_page, weight: 5, exhibit: exhibit) }
|
28
|
-
describe
|
29
|
-
it
|
30
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
31
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
27
|
+
describe 'on the main about page' do
|
28
|
+
it 'is successful' do
|
29
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
30
|
+
expect(controller).to receive(:add_breadcrumb).with('About', [exhibit, page])
|
32
31
|
get :show, id: page, exhibit_id: exhibit
|
33
32
|
expect(assigns(:page)).to eq page
|
34
|
-
expect(assigns(:exhibit)).to eq exhibit
|
33
|
+
expect(assigns(:exhibit)).to eq exhibit
|
35
34
|
end
|
36
35
|
end
|
37
|
-
describe
|
38
|
-
it
|
39
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
36
|
+
describe 'on a different about page' do
|
37
|
+
it 'is successful' do
|
38
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
40
39
|
expect(controller).to receive(:add_breadcrumb).with('About', [exhibit, page])
|
41
40
|
expect(controller).to receive(:add_breadcrumb).with(page2.title, [exhibit, page2])
|
42
41
|
get :show, id: page2, exhibit_id: exhibit
|
@@ -46,81 +45,86 @@ describe Spotlight::AboutPagesController, :type => :controller do
|
|
46
45
|
end
|
47
46
|
end
|
48
47
|
|
49
|
-
describe
|
48
|
+
describe 'GET edit' do
|
50
49
|
let!(:page) { FactoryGirl.create(:about_page, weight: 0, exhibit: exhibit) }
|
51
50
|
let!(:page2) { FactoryGirl.create(:about_page, weight: 5, exhibit: exhibit) }
|
52
|
-
describe
|
53
|
-
it
|
54
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
55
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
51
|
+
describe 'on the main about page' do
|
52
|
+
it 'is successful' do
|
53
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
54
|
+
expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
|
56
55
|
get :edit, id: page, exhibit_id: exhibit
|
57
56
|
expect(assigns(:page)).to eq page
|
58
57
|
expect(assigns(:exhibit)).to eq exhibit
|
59
58
|
end
|
60
59
|
end
|
61
|
-
describe
|
62
|
-
it
|
63
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
64
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
60
|
+
describe 'on a different about page' do
|
61
|
+
it 'is successful' do
|
62
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
63
|
+
expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
|
65
64
|
expect(controller).to receive(:add_breadcrumb).with(page2.title, [:edit, exhibit, page2])
|
66
|
-
get :edit, id: page2, exhibit_id: exhibit
|
65
|
+
get :edit, id: page2, exhibit_id: exhibit
|
67
66
|
expect(assigns(:page)).to eq page2
|
68
|
-
expect(assigns(:exhibit)).to eq exhibit
|
67
|
+
expect(assigns(:exhibit)).to eq exhibit
|
69
68
|
end
|
70
69
|
end
|
71
70
|
end
|
72
71
|
|
73
|
-
describe
|
72
|
+
describe 'GET index' do
|
74
73
|
let!(:page) { FactoryGirl.create(:about_page, exhibit: exhibit) }
|
75
|
-
it
|
76
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
77
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
78
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
79
|
-
get :index, exhibit_id: exhibit
|
74
|
+
it 'is successful' do
|
75
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
|
76
|
+
expect(controller).to receive(:add_breadcrumb).with('Curation', exhibit_dashboard_path(exhibit))
|
77
|
+
expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
|
78
|
+
get :index, exhibit_id: exhibit
|
80
79
|
expect(assigns(:page)).to be_kind_of Spotlight::Page
|
81
80
|
expect(assigns(:page)).to be_new_record
|
82
81
|
expect(assigns(:pages)).to include page
|
83
82
|
expect(assigns(:exhibit)).to eq exhibit
|
84
83
|
end
|
85
84
|
end
|
86
|
-
describe
|
87
|
-
it
|
88
|
-
post :create, about_page: {title:
|
85
|
+
describe 'POST create' do
|
86
|
+
it 'redirects to the about page index' do
|
87
|
+
post :create, about_page: { title: 'MyString' }, exhibit_id: exhibit
|
89
88
|
expect(response).to redirect_to(exhibit_about_pages_path(exhibit))
|
90
89
|
end
|
91
90
|
end
|
92
|
-
describe
|
91
|
+
describe 'PUT update' do
|
93
92
|
let!(:page) { FactoryGirl.create(:about_page, exhibit: exhibit) }
|
94
|
-
it
|
93
|
+
it 'redirects to the about page' do
|
95
94
|
put :update, id: page, exhibit_id: page.exhibit.id, about_page: valid_attributes
|
96
95
|
page.reload
|
97
96
|
expect(response).to redirect_to(exhibit_about_page_path(page.exhibit, page))
|
98
|
-
expect(flash[:notice]).to have_link
|
97
|
+
expect(flash[:notice]).to have_link 'Undo changes'
|
99
98
|
end
|
100
99
|
end
|
101
|
-
describe
|
100
|
+
describe 'POST update_all' do
|
102
101
|
let!(:page1) { FactoryGirl.create(:about_page, exhibit: exhibit) }
|
103
|
-
let!(:page2) { FactoryGirl.create(:about_page, exhibit: exhibit, published: true
|
104
|
-
let!(:page3) { FactoryGirl.create(:about_page, exhibit: exhibit, published: true
|
105
|
-
before { request.env[
|
106
|
-
it
|
107
|
-
post :update_all, exhibit_id: page1.exhibit, exhibit: {
|
102
|
+
let!(:page2) { FactoryGirl.create(:about_page, exhibit: exhibit, published: true) }
|
103
|
+
let!(:page3) { FactoryGirl.create(:about_page, exhibit: exhibit, published: true) }
|
104
|
+
before { request.env['HTTP_REFERER'] = 'http://example.com' }
|
105
|
+
it 'updates whether they are on the landing page' do
|
106
|
+
post :update_all, exhibit_id: page1.exhibit, exhibit: {
|
107
|
+
about_pages_attributes: [
|
108
|
+
{ id: page1.id, published: true, title: 'This is a new title!' },
|
109
|
+
{ id: page2.id, published: false }
|
110
|
+
]
|
111
|
+
}
|
108
112
|
expect(response).to redirect_to 'http://example.com'
|
109
|
-
expect(flash[:notice]).to eq
|
113
|
+
expect(flash[:notice]).to eq 'About pages were successfully updated.'
|
110
114
|
expect(page1.reload.published).to be_truthy
|
111
|
-
expect(page1.title).to eq
|
115
|
+
expect(page1.title).to eq 'This is a new title!'
|
112
116
|
expect(page2.reload.published).to be_falsey
|
113
117
|
expect(page3.reload.published).to be_truthy # should remain untouched since it wasn't in present[]
|
114
118
|
end
|
115
119
|
end
|
116
120
|
|
117
|
-
describe
|
121
|
+
describe 'PATCH update_contacts' do
|
118
122
|
let!(:contact1) { FactoryGirl.create(:contact, name: 'Aphra Behn', exhibit: exhibit) }
|
119
123
|
let!(:contact2) { FactoryGirl.create(:contact, exhibit: exhibit) }
|
120
|
-
it
|
121
|
-
patch :update_contacts, exhibit_id: exhibit, exhibit: {contacts_attributes: [
|
122
|
-
{
|
123
|
-
{
|
124
|
+
it 'updates contacts' do
|
125
|
+
patch :update_contacts, exhibit_id: exhibit, exhibit: { contacts_attributes: [
|
126
|
+
{ 'show_in_sidebar' => '1', 'id' => contact1.id, weight: 1 },
|
127
|
+
{ 'show_in_sidebar' => '0', 'id' => contact2.id, weight: 2 }] }
|
124
128
|
expect(response).to redirect_to exhibit_about_pages_path(exhibit)
|
125
129
|
expect(flash[:notice]).to eq 'Contacts were successfully updated.'
|
126
130
|
expect(exhibit.contacts.size).to eq 2
|
@@ -128,13 +132,13 @@ describe Spotlight::AboutPagesController, :type => :controller do
|
|
128
132
|
expect(contact1.reload.weight).to eq 1
|
129
133
|
expect(contact2.reload.weight).to eq 2
|
130
134
|
end
|
131
|
-
it
|
135
|
+
it 'shows index on failure' do
|
132
136
|
expect_any_instance_of(Spotlight::Exhibit).to receive(:update).and_return(false)
|
133
|
-
patch :update_contacts, exhibit_id: exhibit, exhibit: {contacts_attributes: [
|
134
|
-
{
|
135
|
-
{
|
136
|
-
{
|
137
|
-
expect(response).to render_template(
|
137
|
+
patch :update_contacts, exhibit_id: exhibit, exhibit: { contacts_attributes: [
|
138
|
+
{ 'show_in_sidebar' => '1', 'name' => 'Justin Coyne', 'email' => 'jcoyne@justincoyne.com', 'title' => '', 'location' => 'US' },
|
139
|
+
{ 'show_in_sidebar' => '0', 'name' => '', 'email' => '', 'title' => '', 'location' => '' },
|
140
|
+
{ 'show_in_sidebar' => '0', 'name' => '', 'email' => '', 'title' => 'Librarian', 'location' => '' }] }
|
141
|
+
expect(response).to render_template('index')
|
138
142
|
end
|
139
143
|
end
|
140
144
|
end
|
@@ -1,55 +1,60 @@
|
|
1
1
|
require 'spec_helper'
|
2
|
-
describe Spotlight::AppearancesController, :
|
2
|
+
describe Spotlight::AppearancesController, type: :controller do
|
3
3
|
routes { Spotlight::Engine.routes }
|
4
4
|
let(:exhibit) { FactoryGirl.create(:exhibit) }
|
5
5
|
|
6
|
-
describe
|
6
|
+
describe 'when the user is not authorized' do
|
7
7
|
before do
|
8
8
|
sign_in FactoryGirl.create(:exhibit_visitor)
|
9
9
|
end
|
10
10
|
|
11
|
-
it
|
12
|
-
get :edit, exhibit_id: exhibit
|
11
|
+
it 'denies access' do
|
12
|
+
get :edit, exhibit_id: exhibit
|
13
13
|
expect(response).to redirect_to main_app.root_path
|
14
14
|
expect(flash[:alert]).to be_present
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
|
-
describe
|
19
|
-
describe
|
20
|
-
it
|
21
|
-
patch :update, exhibit_id: exhibit
|
18
|
+
describe 'when not logged in' do
|
19
|
+
describe '#update' do
|
20
|
+
it 'does not be allowed' do
|
21
|
+
patch :update, exhibit_id: exhibit
|
22
22
|
expect(response).to redirect_to main_app.new_user_session_path
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
26
26
|
|
27
|
-
describe
|
27
|
+
describe 'when signed in' do
|
28
28
|
let(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
29
|
-
before {sign_in user }
|
29
|
+
before { sign_in user }
|
30
30
|
|
31
|
-
describe
|
32
|
-
it
|
33
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
34
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
35
|
-
expect(controller).to receive(:add_breadcrumb).with(
|
31
|
+
describe '#edit' do
|
32
|
+
it 'is successful' do
|
33
|
+
expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
|
34
|
+
expect(controller).to receive(:add_breadcrumb).with('Administration', exhibit_dashboard_path(exhibit))
|
35
|
+
expect(controller).to receive(:add_breadcrumb).with('Appearance', edit_exhibit_appearance_path(exhibit))
|
36
36
|
get :edit, exhibit_id: exhibit
|
37
37
|
expect(response).to be_successful
|
38
|
-
expect(assigns[:
|
38
|
+
expect(assigns[:exhibit]).to be_kind_of Spotlight::Exhibit
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe
|
43
|
-
it
|
44
|
-
|
45
|
-
|
46
|
-
|
42
|
+
describe '#update' do
|
43
|
+
it 'updates the navigation' do
|
44
|
+
first_nav = exhibit.main_navigations.first
|
45
|
+
last_nav = exhibit.main_navigations.last
|
46
|
+
patch :update, exhibit_id: exhibit, exhibit: {
|
47
|
+
main_navigations_attributes: [
|
48
|
+
{ id: first_nav.id, label: 'Some Label', weight: 500 },
|
49
|
+
{ id: last_nav.id, display: false }
|
50
|
+
]
|
47
51
|
}
|
48
|
-
expect(flash[:notice]).to eq
|
52
|
+
expect(flash[:notice]).to eq 'The exhibit was successfully updated.'
|
49
53
|
expect(response).to redirect_to edit_exhibit_appearance_path(exhibit)
|
50
54
|
assigns[:exhibit].tap do |saved|
|
51
|
-
expect(saved.
|
52
|
-
expect(saved.
|
55
|
+
expect(saved.main_navigations.find(first_nav.id).label).to eq 'Some Label'
|
56
|
+
expect(saved.main_navigations.find(first_nav.id).weight).to eq 500
|
57
|
+
expect(saved.main_navigations.find(last_nav.id)).not_to be_displayable
|
53
58
|
end
|
54
59
|
end
|
55
60
|
end
|