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
@@ -1,67 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
# TL;DR: YOU SHOULD DELETE THIS FILE
|
3
|
-
#
|
4
|
-
# This file iwas generated by Cucumber-Rails and is only here to get you a head start
|
5
|
-
# These step definitions are thin wrappers around the Capybara/Webrat API that lets you
|
6
|
-
# visit pages, interact with widgets and make assertions about page content.
|
7
|
-
#
|
8
|
-
# If you use these step definitions as basis for your features you will quickly end up
|
9
|
-
# with features that are:
|
10
|
-
#
|
11
|
-
# * Hard to maintain
|
12
|
-
# * Verbose to read
|
13
|
-
#
|
14
|
-
# A much better approach is to write your own higher level step definitions, following
|
15
|
-
# the advice in the following blog posts:
|
16
|
-
#
|
17
|
-
# * http://benmabey.com/2008/05/19/imperative-vs-declarative-scenarios-in-user-stories.html
|
18
|
-
# * http://dannorth.net/2011/01/31/whose-domain-is-it-anyway/
|
19
|
-
# * http://elabs.se/blog/15-you-re-cuking-it-wrong
|
20
|
-
#
|
21
|
-
|
22
|
-
ENV["RAILS_ENV"] ||= "test"
|
23
|
-
require File.expand_path("../../../../tmp/test_app/config/environment.rb", __FILE__)
|
24
|
-
ENV["RAILS_ROOT"] ||= File.dirname(__FILE__) + "../../../../tmp/test_app"
|
25
|
-
|
26
|
-
require 'cucumber/rails'
|
27
|
-
#Dir.glob(File.join(File.dirname(__FILE__), '../factories/*.rb')).each {|f| require f }
|
28
|
-
|
29
|
-
# Capybara defaults to XPath selectors rather than Webrat's default of CSS3. In
|
30
|
-
# order to ease the transition to Capybara we set the default here. If you'd
|
31
|
-
# prefer to use XPath just remove this line and adjust any selectors in your
|
32
|
-
# steps to use the XPath syntax.
|
33
|
-
Capybara.default_selector = :css
|
34
|
-
|
35
|
-
# By default, any exception happening in your Rails application will bubble up
|
36
|
-
# to Cucumber so that your scenario will fail. This is a different from how
|
37
|
-
# your application behaves in the production environment, where an error page will
|
38
|
-
# be rendered instead.
|
39
|
-
#
|
40
|
-
# Sometimes we want to override this default behaviour and allow Rails to rescue
|
41
|
-
# exceptions and display an error page (just like when the app is running in production).
|
42
|
-
# Typical scenarios where you want to do this is when you test your error pages.
|
43
|
-
# There are two ways to allow Rails to rescue exceptions:
|
44
|
-
#
|
45
|
-
# 1) Tag your scenario (or feature) with @allow-rescue
|
46
|
-
#
|
47
|
-
# 2) Set the value below to true. Beware that doing this globally is not
|
48
|
-
# recommended as it will mask a lot of errors for you!
|
49
|
-
#
|
50
|
-
ActionController::Base.allow_rescue = false
|
51
|
-
|
52
|
-
# Remove this line if your app doesn't have a database.
|
53
|
-
# For some databases (like MongoDB and CouchDB) you may need to use :truncation instead.
|
54
|
-
DatabaseCleaner.strategy = :transaction
|
55
|
-
|
56
|
-
# Stop endless errors like
|
57
|
-
# ~/.rvm/gems/ruby-1.9.2-p0@global/gems/rack-1.2.1/lib/rack/utils.rb:16:
|
58
|
-
# warning: regexp match /.../n against to UTF-8 string
|
59
|
-
$VERBOSE = nil
|
60
|
-
|
61
|
-
# include Engine routes in Cucumber world
|
62
|
-
module EngineRoutesHelper
|
63
|
-
include Atrium::Engine.routes.url_helpers
|
64
|
-
end
|
65
|
-
World(EngineRoutesHelper)
|
66
|
-
|
67
|
-
|
@@ -1,76 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
module NavigationHelpers
|
3
|
-
# Maps a name to a path. Used by the
|
4
|
-
#
|
5
|
-
# When /^I go to (.+)$/ do |page_name|
|
6
|
-
#
|
7
|
-
# step definition in web_steps.rb
|
8
|
-
#
|
9
|
-
def path_to(page_name)
|
10
|
-
case page_name
|
11
|
-
|
12
|
-
when /the home\s?page/
|
13
|
-
'/'
|
14
|
-
|
15
|
-
when /the new collection page/
|
16
|
-
new_atrium_collection_path
|
17
|
-
|
18
|
-
when /the collection search page for id (.+)/
|
19
|
-
atrium_collection_home_path($1)
|
20
|
-
|
21
|
-
when /the edit collection page for id (.+)/
|
22
|
-
edit_atrium_collection_path($1)
|
23
|
-
|
24
|
-
when /the collection home page for id (.+)/
|
25
|
-
atrium_collection_path($1)
|
26
|
-
|
27
|
-
when /the collection page with id (.+) having showcase with id (.+)/
|
28
|
-
atrium_collection_showcase_path($1, $2, nil)
|
29
|
-
|
30
|
-
when /the exhibit home page for id (.+) with facet "([^\"]*)"/
|
31
|
-
atrium_exhibit_path($1, :f=>{"pub_date"=>[$2]})
|
32
|
-
|
33
|
-
when /the exhibit edit page for id (.+)/
|
34
|
-
edit_atrium_exhibit_path($1)
|
35
|
-
|
36
|
-
when /the catalog page/
|
37
|
-
catalog_index_path
|
38
|
-
|
39
|
-
when /the folder page/
|
40
|
-
folder_index_path
|
41
|
-
|
42
|
-
when /the document page for id (.+)/
|
43
|
-
catalog_path($1)
|
44
|
-
|
45
|
-
when /the facet page for "([^\"]*)"/
|
46
|
-
catalog_facet_path($1)
|
47
|
-
|
48
|
-
when /the unAPI endpoint for "([^\"]+)" with format "([^\"]+)"/
|
49
|
-
unapi_path(:id => $1, :format => $2)
|
50
|
-
|
51
|
-
when /the unAPI endpoint for "([^\"]+)"/
|
52
|
-
unapi_path(:id => $1)
|
53
|
-
|
54
|
-
when /the unAPI endpoint/
|
55
|
-
unapi_path
|
56
|
-
|
57
|
-
# Add more mappings here.
|
58
|
-
# Here is an example that pulls values out of the Regexp:
|
59
|
-
#
|
60
|
-
# when /^(.*)'s profile page$/i
|
61
|
-
# user_profile_path(User.find_by_login($1))
|
62
|
-
|
63
|
-
else
|
64
|
-
begin
|
65
|
-
page_name =~ /the (.*) page/
|
66
|
-
path_components = $1.split(/\s+/)
|
67
|
-
self.send(path_components.push('path').join('_').to_sym)
|
68
|
-
rescue Object => e
|
69
|
-
raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
|
70
|
-
"Now, go and add a mapping in #{__FILE__}"
|
71
|
-
end
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
75
|
-
|
76
|
-
World(NavigationHelpers)
|
@@ -1,40 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
module HtmlSelectorsHelpers
|
3
|
-
# Maps a name to a selector. Used primarily by the
|
4
|
-
#
|
5
|
-
# When /^(.+) within (.+)$/ do |step, scope|
|
6
|
-
#
|
7
|
-
# step definitions in web_steps.rb
|
8
|
-
#
|
9
|
-
def selector_for(locator)
|
10
|
-
case locator
|
11
|
-
|
12
|
-
when /the page/
|
13
|
-
"html > body"
|
14
|
-
|
15
|
-
# Add more mappings here.
|
16
|
-
# Here is an example that pulls values out of the Regexp:
|
17
|
-
#
|
18
|
-
# when /the (notice|error|info) flash/
|
19
|
-
# ".flash.#{$1}"
|
20
|
-
|
21
|
-
# You can also return an array to use a different selector
|
22
|
-
# type, like:
|
23
|
-
#
|
24
|
-
# when /the header/
|
25
|
-
# [:xpath, "//header"]
|
26
|
-
|
27
|
-
# This allows you to provide a quoted selector as the scope
|
28
|
-
# for "within" steps as was previously the default for the
|
29
|
-
# web steps:
|
30
|
-
when /"(.+)"/
|
31
|
-
$1
|
32
|
-
|
33
|
-
else
|
34
|
-
raise "Can't find mapping from \"#{locator}\" to a selector.\n" +
|
35
|
-
"Now, go and add a mapping in #{__FILE__}"
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
World(HtmlSelectorsHelpers)
|
@@ -1,13 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
-
|
3
|
-
describe Atrium::BaseController do
|
4
|
-
|
5
|
-
it "should add the necessary helpers to classes that include it" do
|
6
|
-
Atrium::BaseController.solr_search_params_logic.should include(:add_exclude_fq_to_solr)
|
7
|
-
end
|
8
|
-
|
9
|
-
it 'should delegate blacklight_config to CatalogController' do
|
10
|
-
# CatalogController.expects(:blacklight_config).returns(:returning_value)
|
11
|
-
Atrium::BaseController.new.send(:blacklight_config).should == CatalogController.blacklight_config
|
12
|
-
end
|
13
|
-
end
|
@@ -1,29 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
-
|
3
|
-
describe Atrium::CollectionExhibitOrderController do
|
4
|
-
|
5
|
-
describe "Get index" do
|
6
|
-
it "should render JSON of session" do
|
7
|
-
exhibit_order = {'key' => 'value'}
|
8
|
-
mock_collection = mock("collection", :exhibit_order => exhibit_order)
|
9
|
-
|
10
|
-
Atrium::Collection.stubs(:find).with("1").returns(mock_collection)
|
11
|
-
get :index,{ :id=>"1", :format=> "json"}
|
12
|
-
|
13
|
-
JSON.parse(response.body).should == exhibit_order
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
17
|
-
describe "Post update" do
|
18
|
-
it "should render JSON of exhibit order after updating the exhibit order" do
|
19
|
-
mock_collection = mock("collection")
|
20
|
-
mock_exhibit_order = {"1"=>"2", "2"=>"3","3"=>"1"}
|
21
|
-
Atrium::Collection.stubs(:find).with("1").returns(mock_collection)
|
22
|
-
mock_collection.expects(:exhibit_order=).with({"3"=>"1", "2"=>"3", "1"=>"2"}).returns(mock_exhibit_order)
|
23
|
-
mock_collection.expects("exhibit_order").returns(mock_exhibit_order)
|
24
|
-
post :update,{ :id=>"1", :collection =>{"1"=>"2", "2"=>"3", "3"=>"1"}, :format=> "json"}
|
25
|
-
response.body.should == mock_exhibit_order.to_json
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
|
-
end
|
@@ -1,185 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
-
|
3
|
-
describe Atrium::CollectionsController do
|
4
|
-
|
5
|
-
describe '#determine_collection_id' do
|
6
|
-
it 'should return collection id from params id' do
|
7
|
-
controller.params[:id] = '1'
|
8
|
-
collection_id=controller.send(:determine_collection_id)
|
9
|
-
collection_id.should == '1'
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should return collection id from params collection id' do
|
13
|
-
controller.params[:collection_id] = '1'
|
14
|
-
collection_id=controller.send(:determine_collection_id)
|
15
|
-
collection_id.should == '1'
|
16
|
-
end
|
17
|
-
|
18
|
-
it 'return nil if collection id not available in params' do
|
19
|
-
collection_id=controller.send(:determine_collection_id)
|
20
|
-
collection_id.should == nil
|
21
|
-
end
|
22
|
-
end
|
23
|
-
|
24
|
-
before do
|
25
|
-
@collection = mock("atrium_collection")
|
26
|
-
Atrium::Collection.stubs(:find).with("1").returns(@collection)
|
27
|
-
controller.stubs(:current_layout).returns("atrium")
|
28
|
-
end
|
29
|
-
|
30
|
-
describe "Get New" do
|
31
|
-
it "build new collection form" do
|
32
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
33
|
-
get :new
|
34
|
-
response.should redirect_to(edit_atrium_collection_path(:id=>1))
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
describe "POST create" do
|
39
|
-
it "redirects to the edit page" do
|
40
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
41
|
-
post :create
|
42
|
-
response.code.should == "302"
|
43
|
-
response.should redirect_to(edit_atrium_collection_path(:id=>1))
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
#describe "Get home_page_text_config" do
|
48
|
-
# it "home_page_text_config" do
|
49
|
-
# get :home_page_text_config, { :id => "1" }
|
50
|
-
# pending
|
51
|
-
# end
|
52
|
-
#end
|
53
|
-
|
54
|
-
describe "Get Set Collection Scope" do
|
55
|
-
before do
|
56
|
-
session[:folder_document_ids]=[]
|
57
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
58
|
-
end
|
59
|
-
|
60
|
-
it "set session documents to exhibit filter query params solr documents if present" do
|
61
|
-
@collection.stubs(:filter_query_params).returns(nil)
|
62
|
-
get :set_collection_scope, {:id => "1"}
|
63
|
-
response.should redirect_to(catalog_index_path)
|
64
|
-
end
|
65
|
-
|
66
|
-
it "set session documents to exhibit filter query params solr documents if present" do
|
67
|
-
@collection.stubs(:filter_query_params).returns({:solr_doc_ids=>"1,2,3"})
|
68
|
-
get :set_collection_scope, {:id => "1"}
|
69
|
-
session[:folder_document_ids] == ["1", "2", "3"]
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
|
74
|
-
describe "Get Unset Collection Scope" do
|
75
|
-
before do
|
76
|
-
session[:folder_document_ids]=[]
|
77
|
-
@exhibit = mock("atrium_exhibit")
|
78
|
-
Atrium::Exhibit.stubs(:new).returns(@exhibit)
|
79
|
-
@collection.expects(:update_attributes).returns(true)
|
80
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
81
|
-
end
|
82
|
-
|
83
|
-
it "sets a flash[:notice] after removing scope of the collection" do
|
84
|
-
get :unset_collection_scope, {:id => "1"}
|
85
|
-
flash[:notice].should eq('Collection scope removed successfully')
|
86
|
-
end
|
87
|
-
|
88
|
-
it "redirects to the edit page" do
|
89
|
-
put :unset_collection_scope, {:id => "1"}
|
90
|
-
response.code.should == "200"
|
91
|
-
response.should render_template("edit")
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
describe "Get Edit" do
|
96
|
-
before do
|
97
|
-
@exhibit = mock("atrium_exhibit")
|
98
|
-
Atrium::Exhibit.stubs(:new).returns(@exhibit)
|
99
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
100
|
-
end
|
101
|
-
it "build collection form for given collection id" do
|
102
|
-
get :edit, { :id => "1" }
|
103
|
-
response.should render_template 'layouts/atrium'
|
104
|
-
response.should render_template("edit")
|
105
|
-
end
|
106
|
-
end
|
107
|
-
|
108
|
-
describe "Put Update" do
|
109
|
-
before do
|
110
|
-
@exhibit = mock("atrium_exhibit")
|
111
|
-
Atrium::Exhibit.stubs(:new).returns(@exhibit)
|
112
|
-
controller.stubs(:get_exhibit_navigation_data).returns([])
|
113
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
114
|
-
end
|
115
|
-
it "sets a flash[:notice] after successful update" do
|
116
|
-
@collection.expects(:update_attributes).returns(true)
|
117
|
-
put :update, {:id => "1", :atrium_collection =>{:title => "testing collection controller"}}
|
118
|
-
flash[:notice].should eq('Collection was successfully updated.')
|
119
|
-
end
|
120
|
-
|
121
|
-
it "redirects to the edit page" do
|
122
|
-
@collection.expects(:update_attributes).returns(true)
|
123
|
-
put :update, {:id => "1", :atrium_collection =>{:title => "testing collection controller"}}
|
124
|
-
response.code.should == "200"
|
125
|
-
response.should render_template("edit")
|
126
|
-
end
|
127
|
-
|
128
|
-
it "redirects to the edit page with error message" do
|
129
|
-
@collection.expects(:update_attributes).returns(false)
|
130
|
-
put :update, {:id => "1", :atrium_collection =>{:title => "testing collection controller"}}
|
131
|
-
flash[:notice].should_not eq('Collection was successfully updated.')
|
132
|
-
response.should render_template("edit")
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
describe "Get Show" do
|
137
|
-
before do
|
138
|
-
controller.stubs(:get_exhibit_navigation_data).returns([])
|
139
|
-
end
|
140
|
-
it "returns collection of the given collection id with template" do
|
141
|
-
Atrium::Showcase.expects(:with_selected_facets).returns([])
|
142
|
-
@collection.expects(:filter_query_params).returns(nil)
|
143
|
-
get :show, { :id => "1" }
|
144
|
-
response.should render_template 'layouts/atrium'
|
145
|
-
response.should render_template("show")
|
146
|
-
end
|
147
|
-
|
148
|
-
it "should return only items that are added through collection scope filter" do
|
149
|
-
@collection.stubs(:filter_query_params).returns({:solr_doc_ids=>"1,2,3"})
|
150
|
-
controller.expects(:get_solr_response_for_field_values).returns([])
|
151
|
-
assigns(:items_document_ids) == ["1", "2", "3"]
|
152
|
-
end
|
153
|
-
|
154
|
-
#it "should return any featured item added through showcase" do
|
155
|
-
# @showcase = mock("atrium_showcase")
|
156
|
-
# Atrium::Showcase.expects(:with_selected_facets).returns([@showcase])
|
157
|
-
# @collection.stubs(:filter_query_params).returns({:solr_doc_ids=>"1,2,3"})
|
158
|
-
# controller.expects(:get_solr_response_for_field_values).returns([])
|
159
|
-
# assigns(:items_document_ids) == ["1", "2", "3"]
|
160
|
-
#end
|
161
|
-
#
|
162
|
-
#it "should return any descriptions added through showcase" do
|
163
|
-
# pending
|
164
|
-
#end
|
165
|
-
end
|
166
|
-
|
167
|
-
describe "Delete" do
|
168
|
-
before do
|
169
|
-
@exhibit = mock("atrium_exhibit")
|
170
|
-
Atrium::Exhibit.stubs(:new).returns(@exhibit)
|
171
|
-
@collection.expects(:destroy).returns(true)
|
172
|
-
controller.stubs(:initialize_collection).returns(@collection)
|
173
|
-
end
|
174
|
-
it "destroy exhibit successfully" do
|
175
|
-
delete :destroy, { :id => "1" }
|
176
|
-
flash[:notice].should == "Collection deleted."
|
177
|
-
end
|
178
|
-
|
179
|
-
it "redirects to catalog index" do
|
180
|
-
delete :destroy, { :id => "1" }
|
181
|
-
response.should redirect_to(catalog_index_path)
|
182
|
-
end
|
183
|
-
end
|
184
|
-
|
185
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')
|
2
|
-
|
3
|
-
describe Atrium::CustomizationController do
|
4
|
-
|
5
|
-
describe "Get start" do
|
6
|
-
before do
|
7
|
-
session[:edit_showcase]=true
|
8
|
-
end
|
9
|
-
|
10
|
-
it "should render html response" do
|
11
|
-
xhr :get, :start, :type=>"collection", :id=>"1"
|
12
|
-
response.should redirect_to(atrium_collection_path(:id=>1))
|
13
|
-
end
|
14
|
-
|
15
|
-
it "should render JSON of session" do
|
16
|
-
xhr :get, :start, :format=>"json"
|
17
|
-
response.body.should == session[:edit_showcase].to_json
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
21
|
-
|
22
|
-
describe "Get stop" do
|
23
|
-
before do
|
24
|
-
session[:edit_showcase]=nil
|
25
|
-
end
|
26
|
-
it "should render html response" do
|
27
|
-
xhr :get, :stop, :type=>"collection", :id=>"1"
|
28
|
-
response.should redirect_to(atrium_collection_path(:id=>1))
|
29
|
-
end
|
30
|
-
|
31
|
-
it "should render JSON of session" do
|
32
|
-
xhr :get, :stop, :format=>"json"
|
33
|
-
response.body.should == session[:edit_showcase].to_json
|
34
|
-
end
|
35
|
-
|
36
|
-
end
|
37
|
-
|
38
|
-
end
|