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,14 +1,14 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Editing metadata fields', type: :feature do
|
4
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let(:admin) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
6
6
|
before { login_as(admin) }
|
7
7
|
|
8
|
-
it
|
9
|
-
visit spotlight.
|
8
|
+
it 'works' do
|
9
|
+
visit spotlight.edit_exhibit_metadata_configuration_path exhibit
|
10
10
|
|
11
|
-
expect(page).to have_content
|
11
|
+
expect(page).to have_content 'Display and Order Metadata Fields'
|
12
12
|
|
13
13
|
check :blacklight_configuration_index_fields_language_ssm_show
|
14
14
|
check :blacklight_configuration_index_fields_abstract_tesim_show
|
@@ -18,31 +18,31 @@ describe "Editing metadata fields", type: :feature do
|
|
18
18
|
check :blacklight_configuration_index_fields_language_ssm_list
|
19
19
|
check :blacklight_configuration_index_fields_note_mapuse_tesim_list
|
20
20
|
|
21
|
-
click_on
|
21
|
+
click_on 'Save changes'
|
22
22
|
|
23
|
-
expect(exhibit.reload.blacklight_config.index_fields.select { |
|
24
|
-
expect(exhibit.blacklight_config.index_fields.select { |
|
25
|
-
expect(exhibit.blacklight_config.show_fields.select { |
|
26
|
-
expect(exhibit.blacklight_config.show_fields.select { |
|
23
|
+
expect(exhibit.reload.blacklight_config.index_fields.select { |_k, x| x.list }).to include 'language_ssm', 'note_mapuse_tesim'
|
24
|
+
expect(exhibit.blacklight_config.index_fields.select { |_k, x| x.list }).to_not include 'abstract_tesim'
|
25
|
+
expect(exhibit.blacklight_config.show_fields.select { |_k, x| x.show }).to include 'language_ssm', 'abstract_tesim'
|
26
|
+
expect(exhibit.blacklight_config.show_fields.select { |_k, x| x.show }).to_not include 'note_mapuse_tesim'
|
27
27
|
end
|
28
28
|
|
29
|
-
it
|
30
|
-
visit spotlight.
|
29
|
+
it 'has in-place editing of labels', js: true do
|
30
|
+
visit spotlight.edit_exhibit_metadata_configuration_path exhibit
|
31
31
|
check :blacklight_configuration_index_fields_language_ssm_show
|
32
32
|
check :blacklight_configuration_index_fields_language_ssm_list
|
33
33
|
|
34
|
-
click_on
|
34
|
+
click_on 'Language'
|
35
35
|
|
36
36
|
expect(page).to have_field :blacklight_configuration_index_fields_language_ssm_label, visible: true
|
37
|
-
fill_in :blacklight_configuration_index_fields_language_ssm_label, with:
|
37
|
+
fill_in :blacklight_configuration_index_fields_language_ssm_label, with: 'Language of Origin'
|
38
38
|
|
39
|
-
click_on
|
40
|
-
expect(exhibit.reload.blacklight_config.index_fields['language_ssm'].label).to eq
|
39
|
+
click_on 'Save changes'
|
40
|
+
expect(exhibit.reload.blacklight_config.index_fields['language_ssm'].label).to eq 'Language of Origin'
|
41
41
|
end
|
42
42
|
|
43
|
-
it
|
44
|
-
visit spotlight.
|
43
|
+
it 'has breadcrumbs' do
|
44
|
+
visit spotlight.edit_exhibit_metadata_configuration_path exhibit
|
45
45
|
|
46
|
-
expect(page).to have_breadcrumbs
|
46
|
+
expect(page).to have_breadcrumbs 'Home', 'Curation', 'Metadata'
|
47
47
|
end
|
48
48
|
end
|
@@ -1,100 +1,101 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Feature page', type: :feature do
|
4
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
6
|
-
describe
|
7
|
-
let!(:parent_feature_page)
|
8
|
-
FactoryGirl.create(:feature_page, title:
|
9
|
-
|
10
|
-
let!(:child_feature_page)
|
6
|
+
describe 'sidebar' do
|
7
|
+
let!(:parent_feature_page) do
|
8
|
+
FactoryGirl.create(:feature_page, title: 'Parent Page', exhibit: exhibit)
|
9
|
+
end
|
10
|
+
let!(:child_feature_page) do
|
11
11
|
FactoryGirl.create(
|
12
12
|
:feature_page,
|
13
|
-
title:
|
13
|
+
title: 'Child Page',
|
14
14
|
parent_page: parent_feature_page, exhibit: exhibit
|
15
15
|
)
|
16
|
-
|
17
|
-
describe
|
18
|
-
before { parent_feature_page.display_sidebar
|
19
|
-
after
|
20
|
-
|
16
|
+
end
|
17
|
+
describe 'when configured to display' do
|
18
|
+
before { parent_feature_page.update display_sidebar: true }
|
19
|
+
after { parent_feature_page.update display_sidebar: false }
|
20
|
+
|
21
|
+
it 'is present' do
|
21
22
|
visit spotlight.exhibit_feature_page_path(parent_feature_page.exhibit, parent_feature_page)
|
22
23
|
# the sidebar should display
|
23
|
-
within(
|
24
|
+
within('#sidebar') do
|
24
25
|
# the current page should be the sidebar header
|
25
|
-
expect(page).to have_css(
|
26
|
+
expect(page).to have_css('h4', text: parent_feature_page.title)
|
26
27
|
# within the sidebar navigation
|
27
|
-
within(
|
28
|
+
within('ol.sidenav') do
|
28
29
|
# there should be a link to the child page
|
29
|
-
expect(page).to have_css(
|
30
|
+
expect(page).to have_css('li a', text: child_feature_page.title)
|
30
31
|
end
|
31
32
|
end
|
32
33
|
end
|
33
34
|
end
|
34
|
-
describe
|
35
|
-
before { parent_feature_page.display_sidebar
|
36
|
-
context
|
37
|
-
it
|
35
|
+
describe 'when configured to not display' do
|
36
|
+
before { parent_feature_page.update display_sidebar: false }
|
37
|
+
context 'with a child page' do
|
38
|
+
it 'is present anyway' do
|
38
39
|
visit spotlight.exhibit_feature_page_path(parent_feature_page.exhibit, parent_feature_page)
|
39
|
-
expect(page).to have_css(
|
40
|
+
expect(page).to have_css('#sidebar')
|
40
41
|
expect(page).to have_content(child_feature_page.title)
|
41
42
|
end
|
42
43
|
end
|
43
|
-
|
44
|
-
context
|
45
|
-
before { child_feature_page.published
|
46
|
-
it
|
44
|
+
|
45
|
+
context 'with an unpublished child page' do
|
46
|
+
before { child_feature_page.update published: false }
|
47
|
+
it 'does not be present' do
|
47
48
|
visit spotlight.exhibit_feature_page_path(parent_feature_page.exhibit, parent_feature_page)
|
48
|
-
expect(page).not_to have_css(
|
49
|
+
expect(page).not_to have_css('#sidebar')
|
49
50
|
expect(page).not_to have_content(child_feature_page.title)
|
50
51
|
end
|
51
52
|
end
|
52
53
|
end
|
53
54
|
end
|
54
|
-
describe
|
55
|
+
describe 'page options' do
|
55
56
|
before { login_as exhibit_curator }
|
56
|
-
describe
|
57
|
+
describe 'publish' do
|
57
58
|
let!(:unpublished_page) { FactoryGirl.create(:feature_page, published: false, exhibit: exhibit) }
|
58
|
-
it
|
59
|
+
it 'is updatable from the edit page' do
|
59
60
|
expect(unpublished_page).not_to be_published
|
60
61
|
|
61
62
|
visit spotlight.edit_exhibit_feature_page_path(unpublished_page.exhibit, unpublished_page)
|
62
|
-
expect(find(
|
63
|
+
expect(find('#feature_page_published')).not_to be_checked
|
63
64
|
|
64
|
-
check
|
65
|
-
click_button
|
65
|
+
check 'Publish'
|
66
|
+
click_button 'Save changes'
|
66
67
|
|
67
68
|
expect(unpublished_page.reload).to be_published
|
68
69
|
|
69
70
|
visit spotlight.edit_exhibit_feature_page_path(unpublished_page.exhibit, unpublished_page)
|
70
|
-
expect(find(
|
71
|
+
expect(find('#feature_page_published')).to be_checked
|
71
72
|
end
|
72
73
|
end
|
73
|
-
describe
|
74
|
+
describe 'display_sidebar' do
|
74
75
|
let!(:feature_page) { FactoryGirl.create(:feature_page, display_sidebar: false, exhibit: exhibit) }
|
75
|
-
before { feature_page.display_sidebar
|
76
|
-
it
|
76
|
+
before { feature_page.update display_sidebar: false }
|
77
|
+
it 'is updatable from the edit page' do
|
77
78
|
expect(feature_page.display_sidebar?).to be_falsey
|
78
79
|
|
79
80
|
visit spotlight.edit_exhibit_feature_page_path(feature_page.exhibit, feature_page)
|
80
|
-
expect(find(
|
81
|
+
expect(find('#feature_page_display_sidebar')).not_to be_checked
|
81
82
|
|
82
|
-
check
|
83
|
-
click_button
|
83
|
+
check 'Show sidebar'
|
84
|
+
click_button 'Save changes'
|
84
85
|
|
85
86
|
expect(feature_page.reload.display_sidebar?).to be_truthy
|
86
87
|
|
87
88
|
visit spotlight.edit_exhibit_feature_page_path(feature_page.exhibit, feature_page)
|
88
|
-
expect(find(
|
89
|
+
expect(find('#feature_page_display_sidebar')).to be_checked
|
89
90
|
end
|
90
91
|
end
|
91
92
|
end
|
92
93
|
|
93
|
-
describe
|
94
|
+
describe 'page locking' do
|
94
95
|
before { login_as exhibit_curator }
|
95
96
|
let!(:feature_page) { FactoryGirl.create(:feature_page, display_sidebar: false, exhibit: exhibit) }
|
96
97
|
|
97
|
-
it
|
98
|
+
it 'shows a lock message if someone is currently editing the page' do
|
98
99
|
# open the edit page
|
99
100
|
visit spotlight.edit_exhibit_feature_page_path(feature_page.exhibit, feature_page)
|
100
101
|
|
@@ -102,16 +103,16 @@ describe "Feature page", :type => :feature do
|
|
102
103
|
visit spotlight.edit_exhibit_feature_page_path(feature_page.exhibit, feature_page)
|
103
104
|
|
104
105
|
expect(page).to have_css '.alert'
|
105
|
-
within
|
106
|
-
expect(page).to have_content
|
106
|
+
within '.alert' do
|
107
|
+
expect(page).to have_content 'This page is currently being edited by ' + exhibit_curator.to_s
|
107
108
|
end
|
108
109
|
end
|
109
110
|
|
110
|
-
it
|
111
|
+
it 'releases the lock when the lock holder cancels edits', js: true do
|
111
112
|
# open the edit page
|
112
113
|
visit spotlight.edit_exhibit_feature_page_path(feature_page.exhibit, feature_page)
|
113
114
|
|
114
|
-
click_on
|
115
|
+
click_on 'Cancel'
|
115
116
|
sleep 2
|
116
117
|
|
117
118
|
# and then open the edit page again
|
@@ -1,57 +1,57 @@
|
|
1
|
-
require
|
2
|
-
describe
|
3
|
-
let(:exhibit) { FactoryGirl.create(:
|
1
|
+
require 'spec_helper'
|
2
|
+
describe 'Home page', type: :feature do
|
3
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
4
4
|
let(:exhibit_curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
5
|
-
before {login_as exhibit_curator}
|
6
|
-
it
|
5
|
+
before { login_as exhibit_curator }
|
6
|
+
it 'exists by default on exhibits' do
|
7
7
|
visit spotlight.exhibit_home_page_path(exhibit, exhibit.home_page)
|
8
8
|
within '#user-util-collapse .dropdown-menu' do
|
9
9
|
click_link 'Dashboard'
|
10
10
|
end
|
11
|
-
click_link
|
12
|
-
expect(page).to have_selector
|
13
|
-
expect(page).to have_selector
|
11
|
+
click_link 'Feature pages'
|
12
|
+
expect(page).to have_selector 'h3', text: 'Homepage'
|
13
|
+
expect(page).to have_selector 'h3.panel-title', text: 'Exhibit Home'
|
14
14
|
end
|
15
15
|
|
16
|
-
it
|
16
|
+
it 'allows users to edit the home page title' do
|
17
17
|
visit spotlight.exhibit_home_page_path(exhibit, exhibit.home_page)
|
18
18
|
within '#user-util-collapse .dropdown-menu' do
|
19
19
|
click_link 'Dashboard'
|
20
20
|
end
|
21
|
-
click_link
|
22
|
-
within(
|
23
|
-
click_link
|
21
|
+
click_link 'Feature pages'
|
22
|
+
within('.home_page') do
|
23
|
+
click_link 'Edit'
|
24
24
|
end
|
25
|
-
fill_in
|
26
|
-
click_button
|
27
|
-
expect(page).to have_content(
|
25
|
+
fill_in 'home_page_title', with: 'New Home Page Title'
|
26
|
+
click_button 'Save changes'
|
27
|
+
expect(page).to have_content('The home page was successfully updated.')
|
28
28
|
|
29
29
|
within '.dropdown-menu' do
|
30
30
|
click_link 'Dashboard'
|
31
31
|
end
|
32
|
-
click_link
|
33
|
-
expect(page).to have_content
|
34
|
-
expect(page).to have_selector
|
32
|
+
click_link 'Feature pages'
|
33
|
+
expect(page).to have_content 'New Home Page Title'
|
34
|
+
expect(page).to have_selector '.panel-title a', text: 'New Home Page Title'
|
35
35
|
end
|
36
36
|
|
37
|
-
it
|
37
|
+
it 'has working facet links' do
|
38
38
|
visit spotlight.exhibit_home_page_path(exhibit.home_page)
|
39
|
-
click_link
|
40
|
-
click_link
|
39
|
+
click_link 'Genre'
|
40
|
+
click_link 'map'
|
41
41
|
expect(page).to have_content exhibit.title
|
42
|
-
expect(page).to have_content
|
42
|
+
expect(page).to have_content 'You searched for: Genre map'
|
43
43
|
end
|
44
44
|
|
45
|
-
it
|
45
|
+
it 'has a search box' do
|
46
46
|
visit spotlight.exhibit_home_page_path(exhibit.home_page)
|
47
|
-
fill_in
|
48
|
-
click_button
|
47
|
+
fill_in 'q', with: 'query'
|
48
|
+
click_button 'Search'
|
49
49
|
|
50
50
|
expect(page).to have_content exhibit.title
|
51
|
-
expect(page).to have_content
|
51
|
+
expect(page).to have_content 'You searched for: query'
|
52
52
|
end
|
53
53
|
|
54
|
-
it
|
54
|
+
it 'has <meta> tags' do
|
55
55
|
TopHat.current['twitter_card'] = nil
|
56
56
|
visit spotlight.exhibit_home_page_path(exhibit.home_page)
|
57
57
|
|
@@ -59,32 +59,32 @@ describe "Home page", :type => :feature do
|
|
59
59
|
expect(page).to have_css "meta[name='twitter:url'][value='#{spotlight.exhibit_root_url(exhibit)}']", visible: false
|
60
60
|
end
|
61
61
|
|
62
|
-
describe
|
63
|
-
describe
|
62
|
+
describe 'page options on edit form' do
|
63
|
+
describe 'show title' do
|
64
64
|
let(:home_page) { FactoryGirl.create(:home_page, display_title: false, exhibit: exhibit) }
|
65
|
-
it
|
65
|
+
it 'is updatable from the edit page' do
|
66
66
|
expect(home_page.display_title).to be_falsey
|
67
67
|
|
68
68
|
visit spotlight.edit_exhibit_home_page_path(home_page.exhibit, home_page)
|
69
|
-
expect(find(
|
69
|
+
expect(find('#home_page_display_title')).not_to be_checked
|
70
70
|
|
71
|
-
check
|
72
|
-
click_button
|
71
|
+
check 'Show title'
|
72
|
+
click_button 'Save changes'
|
73
73
|
|
74
74
|
visit spotlight.edit_exhibit_home_page_path(home_page.exhibit, home_page)
|
75
|
-
expect(find(
|
75
|
+
expect(find('#home_page_display_title')).to be_checked
|
76
76
|
end
|
77
77
|
end
|
78
78
|
end
|
79
79
|
|
80
|
-
describe
|
80
|
+
describe 'when configured to not display sidebar' do
|
81
81
|
before do
|
82
|
-
exhibit.home_page.display_sidebar =false
|
82
|
+
exhibit.home_page.display_sidebar = false
|
83
83
|
exhibit.home_page.save
|
84
84
|
end
|
85
|
-
it
|
85
|
+
it 'does not display the facet sidebar' do
|
86
86
|
visit spotlight.exhibit_home_page_path(exhibit.home_page)
|
87
|
-
expect(page).not_to have_css(
|
87
|
+
expect(page).not_to have_css('#sidebar')
|
88
88
|
end
|
89
89
|
end
|
90
90
|
end
|
@@ -1,13 +1,15 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
require 'tempfile'
|
3
3
|
|
4
|
-
describe
|
5
|
-
let(:exhibit) { FactoryGirl.create(:
|
4
|
+
describe 'Allow exhibit admins to import and export content from an exhibit', type: :feature, js: true do
|
5
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
6
6
|
let(:user) { FactoryGirl.create(:exhibit_admin, exhibit: exhibit) }
|
7
7
|
before { login_as user }
|
8
8
|
|
9
|
-
pending
|
10
|
-
pending(
|
9
|
+
pending 'should allow admins to export content from an exhibit' do
|
10
|
+
pending(%(There's not really any good way to test the contents of a
|
11
|
+
downloaded file with Poltergeist (which is now necessary since we've moved
|
12
|
+
the export option behind a bootstrap tab)))
|
11
13
|
visit spotlight.exhibit_home_page_path(exhibit, exhibit.home_page)
|
12
14
|
|
13
15
|
click_link user.email
|
@@ -15,20 +17,21 @@ describe "Allow exhibit admins to import and export content from an exhibit", ty
|
|
15
17
|
click_link 'Dashboard'
|
16
18
|
end
|
17
19
|
|
18
|
-
click_link
|
19
|
-
within(
|
20
|
-
click_link
|
20
|
+
click_link 'Settings'
|
21
|
+
within('.nav-tabs') do
|
22
|
+
click_link 'Export data'
|
21
23
|
end
|
22
|
-
within(
|
23
|
-
click_link
|
24
|
+
within('#export') do
|
25
|
+
click_link 'Export data'
|
24
26
|
end
|
25
27
|
|
26
28
|
data = JSON.parse(page.body)
|
27
29
|
|
28
|
-
expect(data).to include
|
30
|
+
expect(data).to include 'title', 'searches', 'home_page'
|
29
31
|
end
|
30
32
|
|
31
|
-
it
|
33
|
+
it 'allows admins to import content into an exhibit' do
|
34
|
+
pending 'PhantomJS 2.0.0 is unable to upload files; see https://github.com/ariya/phantomjs/issues/12506'
|
32
35
|
visit spotlight.exhibit_home_page_path(exhibit, exhibit.home_page)
|
33
36
|
|
34
37
|
click_link user.email
|
@@ -36,25 +39,25 @@ describe "Allow exhibit admins to import and export content from an exhibit", ty
|
|
36
39
|
click_link 'Dashboard'
|
37
40
|
end
|
38
41
|
|
39
|
-
click_link
|
42
|
+
click_link 'Settings'
|
40
43
|
|
41
|
-
within(
|
42
|
-
click_link
|
44
|
+
within('.nav-tabs') do
|
45
|
+
click_link 'Import data'
|
43
46
|
end
|
44
47
|
|
45
48
|
file = Tempfile.new('foo')
|
46
|
-
file.write({
|
49
|
+
file.write({ 'title' => 'A better title' }.to_json)
|
47
50
|
file.rewind
|
48
51
|
begin
|
49
|
-
attach_file(
|
50
|
-
within(
|
51
|
-
click_button
|
52
|
+
attach_file('file', File.expand_path(file.path))
|
53
|
+
within('#import') do
|
54
|
+
click_button 'Import data'
|
52
55
|
end
|
53
56
|
ensure
|
54
57
|
file.close
|
55
58
|
file.unlink
|
56
59
|
end
|
57
|
-
expect(page).to have_content
|
58
|
-
expect(page).to have_content
|
60
|
+
expect(page).to have_content 'The exhibit was successfully updated.'
|
61
|
+
expect(page).to have_content 'A better title'
|
59
62
|
end
|
60
63
|
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require
|
1
|
+
require 'spec_helper'
|
2
2
|
|
3
|
-
describe
|
4
|
-
let(:exhibit) { FactoryGirl.create(:
|
3
|
+
describe 'Item Administration', type: :feature do
|
4
|
+
let(:exhibit) { FactoryGirl.create(:default_exhibit) }
|
5
5
|
let(:curator) { FactoryGirl.create(:exhibit_curator, exhibit: exhibit) }
|
6
6
|
before { login_as curator }
|
7
7
|
|
@@ -9,50 +9,49 @@ describe "Item Administration", :type => :feature do
|
|
9
9
|
allow_any_instance_of(::SolrDocument).to receive_messages(reindex: true)
|
10
10
|
end
|
11
11
|
|
12
|
-
describe
|
13
|
-
it "
|
12
|
+
describe 'admin' do
|
13
|
+
it "does not have a 'Save this search' button" do
|
14
14
|
visit spotlight.admin_exhibit_catalog_index_path(exhibit)
|
15
|
-
expect(page).not_to have_css(
|
15
|
+
expect(page).not_to have_css('button', text: 'Save this search')
|
16
16
|
end
|
17
|
-
it
|
17
|
+
it 'has catalog items' do
|
18
18
|
visit spotlight.admin_exhibit_catalog_index_path(exhibit)
|
19
|
-
expect(page).to have_css(
|
20
|
-
expect(page).to have_css(
|
21
|
-
expect(page).to have_css(
|
22
|
-
|
23
|
-
item = first(
|
24
|
-
expect(item).to have_link
|
25
|
-
expect(item).to have_link
|
19
|
+
expect(page).to have_css('h1 small', text: 'Items')
|
20
|
+
expect(page).to have_css('table#documents')
|
21
|
+
expect(page).to have_css('.pagination')
|
22
|
+
|
23
|
+
item = first('tr[itemscope]')
|
24
|
+
expect(item).to have_link 'View'
|
25
|
+
expect(item).to have_link 'Edit'
|
26
26
|
end
|
27
27
|
|
28
|
-
it
|
28
|
+
it 'has a public/private toggle' do
|
29
29
|
visit spotlight.admin_exhibit_catalog_index_path(exhibit)
|
30
|
-
item = first(
|
31
|
-
expect(item).to have_button
|
32
|
-
item.click_button
|
30
|
+
item = first('tr[itemscope]')
|
31
|
+
expect(item).to have_button 'Make Private'
|
32
|
+
item.click_button 'Make Private'
|
33
33
|
|
34
|
-
item = first(
|
35
|
-
expect(item).to have_button
|
36
|
-
item.click_button
|
34
|
+
item = first('tr[itemscope]')
|
35
|
+
expect(item).to have_button 'Make Public'
|
36
|
+
item.click_button 'Make Public'
|
37
37
|
end
|
38
38
|
|
39
|
-
it "
|
39
|
+
it "toggles the 'blacklight-private' label", js: true do
|
40
40
|
visit spotlight.admin_exhibit_catalog_index_path(exhibit)
|
41
41
|
# The label should be toggled when the checkbox is clicked
|
42
|
-
expect(page).to_not have_css(
|
43
|
-
within
|
42
|
+
expect(page).to_not have_css('tr.blacklight-private')
|
43
|
+
within 'tr[itemscope]:first-child' do
|
44
44
|
find("input.toggle_visibility[type='checkbox']").click
|
45
45
|
end
|
46
|
-
expect(page).to have_css(
|
47
|
-
|
46
|
+
expect(page).to have_css('tr.blacklight-private')
|
48
47
|
|
49
48
|
# The label should show up on page load
|
50
|
-
expect(page).to have_css(
|
49
|
+
expect(page).to have_css('tr.blacklight-private')
|
51
50
|
visit spotlight.admin_exhibit_catalog_index_path(exhibit)
|
52
|
-
within
|
51
|
+
within 'tr[itemscope]:first-child' do
|
53
52
|
find("input.toggle_visibility[type='checkbox']").click
|
54
53
|
end
|
55
|
-
expect(page).to_not have_css(
|
54
|
+
expect(page).to_not have_css('tr.blacklight-private')
|
56
55
|
end
|
57
56
|
end
|
58
57
|
end
|