atrium 0.0.1 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +9 -1
- data/.rspec +2 -0
- data/.rvmrc +1 -1
- data/CONTRIBUTING.md +73 -0
- data/Gemfile +27 -2
- data/Gemfile.lock +122 -246
- data/Guardfile +40 -10
- data/LICENSE +14 -0
- data/README.mkd +23 -39
- data/ROADMAP.mkd +41 -9
- data/Rakefile +39 -4
- data/app/assets/images/atrium/remove.png +0 -0
- data/app/assets/images/atrium/white-arrow.png +0 -0
- data/app/assets/javascripts/{atrium/atrium.js → atrium.js} +8 -153
- data/app/assets/stylesheets/{atrium/atrium.css → atrium.css} +110 -37
- data/app/assets/stylesheets/atrium/collections.css +4 -0
- data/app/assets/stylesheets/atrium/descriptions.css +4 -0
- data/app/assets/stylesheets/atrium/exhibits.css +4 -0
- data/app/assets/stylesheets/atrium/reset.css +69 -0
- data/app/assets/stylesheets/atrium/showcases.css +4 -0
- data/app/assets/stylesheets/atrium/theme.css +248 -0
- data/app/controllers/atrium/application_controller.rb +12 -0
- data/app/controllers/atrium/browse_levels_controller.rb +22 -0
- data/app/controllers/atrium/collections_controller.rb +42 -138
- data/app/controllers/atrium/descriptions_controller.rb +27 -146
- data/app/controllers/atrium/exhibits_controller.rb +51 -77
- data/app/controllers/atrium/order_controller.rb +74 -0
- data/app/controllers/atrium/showcases_controller.rb +96 -117
- data/app/helpers/atrium/application_helper.rb +8 -0
- data/app/helpers/atrium/collections_helper.rb +44 -0
- data/app/helpers/atrium/descriptions_helper.rb +4 -0
- data/app/helpers/atrium/exhibits_helper.rb +4 -0
- data/app/helpers/atrium/showcases_helper.rb +34 -0
- data/app/models/atrium/browse_level.rb +21 -11
- data/app/models/atrium/collection.rb +70 -36
- data/app/models/atrium/configuration.rb +66 -0
- data/app/models/atrium/description.rb +39 -88
- data/app/models/atrium/essay.rb +4 -5
- data/app/models/atrium/exhibit.rb +28 -19
- data/app/models/atrium/is_showcased_mixin.rb +34 -0
- data/app/models/atrium/query_param_mixin.rb +105 -0
- data/app/models/atrium/search/facet.rb +14 -25
- data/app/models/atrium/search/facet_selection.rb +10 -12
- data/app/models/atrium/showcase.rb +105 -95
- data/app/models/atrium/showcase/facet_selection.rb +18 -18
- data/app/models/atrium/showcase/featured_selection.rb +15 -0
- data/app/services/browse_level_evaluation_service.rb +131 -0
- data/app/services/current_filter_query_params_extraction_service.rb +91 -0
- data/app/services/navigation_tree.rb +13 -0
- data/app/services/params_adaptor_for_filter.rb +18 -0
- data/app/views/atrium/collections/_form.html.erb +149 -72
- data/app/views/atrium/collections/_head.html.erb +3 -0
- data/app/views/atrium/collections/edit.html.erb +1 -4
- data/app/views/atrium/collections/index.html.erb +14 -0
- data/app/views/atrium/collections/new.html.erb +2 -5
- data/app/views/atrium/collections/show.html.erb +11 -29
- data/app/views/atrium/descriptions/_form.html.erb +47 -49
- data/app/views/atrium/descriptions/edit.html.erb +1 -2
- data/app/views/atrium/descriptions/index.html.erb +2 -8
- data/app/views/atrium/descriptions/new.html.erb +2 -1
- data/app/views/atrium/descriptions/show.html.erb +2 -20
- data/app/views/atrium/exhibits/_exhibit.html.erb +1 -0
- data/app/views/atrium/exhibits/_form.html.erb +143 -96
- data/app/views/atrium/exhibits/edit.html.erb +1 -8
- data/app/views/atrium/exhibits/index.html.erb +2 -0
- data/app/views/atrium/exhibits/new.html.erb +0 -5
- data/app/views/atrium/exhibits/show.html.erb +2 -34
- data/app/views/atrium/showcases/_configure_menu.html.erb +55 -0
- data/app/views/atrium/showcases/_form.html.erb +40 -0
- data/app/views/atrium/showcases/edit.html.erb +3 -0
- data/app/views/atrium/showcases/index.html.erb +32 -0
- data/app/views/atrium/showcases/new.html.erb +3 -0
- data/app/views/atrium/showcases/show.html.erb +2 -1
- data/app/views/layouts/atrium.html.erb +16 -24
- data/app/views/layouts/atrium/application.html.erb +49 -0
- data/app/views/layouts/atrium/themes/default.html.erb +15 -0
- data/app/views/shared/_list_searchs.html.erb +4 -0
- data/app/views/shared/_navigation.html.erb +19 -0
- data/atrium.gemspec +31 -64
- data/config/routes.rb +40 -10
- data/{lib/generators/atrium/templates/migrations/create_atrium_collections.rb → db/migrate/20120730170406_create_atrium_collections.rb} +2 -1
- data/{lib/generators/atrium/templates/migrations/create_atrium_showcases.rb → db/migrate/20120731134846_create_atrium_showcases.rb} +3 -4
- data/{lib/generators/atrium/templates/migrations/create_atrium_exhibits.rb → db/migrate/20120731134856_create_atrium_exhibits.rb} +2 -1
- data/{lib/generators/atrium/templates/migrations/create_atrium_descriptions.rb → db/migrate/20120731134904_create_atrium_descriptions.rb} +2 -1
- data/{lib/generators/atrium/templates/migrations/create_atrium_essays.rb → db/migrate/20120731135534_create_atrium_essays.rb} +3 -2
- data/{lib/generators/atrium/templates/migrations/create_atrium_search_facets.rb → db/migrate/20120731135721_create_atrium_search_facets.rb} +1 -1
- data/{lib/generators/atrium/templates/migrations/create_atrium_showcase_facet_selections.rb → db/migrate/20120731140621_create_atrium_showcase_facet_selections.rb} +6 -2
- data/{lib/generators/atrium/templates/migrations/create_atrium_browse_levels.rb → db/migrate/20120801145241_create_atrium_browse_levels.rb} +1 -1
- data/db/migrate/20120820183808_create_selected_items.rb +16 -0
- data/db/migrate/20120823135716_update_atrium_collection_indices.rb +13 -0
- data/db/migrate/20120823143315_add_lookup_indices_as_required.rb +11 -0
- data/lib/atrium.rb +40 -36
- data/lib/atrium/engine.rb +4 -8
- data/lib/atrium/exceptions.rb +10 -0
- data/lib/atrium/version.rb +2 -2
- data/lib/generators/atrium/install/USAGE +8 -0
- data/lib/generators/atrium/install/install_generator.rb +86 -0
- data/lib/generators/atrium/install/templates/atrium_initializer.rb +21 -0
- data/lib/generators/atrium/install/templates/controllers/atrium_base_controller.rb +18 -0
- data/lib/generators/atrium/install/templates/controllers/collections_controller.rb +40 -0
- data/lib/generators/atrium/install/templates/controllers/descriptions_controller.rb +36 -0
- data/lib/generators/atrium/install/templates/controllers/exhibits_controller.rb +47 -0
- data/lib/generators/atrium/install/templates/controllers/selected_items_controller.rb +26 -0
- data/lib/generators/atrium/install/templates/helpers/application_helper.rb +42 -0
- data/lib/generators/atrium/install/templates/helpers/collections_helper.rb +15 -0
- data/lib/generators/atrium/install/templates/helpers/navigation_helper.rb +62 -0
- data/lib/generators/atrium/install/templates/helpers/solr_helper.rb +138 -0
- data/lib/generators/atrium/install/templates/models/selected_item.rb +7 -0
- data/lib/generators/atrium/install/templates/views/collections/_document.html.erb +19 -0
- data/lib/generators/atrium/install/templates/views/collections/_exhibits.html.erb +3 -0
- data/lib/generators/atrium/install/templates/views/collections/_pagination.html.erb +6 -0
- data/lib/generators/atrium/install/templates/views/collections/browse.html.erb +16 -0
- data/lib/generators/atrium/install/templates/views/collections/show.html.erb +19 -0
- data/lib/generators/atrium/install/templates/views/descriptions/show.html.erb +8 -0
- data/lib/generators/atrium/install/templates/views/exhibits/_document.html.erb +19 -0
- data/lib/generators/atrium/install/templates/views/exhibits/_pagination.html.erb +6 -0
- data/lib/generators/atrium/install/templates/views/exhibits/show.html.erb +28 -0
- data/lib/generators/atrium/install/templates/views/folder/_selected_items_form.html.erb +8 -0
- data/lib/generators/atrium/install/templates/views/folder/index.html.erb +45 -0
- data/lib/generators/atrium/install/templates/views/shared/_document_list.html.erb +14 -0
- data/lib/generators/atrium/install/templates/views/shared/_featured_sources.html.erb +19 -0
- data/lib/generators/atrium/install/templates/views/shared/_list_descriptions.html.erb +25 -0
- data/lib/generators/atrium/install/templates/views/shared/_masthead.html.erb +19 -0
- data/lib/generators/atrium/install/templates/views/shared/_navigation_browse_level.html.erb +34 -0
- data/lib/generators/atrium/install/templates/views/shared/_showcases.html.erb +12 -0
- data/lib/generators/atrium/install/templates/views/shared/_side_bar_navigation.html.erb +20 -0
- data/lib/generators/atrium/service/USAGE +9 -0
- data/lib/generators/atrium/service/service_generator.rb +16 -0
- data/lib/generators/atrium/service/templates/service.rb.erb +2 -0
- data/lib/generators/atrium/service/templates/service_spec.rb.erb +4 -0
- data/lib/generators/atrium/theme/USAGE +8 -0
- data/lib/generators/atrium/theme/templates/theme.html.erb +14 -0
- data/lib/generators/atrium/theme/theme_generator.rb +11 -0
- data/lib/tasks/atrium_tasks.rake +4 -0
- data/script/rails +10 -0
- data/spec/atrium_spec.rb +10 -0
- data/spec/controllers/atrium/application_controller_spec.rb +7 -0
- data/spec/controllers/atrium/collections_controller_spec.rb +125 -0
- data/spec/controllers/atrium/descriptions_controller_spec.rb +142 -0
- data/spec/controllers/atrium/exhibits_controller_spec.rb +102 -0
- data/spec/controllers/atrium/order_controller_spec.rb +100 -0
- data/spec/controllers/atrium/showcases_controller_spec.rb +217 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/models/collection.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +59 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/db/schema.rb +124 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/test/fixtures/collections.yml +11 -0
- data/spec/dummy/test/unit/collection_test.rb +7 -0
- data/spec/factories/atrium_collections.rb +8 -0
- data/spec/factories/atrium_exhibits.rb +9 -0
- data/spec/factories/atrium_search_facets.rb +8 -0
- data/spec/factories/atrium_showcases.rb +25 -0
- data/spec/helpers/atrium/collections_helper_spec.rb +57 -0
- data/spec/helpers/atrium/showcases_helper_spec.rb +56 -0
- data/spec/models/atrium/browse_level_spec.rb +56 -0
- data/spec/models/atrium/collection_spec.rb +76 -0
- data/spec/models/atrium/configuration_spec.rb +114 -0
- data/spec/models/atrium/description_spec.rb +56 -0
- data/spec/models/atrium/essay_spec.rb +16 -0
- data/spec/models/atrium/exhibit_spec.rb +90 -0
- data/spec/models/atrium/search/facet_selection_spec.rb +23 -0
- data/{test_support/spec → spec}/models/atrium/search/facet_spec.rb +2 -4
- data/{test_support/spec → spec}/models/atrium/showcase/facet_selection_spec.rb +5 -5
- data/spec/models/atrium/showcase/featured_selection_spec.rb +18 -0
- data/spec/models/atrium/showcase_spec.rb +97 -0
- data/spec/services/browse_level_evaluation_service_spec.rb +33 -0
- data/spec/services/current_filter_query_params_extraction_service_spec.rb +34 -0
- data/spec/services/navigation_tree_spec.rb +18 -0
- data/spec/services/params_adaptor_for_filter_spec.rb +8 -0
- data/spec/spec_helper.rb +39 -0
- data/spec/support/accept_nested_attributes_for.rb +39 -0
- data/{test_support/spec → spec}/support/be_accessible_matcher.rb +0 -0
- data/{test_support/spec → spec}/support/be_routed_mixin.rb +0 -0
- data/spec/support/controller_hacks.rb +35 -0
- data/spec/support/routes.rb +5 -0
- data/spec/support/shared_examples/is_showcased_mixin.rb +20 -0
- data/spec/support/shared_examples/query_param_mixin.rb +179 -0
- data/{app/assets/stylesheets/atrium → vendor/assets/images}/chosen-sprite.png +0 -0
- data/{app → vendor}/assets/javascripts/chosen.jquery.js +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor.warning.js +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/config.js.coffee +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/jquery.generateId.js +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/jquery.jeditable.ckeditor.js +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/plugins/linkItem/application_link.png +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/plugins/linkItem/dialogs/linkItem.js +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/plugins/linkItem/plugin.js +0 -0
- data/{app → vendor}/assets/javascripts/ckeditor/plugins/linkItem/ui_toolbar_pencil.png +0 -0
- data/vendor/assets/javascripts/jquery-ui-1.8.23.custom.min.js +41 -0
- data/vendor/assets/javascripts/jquery-ui-build.txt +8 -0
- data/{app → vendor}/assets/javascripts/jquery.jeditable.js +0 -0
- data/{app/assets/stylesheets/atrium → vendor/assets/stylesheets}/chosen.css +4 -4
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/vendor/assets/stylesheets/ui-lightness/jquery-ui-1.8.23.custom.css +334 -0
- metadata +431 -949
- data/GETTING_STARTED.textile +0 -102
- data/app/assets/images/atrium/ajax-loader.gif +0 -0
- data/app/assets/images/atrium/lightbox-ico-loading.gif +0 -0
- data/app/assets/images/atrium/logo.png +0 -0
- data/app/assets/javascripts/jquery.colorbox.js +0 -864
- data/app/assets/stylesheets/colorbox.css +0 -42
- data/app/assets/stylesheets/controls.png +0 -0
- data/app/assets/stylesheets/loading.gif +0 -0
- data/app/controllers/atrium/base_controller.rb +0 -25
- data/app/controllers/atrium/collection_exhibit_order_controller.rb +0 -21
- data/app/controllers/atrium/customization_controller.rb +0 -41
- data/app/controllers/atrium/exhibit_facet_order_controller.rb +0 -19
- data/app/helpers/atrium/base_helper.rb +0 -6
- data/app/models/ability.rb +0 -14
- data/app/models/atrium/showcase/item.rb +0 -19
- data/app/models/role_mapper.rb +0 -23
- data/app/views/_user_util_links.html.erb +0 -25
- data/app/views/atrium/collections/_bookmark_control.html.erb +0 -25
- data/app/views/atrium/collections/_browse_index.html.erb +0 -20
- data/app/views/atrium/collections/_collection_items_index.html.erb +0 -10
- data/app/views/atrium/collections/_document.html.erb +0 -24
- data/app/views/atrium/collections/_document_list.html.erb +0 -6
- data/app/views/atrium/collections/_edit_navigation.html.erb +0 -20
- data/app/views/atrium/collections/_folder_control.html.erb +0 -12
- data/app/views/atrium/collections/_listing.html.erb +0 -18
- data/app/views/atrium/collections/_navigation.html.erb +0 -50
- data/app/views/atrium/collections/_results_pagination.html.erb +0 -9
- data/app/views/atrium/collections/_sort_and_per_page.html.erb +0 -23
- data/app/views/atrium/exhibits/_bookmark_control.html.erb +0 -25
- data/app/views/atrium/exhibits/_folder_control.html.erb +0 -12
- data/app/views/atrium/exhibits/_navigation.html.erb +0 -30
- data/app/views/atrium/showcases/_showcase_navigation.html.erb +0 -23
- data/app/views/catalog/_collection_home_text.html.erb +0 -6
- data/app/views/catalog/_constraints.html.erb +0 -9
- data/app/views/catalog/_default_collection_text.html.erb +0 -18
- data/app/views/catalog/_default_home_text.html.erb +0 -6
- data/app/views/catalog/_home_text.html.erb +0 -6
- data/app/views/catalog/_index_partials/_description.html.erb +0 -8
- data/app/views/catalog/_search_form.html.erb +0 -66
- data/app/views/catalog/_show_partials/_description.html.erb +0 -15
- data/app/views/catalog/browse_show.html.erb +0 -18
- data/app/views/catalog/index.html.erb +0 -41
- data/app/views/catalog/list_description.html.erb +0 -24
- data/app/views/catalog/list_item.html.erb +0 -3
- data/app/views/layouts/atrium_themes/default.html.erb +0 -4
- data/app/views/layouts/item_listing.html.erb +0 -36
- data/app/views/listing/_document.html.erb +0 -27
- data/app/views/listing/_document_list.html.erb +0 -3
- data/app/views/listing/_item_search.html.erb +0 -27
- data/app/views/shared/_banner.html.erb +0 -5
- data/app/views/shared/_collection_complete_list.html.erb +0 -33
- data/app/views/shared/_collection_search_form.html.erb +0 -12
- data/app/views/shared/_collection_title_header.html.erb +0 -3
- data/app/views/shared/_featured_sources.html.erb +0 -23
- data/app/views/shared/_list_descriptions.html.erb +0 -39
- data/app/views/shared/_navigation_browse_levels.html.erb +0 -34
- data/app/views/shared/_showcase_configure_menu.html.erb +0 -22
- data/app/views/shared/_top_navigation.html.erb +0 -9
- data/init.rb +0 -3
- data/lib/application_controller.rb +0 -24
- data/lib/atrium/application_helper.rb +0 -24
- data/lib/atrium/atrium_helper_behavior.rb +0 -159
- data/lib/atrium/catalog.rb +0 -203
- data/lib/atrium/collections_helper.rb +0 -172
- data/lib/atrium/controller.rb +0 -10
- data/lib/atrium/descriptions_helper.rb +0 -27
- data/lib/atrium/layout_helper.rb +0 -13
- data/lib/atrium/routes.rb +0 -100
- data/lib/atrium/solr_helper.rb +0 -440
- data/lib/generators/atrium/assets_generator.rb +0 -44
- data/lib/generators/atrium/atrium_generator.rb +0 -149
- data/lib/generators/atrium/cucumber_support_generator.rb +0 -29
- data/lib/generators/atrium/templates/config/role_map_cucumber.yml +0 -2
- data/lib/generators/atrium/templates/config/role_map_development.yml +0 -2
- data/lib/generators/atrium/templates/config/role_map_production.yml +0 -2
- data/lib/generators/atrium/templates/config/role_map_test.yml +0 -2
- data/lib/generators/atrium/templates/config/solr.yml +0 -10
- data/lib/generators/atrium/templates/db/seeds.rb +0 -87
- data/lib/generators/atrium/templates/migrations/create_atrium_showcase_items.rb +0 -17
- data/lib/generators/atrium/templates/themes/example.html.erb +0 -21
- data/lib/railties/all_tests.rake +0 -23
- data/lib/railties/atrium_cucumber.rake +0 -121
- data/lib/railties/index.rake +0 -37
- data/tasks/atrium.rake +0 -268
- data/tasks/atrium_rspec.rake +0 -91
- data/test_support/etc/Gemfile +0 -33
- data/test_support/etc/bundle_config +0 -3
- data/test_support/etc/rvmrc +0 -32
- data/test_support/features/atrium_collections.feature +0 -162
- data/test_support/features/atrium_exhibits.feature +0 -164
- data/test_support/features/step_definitions/atrium_collection_steps.rb +0 -102
- data/test_support/features/step_definitions/atrium_exhibit_steps.rb +0 -53
- data/test_support/features/step_definitions/bookmarks_steps.rb +0 -6
- data/test_support/features/step_definitions/error_steps.rb +0 -5
- data/test_support/features/step_definitions/folder_steps.rb +0 -27
- data/test_support/features/step_definitions/general_steps.rb +0 -50
- data/test_support/features/step_definitions/record_view_steps.rb +0 -12
- data/test_support/features/step_definitions/saved_searches_steps.rb +0 -22
- data/test_support/features/step_definitions/search_facets_steps.rb +0 -29
- data/test_support/features/step_definitions/search_history_steps.rb +0 -9
- data/test_support/features/step_definitions/search_result_steps.rb +0 -114
- data/test_support/features/step_definitions/search_steps.rb +0 -103
- data/test_support/features/step_definitions/user_steps.rb +0 -5
- data/test_support/features/step_definitions/web_steps.rb +0 -213
- data/test_support/features/support/env.rb +0 -67
- data/test_support/features/support/paths.rb +0 -76
- data/test_support/features/support/selectors.rb +0 -40
- data/test_support/fixtures/atrium_exhibits.yml +0 -3
- data/test_support/spec/controllers/atrium/base_controller_spec.rb +0 -13
- data/test_support/spec/controllers/atrium/collection_exhibit_order_controller_spec.rb +0 -29
- data/test_support/spec/controllers/atrium/collections_controller_spec.rb +0 -185
- data/test_support/spec/controllers/atrium/customization_controller_spec.rb +0 -38
- data/test_support/spec/controllers/atrium/descriptions_controller_spec.rb +0 -150
- data/test_support/spec/controllers/atrium/exhibit_facet_order_controller_spec.rb +0 -36
- data/test_support/spec/controllers/atrium/exhibits_controller_spec.rb +0 -192
- data/test_support/spec/controllers/atrium/showcases_controller_spec.rb +0 -219
- data/test_support/spec/helpers/atrium_collections_helper_spec.rb +0 -147
- data/test_support/spec/helpers/atrium_description_helper_spec.rb +0 -47
- data/test_support/spec/helpers/atrium_solr_helper_spec.rb +0 -522
- data/test_support/spec/models/atrium/browse_level_spec.rb +0 -31
- data/test_support/spec/models/atrium/collection_spec.rb +0 -30
- data/test_support/spec/models/atrium/description_spec.rb +0 -67
- data/test_support/spec/models/atrium/essay_spec.rb +0 -12
- data/test_support/spec/models/atrium/exhibit_spec.rb +0 -76
- data/test_support/spec/models/atrium/search/facet_selection_spec.rb +0 -24
- data/test_support/spec/models/atrium/search_facet_spec.rb +0 -54
- data/test_support/spec/models/atrium/showcase/item_spec.rb +0 -12
- data/test_support/spec/models/atrium/showcase_facet_selection_spec.rb +0 -65
- data/test_support/spec/models/atrium/showcase_spec.rb +0 -134
- data/test_support/spec/rcov.opts +0 -3
- data/test_support/spec/routing/atrium/collections_routing_spec.rb +0 -33
- data/test_support/spec/spec.opts +0 -4
- data/test_support/spec/spec_helper.rb +0 -47
- data/test_support/tmp/step_definitions/catalog_index_steps.rb +0 -14
- data/test_support/tmp/step_definitions/edit_document_steps.rb +0 -67
- data/test_support/tmp/step_definitions/hydra_metadata_steps.rb +0 -3
- data/test_support/tmp/step_definitions/hydra_steps.rb +0 -8
- data/test_support/tmp/step_definitions/search_steps.rb +0 -86
- data/test_support/tmp/step_definitions/searching_steps.rb +0 -22
- data/test_support/tmp/step_definitions/select_steps.rb +0 -8
- data/test_support/tmp/step_definitions/show_document_steps.rb +0 -73
- data/test_support/tmp/step_definitions/user_steps.rb +0 -15
- data/test_support/tmp/step_definitions/web_steps.rb +0 -273
- data/test_support/tmp/support/env.rb +0 -54
- data/test_support/tmp/support/paths.rb +0 -57
@@ -0,0 +1,56 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
|
2
|
+
|
3
|
+
describe Atrium::Description do
|
4
|
+
Given(:description) { Atrium::Description.new() }
|
5
|
+
it { should belong_to :showcase }
|
6
|
+
it { should have_one :essay }
|
7
|
+
it { should have_one :summary }
|
8
|
+
|
9
|
+
it { should be_accessible :description_solr_id }
|
10
|
+
it { should be_accessible :page_display }
|
11
|
+
it { should be_accessible :title }
|
12
|
+
it { should be_accessible :atrium_showcase_id }
|
13
|
+
it { should be_accessible :essay_attributes }
|
14
|
+
it { should be_accessible :summary_attributes }
|
15
|
+
it { should delegate(:summary_content).to(:summary).via(:content) }
|
16
|
+
it { should delegate(:essay_content).to(:essay).via(:content) }
|
17
|
+
it { description.should respond_to(:get_summary) }
|
18
|
+
it { description.should respond_to(:get_essay) }
|
19
|
+
|
20
|
+
context "#get_summary" do
|
21
|
+
end
|
22
|
+
|
23
|
+
context "#page_display?" do
|
24
|
+
context 'default value' do
|
25
|
+
Then { description.page_display.should == nil }
|
26
|
+
end
|
27
|
+
context 'set value' do
|
28
|
+
Given(:page_display) { 'test' }
|
29
|
+
When { description.page_display = page_display }
|
30
|
+
Then { description.page_display.should == "test" }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
context "#show_on_this_page?" do
|
35
|
+
context 'default value' do
|
36
|
+
Then { description.show_on_this_page?.should == true }
|
37
|
+
end
|
38
|
+
context 'set value' do
|
39
|
+
Given(:page_display) { 'newpage' }
|
40
|
+
When { description.page_display = page_display }
|
41
|
+
Then { description.show_on_this_page?.should == false }
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
context "#pretty title" do
|
46
|
+
context 'default value' do
|
47
|
+
When { description.id = 1 }
|
48
|
+
Then {description.pretty_title.should == "Description 1" }
|
49
|
+
end
|
50
|
+
context 'set value' do
|
51
|
+
Given(:title) { 'Hello World' }
|
52
|
+
When { description.title = title }
|
53
|
+
Then { description.pretty_title.should == title }
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
+
|
3
|
+
describe Atrium::Essay do
|
4
|
+
subject { Atrium::Essay.new(content: 'Hello') }
|
5
|
+
it { should belong_to :description }
|
6
|
+
|
7
|
+
it { should be_accessible :content }
|
8
|
+
it { should be_accessible :content_type }
|
9
|
+
|
10
|
+
it { should validate_presence_of :description }
|
11
|
+
|
12
|
+
it 'should delegate #blank? to #content#blank?' do
|
13
|
+
subject.content.should_receive(:blank?).and_return(:blank)
|
14
|
+
subject.blank?.should == :blank
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '../../../spec_helper')
|
2
|
+
|
3
|
+
describe Atrium::Exhibit do
|
4
|
+
|
5
|
+
it { should belong_to :collection }
|
6
|
+
|
7
|
+
it { should have_many :showcases }
|
8
|
+
|
9
|
+
it { should have_many :browse_levels }
|
10
|
+
|
11
|
+
it_behaves_like "query_param_mixin" do
|
12
|
+
Given(:subject) { Atrium::Exhibit.new }
|
13
|
+
end
|
14
|
+
|
15
|
+
it_behaves_like "is_showcased_mixin" do
|
16
|
+
Given(:subject) { FactoryGirl.create(:exhibit) }
|
17
|
+
end
|
18
|
+
|
19
|
+
context '#accessible attributes' do
|
20
|
+
it "should not allow access to exhibit fields" do
|
21
|
+
expect do
|
22
|
+
Atrium::Exhibit.new(set_number: 1, label:"test", filter_query_params:"this is filter query params")
|
23
|
+
end.should_not raise_error(ActiveModel::MassAssignmentSecurity::Error)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
context '#checking attributes' do
|
28
|
+
Given(:exhibit) { subject }
|
29
|
+
Given(:set_number) { 1234 }
|
30
|
+
When { exhibit.set_number = set_number }
|
31
|
+
When { exhibit.label = label }
|
32
|
+
context 'pretty_title default' do
|
33
|
+
Given(:label) { '' }
|
34
|
+
Then { exhibit.pretty_title.should == "Exhibit #{set_number}" }
|
35
|
+
end
|
36
|
+
|
37
|
+
context 'pretty_title overwritten' do
|
38
|
+
Given(:label) { 'Hello World'}
|
39
|
+
Then { exhibit.pretty_title.should == label }
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
|
44
|
+
context 'with database' do
|
45
|
+
before(:each) do
|
46
|
+
@collection = Atrium::Collection.new
|
47
|
+
@collection.save
|
48
|
+
@exhibit = Atrium::Exhibit.new(atrium_collection_id:@collection.id,set_number:1)
|
49
|
+
@exhibit.save
|
50
|
+
end
|
51
|
+
|
52
|
+
after(:each) do
|
53
|
+
@exhibit.delete
|
54
|
+
@collection.delete
|
55
|
+
end
|
56
|
+
|
57
|
+
describe "browse_facet_names" do
|
58
|
+
it "should return an array of browse facet names" do
|
59
|
+
@exhibit.browse_levels.create({solr_facet_name:"my_facet_1",label:"My Category",level_number:1})
|
60
|
+
@exhibit.browse_levels.create({solr_facet_name:"my_facet_2",label:"",level_number:2})
|
61
|
+
@exhibit.browse_facet_names.size.should == 2
|
62
|
+
@exhibit.browse_facet_names.include?("my_facet_1").should == true
|
63
|
+
@exhibit.browse_facet_names.include?("my_facet_2").should == true
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should remove associated showcases if a browse facet removed" do
|
67
|
+
pending "need to test that associated showcases are removed if a browse facet is removed..."
|
68
|
+
end
|
69
|
+
|
70
|
+
it "if no browse facets defined it should return an empty array" do
|
71
|
+
@exhibit.browse_facet_names.should == []
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe "browse_levels" do
|
76
|
+
it "should return array of levels used in browsing" do
|
77
|
+
@exhibit.browse_levels.create({solr_facet_name:"my_facet_1",label:"My Category",level_number:1})
|
78
|
+
@exhibit.browse_levels.create({solr_facet_name:"my_facet_2",label:"",level_number:2})
|
79
|
+
(@exhibit.browse_levels.collect {|x| x.solr_facet_name}).should == ["my_facet_1","my_facet_2"]
|
80
|
+
end
|
81
|
+
|
82
|
+
it "should return browse levels sorted by level number" do
|
83
|
+
@exhibit.browse_levels.create({solr_facet_name:"my_facet_1",label:"My Category",level_number:2})
|
84
|
+
@exhibit.browse_levels.create({solr_facet_name:"my_facet_2",label:"",level_number:1})
|
85
|
+
(@exhibit.browse_levels.collect {|x| x.solr_facet_name}).should == ["my_facet_2","my_facet_1"]
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Atrium::Search::FacetSelection do
|
4
|
+
subject { Atrium::Search::FacetSelection.new({ field_name: field_name })}
|
5
|
+
describe "should get facet lable from Atrium configuration" do
|
6
|
+
let(:field_name) { 'pub_date' }
|
7
|
+
describe '#label' do
|
8
|
+
context 'lookup from configuration' do
|
9
|
+
Given(:configured_expected_label) { 'Hello World'}
|
10
|
+
Given(:config) {
|
11
|
+
double_config = double('Config')
|
12
|
+
double_config.should_receive(:label_for_facet).
|
13
|
+
with(field_name).and_return(configured_expected_label)
|
14
|
+
double_config
|
15
|
+
}
|
16
|
+
Then {
|
17
|
+
Atrium.should_receive(:config).and_return(config)
|
18
|
+
subject.label.should == configured_expected_label
|
19
|
+
}
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -1,11 +1,9 @@
|
|
1
|
+
|
1
2
|
require File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper')
|
2
3
|
|
3
4
|
describe Atrium::Search::Facet do
|
4
5
|
it { should belong_to :collection }
|
5
6
|
|
6
|
-
it { should validate_presence_of :atrium_collection_id }
|
7
|
-
it { should be_accessible :atrium_collection_id }
|
8
|
-
|
9
7
|
it { should validate_presence_of :name }
|
10
8
|
it { should be_accessible :name }
|
11
|
-
end
|
9
|
+
end
|
@@ -1,15 +1,15 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper')
|
2
2
|
|
3
|
-
describe Atrium::Showcase::FacetSelection
|
4
|
-
|
3
|
+
describe Atrium::Showcase::FacetSelection do
|
5
4
|
it { should belong_to :showcase }
|
6
5
|
|
6
|
+
it { should validate_presence_of :atrium_showcase_id }
|
7
|
+
it { should be_accessible :atrium_showcase_id }
|
8
|
+
|
7
9
|
it { should validate_presence_of :value }
|
8
10
|
it { should be_accessible :value }
|
9
11
|
|
10
|
-
it { should validate_presence_of :atrium_showcase_id }
|
11
|
-
|
12
12
|
it { should validate_presence_of :solr_facet_name }
|
13
13
|
it { should be_accessible :solr_facet_name }
|
14
|
-
|
15
14
|
end
|
15
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper')
|
2
|
+
|
3
|
+
describe Atrium::Showcase::FeaturedSelection do
|
4
|
+
|
5
|
+
describe "retrieve solr id and title from hash" do
|
6
|
+
subject { Atrium::Showcase::FeaturedSelection.new({id:field_name, title:title})}
|
7
|
+
let(:field_name) { 'solr_doc_id' }
|
8
|
+
let(:title) { 'solr_doc_title' }
|
9
|
+
it 'should retrieve solr id from hash' do
|
10
|
+
subject.solr_id.should == 'solr_doc_id'
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'should retrieve title from hash' do
|
14
|
+
subject.title.should == 'solr_doc_title'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Atrium::Showcase do
|
4
|
+
Given(:showcase) { Atrium::Showcase.new() }
|
5
|
+
it { should have_many :descriptions }
|
6
|
+
it { should have_many :facet_selections }
|
7
|
+
it { should belong_to :showcases }
|
8
|
+
it { should delegate(:collection).to(:showcases) }
|
9
|
+
|
10
|
+
context "#checking parent type" do
|
11
|
+
Given(:exhibit) { Atrium::Exhibit.new }
|
12
|
+
Given(:collection) { Atrium::Collection.new }
|
13
|
+
context 'exhibit showcase' do
|
14
|
+
Given(:showcase) { exhibit.showcases.build}
|
15
|
+
Then { showcase.for_exhibit?.should == true }
|
16
|
+
end
|
17
|
+
context 'collection showcase' do
|
18
|
+
Given(:showcase) { collection.showcases.build}
|
19
|
+
Then { showcase.for_exhibit?.should_not == true }
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
context '#parent' do
|
24
|
+
Then { showcase.should alias_from(:showcases).to(:parent) }
|
25
|
+
end
|
26
|
+
context 'with database', database: true do
|
27
|
+
describe "#creating showcase without facet selection" do
|
28
|
+
it "should allow no facet selections defined" do
|
29
|
+
collection = Atrium::Collection.new
|
30
|
+
collection.save
|
31
|
+
showcase = Atrium::Showcase.new(showcases_id:collection.id, showcases_type:collection.class.name)
|
32
|
+
showcase.save!
|
33
|
+
showcase.facet_selections.should == []
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe "#with_selected_facets" do
|
38
|
+
before(:each) do
|
39
|
+
@collection = Atrium::Collection.new
|
40
|
+
@collection.save
|
41
|
+
@exhibit = Atrium::Exhibit.new(atrium_collection_id:@collection.id,set_number:1)
|
42
|
+
@exhibit.save
|
43
|
+
@collection_showcase = Atrium::Showcase.new(showcases_id:@collection.id, showcases_type:@collection.class.name)
|
44
|
+
@collection_showcase.save
|
45
|
+
@exhibit_showcase = Atrium::Showcase.new(showcases_id:@exhibit.id, showcases_type:@exhibit.class.name)
|
46
|
+
@exhibit_showcase.save
|
47
|
+
end
|
48
|
+
it "should return correct showcase with no facets selected" do
|
49
|
+
@showcase2 = Atrium::Showcase.new({showcases_id:@exhibit.id, showcases_type:@exhibit.class.name})
|
50
|
+
@showcase2.save!
|
51
|
+
@facet_selection2 = @showcase2.facet_selections.create({solr_facet_name:"my_facet2",value:"testing2"})
|
52
|
+
Atrium::Showcase.with_selected_facets(@exhibit.id).first.should == @showcase
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should return correct showcase with one facet selected" do
|
56
|
+
@showcase = Atrium::Showcase.new({showcases_id:@exhibit.id, showcases_type:@exhibit.class.name})
|
57
|
+
@showcase.save!
|
58
|
+
@facet_selection = @showcase.facet_selections.create({solr_facet_name:"my_facet",value:"testing"})
|
59
|
+
@showcase.save!
|
60
|
+
Atrium::Showcase.with_selected_facets(@exhibit.id, @exhibit.class.name, {@facet_selection.solr_facet_name=>@facet_selection.value}).first.should == @showcase
|
61
|
+
end
|
62
|
+
|
63
|
+
it "should return correct showcase with one facet selected but a showcase exists with same facet plus another" do
|
64
|
+
@showcase = Atrium::Showcase.new({showcases_id:@exhibit.id, showcases_type:@exhibit.class.name})
|
65
|
+
@showcase.save!
|
66
|
+
@facet_selection = @showcase.facet_selections.create({solr_facet_name:"my_facet",value:"testing"})
|
67
|
+
@showcase.save!
|
68
|
+
@showcase2 = Atrium::Showcase.new({showcases_id:@exhibit.id, showcases_type:@exhibit.class.name})
|
69
|
+
@showcase2.save!
|
70
|
+
@facet_selection2 = @showcase2.facet_selections.create({solr_facet_name:"my_facet2",value:"testing2"})
|
71
|
+
Atrium::Showcase.with_selected_facets(@exhibit.id, @exhibit.class.name, {@facet_selection.solr_facet_name=>@facet_selection.value}).first.should == @showcase
|
72
|
+
end
|
73
|
+
|
74
|
+
it "should return correct showcase with two facets selected" do
|
75
|
+
@showcase = Atrium::Showcase.new({showcases_id:@exhibit.id, showcases_type:@exhibit.class.name})
|
76
|
+
@showcase.save!
|
77
|
+
@facet_selection = @showcase.facet_selections.create({solr_facet_name:"my_facet",value:"testing"})
|
78
|
+
@facet_selection2 = @showcase.facet_selections.create({solr_facet_name:"my_facet2",value:"testing2"})
|
79
|
+
@showcase.save!
|
80
|
+
Atrium::Showcase.with_selected_facets(@exhibit.id, @exhibit.class.name, {@facet_selection2.solr_facet_name=>@facet_selection2.value,
|
81
|
+
@facet_selection.solr_facet_name=>@facet_selection.value}).first.should == @showcase
|
82
|
+
end
|
83
|
+
|
84
|
+
it "should return correct showcase with same facet selections but different exhibit" do
|
85
|
+
@showcase = Atrium::Showcase.new({showcases_id:@exhibit.id, showcases_type:@exhibit.class.name})
|
86
|
+
@showcase.save!
|
87
|
+
@facet_selection = @showcase.facet_selections.create({solr_facet_name:"my_facet",value:"testing"})
|
88
|
+
@exhibit2 = Atrium::Exhibit.new(atrium_collection_id:@collection.id,set_number:2)
|
89
|
+
@exhibit2.save!
|
90
|
+
@showcase2 = Atrium::Showcase.new({showcases_id:@exhibit2.id, showcases_type:@exhibit2.class.name})
|
91
|
+
@showcase2.save!
|
92
|
+
@facet_selection2 = @showcase2.facet_selections.create({solr_facet_name:"my_facet",value:"testing"})
|
93
|
+
Atrium::Showcase.with_selected_facets(@exhibit2.id,@exhibit2.class.name, {@facet_selection2.solr_facet_name=>@facet_selection2.value}).first.should == @showcase2
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe BrowseLevelEvaluationService do
|
4
|
+
Given(:solr_search_params_callable) { lambda{|arg1|} }
|
5
|
+
Given(:facet) { Object.new.tap {|o| def o.name; 'something'; end } }
|
6
|
+
Given(:facets) {
|
7
|
+
Object.new.tap {|o| def o.facets; []; end }
|
8
|
+
}
|
9
|
+
Given(:get_search_results_callable) {
|
10
|
+
lambda {|arg1,arg2| facets }
|
11
|
+
}
|
12
|
+
Given(:facet_in_params_callable) { lambda{|arg1,arg2|} }
|
13
|
+
Given(:browse_level_1) { Atrium::BrowseLevel.new(label: 'one') }
|
14
|
+
Given(:browse_level_2) { Atrium::BrowseLevel.new(label: 'two') }
|
15
|
+
Given(:collection) { Atrium::Collection.new }
|
16
|
+
Given(:browse_levels) { [browse_level_1,browse_level_2]}
|
17
|
+
Given(:exhibit) { Atrium::Exhibit.new }
|
18
|
+
Given(:params) { {f: 'hello'} }
|
19
|
+
Given(:extractor) {
|
20
|
+
BrowseLevelEvaluationService.new(
|
21
|
+
solr_search_params_callable,
|
22
|
+
get_search_results_callable,
|
23
|
+
facet_in_params_callable,
|
24
|
+
collection,
|
25
|
+
exhibit,
|
26
|
+
params
|
27
|
+
)
|
28
|
+
}
|
29
|
+
|
30
|
+
Then('placebo test in that it tests implementation not behavior') {
|
31
|
+
extractor.extract(browse_levels).should == [browse_level_1]
|
32
|
+
}
|
33
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe CurrentFilterQueryParamsExtractionService do
|
4
|
+
Given(:extractor) {
|
5
|
+
lambda {|arg|
|
6
|
+
{
|
7
|
+
q:'english',
|
8
|
+
fq:["{!raw f=format}Book"],
|
9
|
+
meaningless: true
|
10
|
+
}
|
11
|
+
}
|
12
|
+
}
|
13
|
+
Given(:object_with_params) {
|
14
|
+
Object.new.tap {|this|
|
15
|
+
def this.params
|
16
|
+
{q:'english',f:{"format"=>["Book"]}}
|
17
|
+
end
|
18
|
+
}
|
19
|
+
}
|
20
|
+
Given(:extract_service) {
|
21
|
+
CurrentFilterQueryParamsExtractionService.new(
|
22
|
+
extractor,
|
23
|
+
[object_with_params],
|
24
|
+
[:params]
|
25
|
+
)
|
26
|
+
}
|
27
|
+
|
28
|
+
Then do
|
29
|
+
extract_service.filter_query_params.should == {
|
30
|
+
fq: ["{!raw f=format}Book"],
|
31
|
+
q: "english"
|
32
|
+
}
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require_relative '../spec_helper'
|
2
|
+
|
3
|
+
describe NavigationTree do
|
4
|
+
Given(:browse_level_2) { Atrium::BrowseLevel.new(solr_facet_name: 'solr2') }
|
5
|
+
Given(:browse_level_1) { Atrium::BrowseLevel.new(solr_facet_name: 'solr1') }
|
6
|
+
Given(:navigation_tree) {
|
7
|
+
NavigationTree.new([browse_level_1, browse_level_2], facet_query_hash)
|
8
|
+
}
|
9
|
+
context 'with hash for second param' do
|
10
|
+
Given(:facet_query_hash) { { 'solr2' => 'hello', 'solr1' => 'world' } }
|
11
|
+
Then { navigation_tree.current_level.should == browse_level_2 }
|
12
|
+
end
|
13
|
+
|
14
|
+
context 'with nil for second param' do
|
15
|
+
Given(:facet_query_hash) { nil }
|
16
|
+
Then { navigation_tree.current_level.should == nil }
|
17
|
+
end
|
18
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
ENV["RAILS_ENV"] ||= 'test'
|
2
|
+
if ENV['COVERAGE']
|
3
|
+
require 'simplecov'
|
4
|
+
SimpleCov.start 'rails'
|
5
|
+
SimpleCov.command_name "spec"
|
6
|
+
end
|
7
|
+
|
8
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
9
|
+
require 'rspec/rails'
|
10
|
+
require 'rspec/autorun'
|
11
|
+
require 'rspec/given'
|
12
|
+
require 'ndlib-on-rspec'
|
13
|
+
require 'factory_girl'
|
14
|
+
FactoryGirl.find_definitions
|
15
|
+
|
16
|
+
|
17
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
18
|
+
# in spec/support/ and its subdirectories.
|
19
|
+
# Relative to HERE, NOT to Rails.root, which is off somewhere else.
|
20
|
+
Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each {|f| require f}
|
21
|
+
|
22
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
23
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
24
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
25
|
+
# loaded once.
|
26
|
+
#
|
27
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
28
|
+
RSpec.configure do |config|
|
29
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
30
|
+
config.run_all_when_everything_filtered = true
|
31
|
+
config.filter_run :focus
|
32
|
+
|
33
|
+
# Run specs in random order to surface order dependencies. If you find an
|
34
|
+
# order dependency and want to debug it, you can fix the order by providing
|
35
|
+
# the seed, which is printed after each run.
|
36
|
+
# --seed 1234
|
37
|
+
config.order = 'random'
|
38
|
+
config.use_transactional_fixtures = true
|
39
|
+
end
|