branston 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/bin/branston +4 -0
- data/lib/branston/README +1 -0
- data/lib/branston/Rakefile +20 -0
- data/lib/branston/app/controllers/application_controller.rb +13 -0
- data/lib/branston/app/controllers/iterations_controller.rb +106 -0
- data/lib/branston/app/controllers/outcomes_controller.rb +102 -0
- data/lib/branston/app/controllers/preconditions_controller.rb +106 -0
- data/lib/branston/app/controllers/releases_controller.rb +93 -0
- data/lib/branston/app/controllers/scenarios_controller.rb +104 -0
- data/lib/branston/app/controllers/sessions_controller.rb +44 -0
- data/lib/branston/app/controllers/stories_controller.rb +121 -0
- data/lib/branston/app/controllers/user_roles_controller.rb +91 -0
- data/lib/branston/app/controllers/users_controller.rb +28 -0
- data/lib/branston/app/helpers/application_helper.rb +14 -0
- data/lib/branston/app/helpers/iterations_helper.rb +2 -0
- data/lib/branston/app/helpers/outcomes_helper.rb +2 -0
- data/lib/branston/app/helpers/preconditions_helper.rb +2 -0
- data/lib/branston/app/helpers/releases_helper.rb +2 -0
- data/lib/branston/app/helpers/sessions_helper.rb +2 -0
- data/lib/branston/app/helpers/stories_helper.rb +2 -0
- data/lib/branston/app/helpers/user_roles_helper.rb +2 -0
- data/lib/branston/app/helpers/users_helper.rb +93 -0
- data/lib/branston/app/models/iteration.rb +15 -0
- data/lib/branston/app/models/outcome.rb +16 -0
- data/lib/branston/app/models/participation.rb +7 -0
- data/lib/branston/app/models/precondition.rb +16 -0
- data/lib/branston/app/models/release.rb +7 -0
- data/lib/branston/app/models/scenario.rb +14 -0
- data/lib/branston/app/models/story.rb +33 -0
- data/lib/branston/app/models/user.rb +56 -0
- data/lib/branston/app/models/user_role.rb +7 -0
- data/lib/branston/app/views/iterations/_form.html.erb +24 -0
- data/lib/branston/app/views/iterations/edit.html.erb +14 -0
- data/lib/branston/app/views/iterations/index.html.erb +31 -0
- data/lib/branston/app/views/iterations/new.html.erb +13 -0
- data/lib/branston/app/views/iterations/show.html.erb +39 -0
- data/lib/branston/app/views/layouts/_footer.html.erb +7 -0
- data/lib/branston/app/views/layouts/_header.html.erb +30 -0
- data/lib/branston/app/views/layouts/_meta.html.erb +5 -0
- data/lib/branston/app/views/layouts/main.html.erb +31 -0
- data/lib/branston/app/views/layouts/outcomes.html.erb +17 -0
- data/lib/branston/app/views/layouts/preconditions.html.erb +17 -0
- data/lib/branston/app/views/layouts/releases.html.erb +17 -0
- data/lib/branston/app/views/layouts/user_roles.html.erb +32 -0
- data/lib/branston/app/views/outcomes/_outcome.html.erb +19 -0
- data/lib/branston/app/views/outcomes/_outcomes.html.erb +13 -0
- data/lib/branston/app/views/outcomes/create.js.rjs +3 -0
- data/lib/branston/app/views/outcomes/destroy.js.rjs +2 -0
- data/lib/branston/app/views/outcomes/edit.html.erb +12 -0
- data/lib/branston/app/views/outcomes/index.html.erb +18 -0
- data/lib/branston/app/views/outcomes/index.js.rjs +3 -0
- data/lib/branston/app/views/outcomes/new.html.erb +11 -0
- data/lib/branston/app/views/outcomes/new.js.rjs +3 -0
- data/lib/branston/app/views/outcomes/show.html.erb +3 -0
- data/lib/branston/app/views/preconditions/_precondition.html.erb +19 -0
- data/lib/branston/app/views/preconditions/_preconditions.html.erb +13 -0
- data/lib/branston/app/views/preconditions/create.js.rjs +3 -0
- data/lib/branston/app/views/preconditions/destroy.js.rjs +2 -0
- data/lib/branston/app/views/preconditions/edit.html.erb +12 -0
- data/lib/branston/app/views/preconditions/index.html.erb +18 -0
- data/lib/branston/app/views/preconditions/index.js.rjs +3 -0
- data/lib/branston/app/views/preconditions/new.html.erb +16 -0
- data/lib/branston/app/views/preconditions/new.js.rjs +3 -0
- data/lib/branston/app/views/preconditions/show.html.erb +3 -0
- data/lib/branston/app/views/releases/edit.html.erb +20 -0
- data/lib/branston/app/views/releases/index.html.erb +28 -0
- data/lib/branston/app/views/releases/new.html.erb +19 -0
- data/lib/branston/app/views/releases/show.html.erb +13 -0
- data/lib/branston/app/views/scenarios/_scenario.html.erb +25 -0
- data/lib/branston/app/views/scenarios/_scenarios.html.erb +16 -0
- data/lib/branston/app/views/scenarios/create.js.rjs +2 -0
- data/lib/branston/app/views/scenarios/destroy.js.rjs +2 -0
- data/lib/branston/app/views/scenarios/edit.html.erb +0 -0
- data/lib/branston/app/views/scenarios/index.html.erb +0 -0
- data/lib/branston/app/views/scenarios/index.js.rjs +3 -0
- data/lib/branston/app/views/scenarios/new.html.erb +0 -0
- data/lib/branston/app/views/scenarios/new.js.rjs +3 -0
- data/lib/branston/app/views/scenarios/show.html.erb +0 -0
- data/lib/branston/app/views/sessions/new.html.erb +21 -0
- data/lib/branston/app/views/stories/_form.html.erb +17 -0
- data/lib/branston/app/views/stories/_story.html.erb +37 -0
- data/lib/branston/app/views/stories/edit.html.erb +14 -0
- data/lib/branston/app/views/stories/index.html.erb +52 -0
- data/lib/branston/app/views/stories/new.html.erb +13 -0
- data/lib/branston/app/views/stories/show.html.erb +23 -0
- data/lib/branston/app/views/stories/show.js.rjs +3 -0
- data/lib/branston/app/views/stories/update.js.rjs +1 -0
- data/lib/branston/app/views/user_roles/edit.html.erb +16 -0
- data/lib/branston/app/views/user_roles/index.html.erb +20 -0
- data/lib/branston/app/views/user_roles/new.html.erb +15 -0
- data/lib/branston/app/views/user_roles/show.html.erb +8 -0
- data/lib/branston/app/views/users/_user_bar.html.erb +8 -0
- data/lib/branston/app/views/users/new.html.erb +28 -0
- data/lib/branston/config/boot.rb +110 -0
- data/lib/branston/config/database.yml +31 -0
- data/lib/branston/config/environment.rb +51 -0
- data/lib/branston/config/environments/cucumber.rb +24 -0
- data/lib/branston/config/environments/development.rb +20 -0
- data/lib/branston/config/environments/production.rb +29 -0
- data/lib/branston/config/environments/test.rb +43 -0
- data/lib/branston/config/initializers/backtrace_silencers.rb +7 -0
- data/lib/branston/config/initializers/inflections.rb +10 -0
- data/lib/branston/config/initializers/mime_types.rb +5 -0
- data/lib/branston/config/initializers/new_rails_defaults.rb +21 -0
- data/lib/branston/config/initializers/session_store.rb +15 -0
- data/lib/branston/config/initializers/site_keys.rb +38 -0
- data/lib/branston/config/locales/en.yml +5 -0
- data/lib/branston/config/routes.rb +26 -0
- data/lib/branston/coverage/app-controllers-application_controller_rb.html +141 -0
- data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +693 -0
- data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +663 -0
- data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +735 -0
- data/lib/branston/coverage/app-controllers-releases_controller_rb.html +609 -0
- data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +669 -0
- data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +309 -0
- data/lib/branston/coverage/app-controllers-stories_controller_rb.html +717 -0
- data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +573 -0
- data/lib/branston/coverage/app-controllers-users_controller_rb.html +219 -0
- data/lib/branston/coverage/app-helpers-application_helper_rb.html +129 -0
- data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-releases_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-stories_helper_rb.html +75 -0
- data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +75 -0
- data/lib/branston/coverage/app-models-iteration_rb.html +153 -0
- data/lib/branston/coverage/app-models-outcome_rb.html +159 -0
- data/lib/branston/coverage/app-models-participation_rb.html +105 -0
- data/lib/branston/coverage/app-models-precondition_rb.html +153 -0
- data/lib/branston/coverage/app-models-release_rb.html +105 -0
- data/lib/branston/coverage/app-models-scenario_rb.html +147 -0
- data/lib/branston/coverage/app-models-story_rb.html +189 -0
- data/lib/branston/coverage/app-models-user_rb.html +399 -0
- data/lib/branston/coverage/app-models-user_role_rb.html +105 -0
- data/lib/branston/coverage/index.html +554 -0
- data/lib/branston/coverage/jquery-1.3.2.min.js +19 -0
- data/lib/branston/coverage/jquery.tablesorter.min.js +15 -0
- data/lib/branston/coverage/lib-faker_extras_rb.html +207 -0
- data/lib/branston/coverage/lib-story_generator_rb.html +879 -0
- data/lib/branston/coverage/print.css +12 -0
- data/lib/branston/coverage/rcov.js +42 -0
- data/lib/branston/coverage/screen.css +270 -0
- data/lib/branston/db/development.sqlite3 +0 -0
- data/lib/branston/db/development_structure.sql +35 -0
- data/lib/branston/db/migrate/20091127114237_create_users.rb +22 -0
- data/lib/branston/db/migrate/20091127120627_create_iterations.rb +17 -0
- data/lib/branston/db/migrate/20091127122422_create_stories.rb +16 -0
- data/lib/branston/db/migrate/20091127131037_create_user_roles.rb +13 -0
- data/lib/branston/db/migrate/20091127144645_create_participations.rb +15 -0
- data/lib/branston/db/migrate/20091127164217_create_scenarios.rb +14 -0
- data/lib/branston/db/migrate/20091127164446_create_preconditions.rb +14 -0
- data/lib/branston/db/migrate/20091127164705_create_outcomes.rb +14 -0
- data/lib/branston/db/migrate/20091127172849_add_title_to_stories.rb +9 -0
- data/lib/branston/db/migrate/20091127172950_add_story_id_to_user_role.rb +10 -0
- data/lib/branston/db/migrate/20091127173744_add_author_id_to_story.rb +10 -0
- data/lib/branston/db/migrate/20091202105555_create_releases.rb +17 -0
- data/lib/branston/db/migrate/20091204173634_add_slug_to_stories.rb +13 -0
- data/lib/branston/db/pristine.sqlite3 +0 -0
- data/lib/branston/db/production.sqlite3 +0 -0
- data/lib/branston/db/schema.rb +91 -0
- data/lib/branston/db/seeds.rb +7 -0
- data/lib/branston/db/test.sqlite3 +0 -0
- data/lib/branston/doc/README_FOR_APP +2 -0
- data/lib/branston/doc/branston.zargo +0 -0
- data/lib/branston/features/step_definitions/webrat_steps.rb +189 -0
- data/lib/branston/features/support/env.rb +46 -0
- data/lib/branston/features/support/paths.rb +27 -0
- data/lib/branston/features/support/version_check.rb +31 -0
- data/lib/branston/lib/authenticated_system.rb +189 -0
- data/lib/branston/lib/authenticated_test_helper.rb +11 -0
- data/lib/branston/lib/branston.rb +149 -0
- data/lib/branston/lib/client.rb +61 -0
- data/lib/branston/lib/faker_extras.rb +24 -0
- data/lib/branston/lib/story_generator.rb +135 -0
- data/lib/branston/lib/tasks/cucumber.rake +46 -0
- data/lib/branston/lib/tasks/make_pristine_copy.rake +18 -0
- data/lib/branston/log/cucumber.log +1 -0
- data/lib/branston/log/development.log +10836 -0
- data/lib/branston/log/test.log +52955 -0
- data/lib/branston/public/404.html +75 -0
- data/lib/branston/public/422.html +74 -0
- data/lib/branston/public/500.html +65 -0
- data/lib/branston/public/blank_iframe.html +2 -0
- data/lib/branston/public/favicon.ico +0 -0
- data/lib/branston/public/images/branston_pickle_bg.png +0 -0
- data/lib/branston/public/images/calendar_date_select/calendar.gif +0 -0
- data/lib/branston/public/images/icons/back_icon_30x23.png +0 -0
- data/lib/branston/public/images/icons/delete_icon_20x19.png +0 -0
- data/lib/branston/public/images/icons/delete_icon_30x29.png +0 -0
- data/lib/branston/public/images/icons/plus_icon_15x15.png +0 -0
- data/lib/branston/public/images/icons/plus_icon_20x20.png +0 -0
- data/lib/branston/public/images/icons/plus_icon_30x30.png +0 -0
- data/lib/branston/public/images/img01.gif +0 -0
- data/lib/branston/public/images/img02.gif +0 -0
- data/lib/branston/public/images/img03.gif +0 -0
- data/lib/branston/public/images/img04.gif +0 -0
- data/lib/branston/public/images/img05.gif +0 -0
- data/lib/branston/public/images/img06.gif +0 -0
- data/lib/branston/public/images/img07.gif +0 -0
- data/lib/branston/public/images/img08.gif +0 -0
- data/lib/branston/public/images/logo.png +0 -0
- data/lib/branston/public/images/rails.png +0 -0
- data/lib/branston/public/javascripts/accordion.js +126 -0
- data/lib/branston/public/javascripts/application.js +11 -0
- data/lib/branston/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
- data/lib/branston/public/javascripts/calendar_date_select/calendar_date_select.prototype.js +443 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_american.js +34 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_db.js +27 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_finnish.js +32 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_german.js +34 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
- data/lib/branston/public/javascripts/calendar_date_select/format_italian.js +24 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/de.js +11 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/fi.js +10 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/fr.js +10 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/pl.js +10 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/pt.js +11 -0
- data/lib/branston/public/javascripts/calendar_date_select/locale/ru.js +10 -0
- data/lib/branston/public/javascripts/controls.js +963 -0
- data/lib/branston/public/javascripts/dragdrop.js +973 -0
- data/lib/branston/public/javascripts/effects.js +1128 -0
- data/lib/branston/public/javascripts/prototype.js +4320 -0
- data/lib/branston/public/robots.txt +5 -0
- data/lib/branston/public/stylesheets/application.css +74 -0
- data/lib/branston/public/stylesheets/calendar_date_select/blue.css +130 -0
- data/lib/branston/public/stylesheets/calendar_date_select/default.css +135 -0
- data/lib/branston/public/stylesheets/calendar_date_select/plain.css +128 -0
- data/lib/branston/public/stylesheets/calendar_date_select/red.css +135 -0
- data/lib/branston/public/stylesheets/calendar_date_select/silver.css +133 -0
- data/lib/branston/public/stylesheets/scaffold.css +54 -0
- data/lib/branston/public/stylesheets/style.css +485 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/lib/branston/public/stylesheets/ui-lightness/jquery-ui-1.7.2.custom.css +406 -0
- data/lib/branston/script/about +4 -0
- data/lib/branston/script/console +3 -0
- data/lib/branston/script/cucumber +17 -0
- data/lib/branston/script/dbconsole +3 -0
- data/lib/branston/script/destroy +3 -0
- data/lib/branston/script/generate +3 -0
- data/lib/branston/script/performance/benchmarker +3 -0
- data/lib/branston/script/performance/profiler +3 -0
- data/lib/branston/script/plugin +3 -0
- data/lib/branston/script/runner +3 -0
- data/lib/branston/script/server +3 -0
- data/lib/branston/test/blueprints.rb +108 -0
- data/lib/branston/test/fixtures/outcomes.yml +7 -0
- data/lib/branston/test/fixtures/preconditions.yml +7 -0
- data/lib/branston/test/functional/iterations_controller_test.rb +155 -0
- data/lib/branston/test/functional/outcomes_controller_test.rb +97 -0
- data/lib/branston/test/functional/preconditions_controller_test.rb +106 -0
- data/lib/branston/test/functional/releases_controller_test.rb +68 -0
- data/lib/branston/test/functional/scenarios_controller_test.rb +100 -0
- data/lib/branston/test/functional/sessions_controller_test.rb +85 -0
- data/lib/branston/test/functional/stories_controller_test.rb +129 -0
- data/lib/branston/test/functional/user_roles_controller_test.rb +71 -0
- data/lib/branston/test/functional/users_controller_test.rb +61 -0
- data/lib/branston/test/performance/browsing_test.rb +9 -0
- data/lib/branston/test/test_helper.rb +49 -0
- data/lib/branston/test/unit/client_test.rb +101 -0
- data/lib/branston/test/unit/helpers/iterations_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/outcomes_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/preconditions_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/releases_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/stories_helper_test.rb +4 -0
- data/lib/branston/test/unit/helpers/user_roles_helper_test.rb +4 -0
- data/lib/branston/test/unit/iteration_test.rb +13 -0
- data/lib/branston/test/unit/outcome_test.rb +9 -0
- data/lib/branston/test/unit/participation_test.rb +9 -0
- data/lib/branston/test/unit/precondition_test.rb +9 -0
- data/lib/branston/test/unit/release_test.rb +5 -0
- data/lib/branston/test/unit/scenario_test.rb +12 -0
- data/lib/branston/test/unit/story_generator_test.rb +37 -0
- data/lib/branston/test/unit/story_test.rb +159 -0
- data/lib/branston/test/unit/user_role_test.rb +9 -0
- data/lib/branston/test/unit/user_test.rb +115 -0
- data/lib/branston/test/xml/example.xml +45 -0
- data/lib/branston/test/xml/no_scenarios.xml +12 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/History.txt +237 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/MIT-LICENSE +20 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/Manifest.txt +42 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/Rakefile +31 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/Readme.txt +16 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/init.rb +1 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/functional/cds_test.html +334 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/prototype.js +4184 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/test.css +40 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/unit/cds_helper_methods.html +46 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/js_test/unittest.js +564 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select.rb +33 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select/calendar_date_select.rb +116 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select/form_helpers.rb +225 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/lib/calendar_date_select/includes_helper.rb +29 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/blank_iframe.html +2 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/images/calendar_date_select/calendar.gif +0 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_american.js +34 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_db.js +27 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_finnish.js +32 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_italian.js +24 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/de.js +11 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fi.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fr.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pl.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pt.js +11 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/ru.js +10 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/blue.css +130 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/default.css +135 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/plain.css +128 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/red.css +135 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/public/stylesheets/calendar_date_select/silver.css +133 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/spec/calendar_date_select/calendar_date_select_spec.rb +14 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/spec/calendar_date_select/form_helpers_spec.rb +166 -0
- data/lib/branston/vendor/plugins/calendar_date_select-1.15/spec/spec_helper.rb +26 -0
- data/lib/branston/vendor/plugins/in_place_editing/README +14 -0
- data/lib/branston/vendor/plugins/in_place_editing/Rakefile +22 -0
- data/lib/branston/vendor/plugins/in_place_editing/init.rb +2 -0
- data/lib/branston/vendor/plugins/in_place_editing/lib/in_place_editing.rb +28 -0
- data/lib/branston/vendor/plugins/in_place_editing/lib/in_place_macros_helper.rb +82 -0
- data/lib/branston/vendor/plugins/in_place_editing/test/in_place_editing_test.rb +89 -0
- data/lib/branston/vendor/plugins/in_place_editing/test/test_helper.rb +8 -0
- data/lib/branston/vendor/plugins/restful_authentication/CHANGELOG +68 -0
- data/lib/branston/vendor/plugins/restful_authentication/LICENSE +20 -0
- data/lib/branston/vendor/plugins/restful_authentication/README.textile +224 -0
- data/lib/branston/vendor/plugins/restful_authentication/Rakefile +32 -0
- data/lib/branston/vendor/plugins/restful_authentication/TODO +15 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/USAGE +1 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/authenticated_generator.rb +478 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/lib/insert_routes.rb +54 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/_model_partial.html.erb +8 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/activation.erb +3 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_system.rb +189 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_test_helper.rb +22 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/controller.rb +43 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/accounts.feature +109 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/sessions.feature +134 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_env.rb +9 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_navigation_steps.rb +48 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_resource_steps.rb +178 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/ra_response_steps.rb +169 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/rest_auth_features_helper.rb +81 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/features/step_definitions/user_steps.rb +131 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/helper.rb +2 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/login.html.erb +16 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/mailer.rb +25 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/migration.rb +26 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model.rb +83 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model_controller.rb +85 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper.rb +93 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper_spec.rb +158 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/observer.rb +11 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/signup.html.erb +19 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/signup_notification.erb +8 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/site_keys.rb +38 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/access_control_spec.rb +90 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/authenticated_system_spec.rb +102 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb +139 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/users_controller_spec.rb +198 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/fixtures/users.yml +60 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/helpers/users_helper_spec.rb +141 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/models/user_spec.rb +290 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/functional_test.rb +82 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/mailer_test.rb +31 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/model_functional_test.rb +93 -0
- data/lib/branston/vendor/plugins/restful_authentication/generators/authenticated/templates/test/unit_test.rb +164 -0
- data/lib/branston/vendor/plugins/restful_authentication/init.rb +1 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authentication.rb +40 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authentication/by_cookie_token.rb +82 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authentication/by_password.rb +64 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authorization.rb +14 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authorization/aasm_roles.rb +63 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/authorization/stateful_roles.rb +62 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/trustification.rb +14 -0
- data/lib/branston/vendor/plugins/restful_authentication/lib/trustification/email_validation.rb +20 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/AccessControl.txt +2 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Authentication.txt +5 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Authorization.txt +154 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/RailsPlugins.txt +78 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/SecurityFramework.graffle +0 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/SecurityFramework.png +0 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/SecurityPatterns.txt +163 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Tradeoffs.txt +126 -0
- data/lib/branston/vendor/plugins/restful_authentication/notes/Trustification.txt +49 -0
- data/lib/branston/vendor/plugins/restful_authentication/rails/init.rb +3 -0
- data/lib/branston/vendor/plugins/restful_authentication/restful-authentication.gemspec +33 -0
- data/lib/branston/vendor/plugins/restful_authentication/tasks/auth.rake +33 -0
- metadata +513 -0
@@ -0,0 +1,158 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../spec_helper'
|
2
|
+
include ApplicationHelper
|
3
|
+
include <%= model_controller_class_name %>Helper
|
4
|
+
|
5
|
+
describe "<%= model_controller_class_name %>Helper.link_to_<%= file_name %>" do
|
6
|
+
before do
|
7
|
+
@<%= file_name %> = <%= class_name %>.new({
|
8
|
+
:name => '<%= class_name %> Name',
|
9
|
+
:login => '<%= file_name %>_name',
|
10
|
+
})
|
11
|
+
@<%= file_name %>.id = 1 # set non-attr_accessible specifically
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should give an error on a nil <%= file_name %>" do
|
15
|
+
lambda { link_to_<%= file_name %>(nil) }.should raise_error('Invalid <%= file_name %>')
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should link to the given <%= file_name %>" do
|
19
|
+
link_to_<%= file_name %>(@<%= file_name %>).should have_tag("a[href='/<%= table_name %>/1']")
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should use given link text if :content_text is specified" do
|
23
|
+
link_to_<%= file_name %>(@<%= file_name %>, :content_text => 'Hello there!').should have_tag("a", 'Hello there!')
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should use the login as link text with no :content_method specified" do
|
27
|
+
link_to_<%= file_name %>(@<%= file_name %>).should have_tag("a", '<%= file_name %>_name')
|
28
|
+
end
|
29
|
+
|
30
|
+
it "should use the name as link text with :content_method => :name" do
|
31
|
+
link_to_<%= file_name %>(@<%= file_name %>, :content_method => :name).should have_tag("a", '<%= class_name %> Name')
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should use the login as title with no :title_method specified" do
|
35
|
+
link_to_<%= file_name %>(@<%= file_name %>).should have_tag("a[title='<%= file_name %>_name']")
|
36
|
+
end
|
37
|
+
|
38
|
+
it "should use the name as link title with :content_method => :name" do
|
39
|
+
link_to_<%= file_name %>(@<%= file_name %>, :title_method => :name).should have_tag("a[title='<%= class_name %> Name']")
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should have nickname as a class by default" do
|
43
|
+
link_to_<%= file_name %>(@<%= file_name %>).should have_tag("a.nickname")
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should take other classes and no longer have the nickname class" do
|
47
|
+
result = link_to_<%= file_name %>(@<%= file_name %>, :class => 'foo bar')
|
48
|
+
result.should have_tag("a.foo")
|
49
|
+
result.should have_tag("a.bar")
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe "<%= model_controller_class_name %>Helper.link_to_signin_with_IP" do
|
54
|
+
before do
|
55
|
+
end
|
56
|
+
|
57
|
+
it "should link to the signin_path" do
|
58
|
+
link_to_signin_with_IP().should have_tag("a[href='/signin']")
|
59
|
+
end
|
60
|
+
|
61
|
+
it "should use given link text if :content_text is specified" do
|
62
|
+
link_to_signin_with_IP(:content_text => 'Hello there!').should have_tag("a", 'Hello there!')
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should use the login as link text with no :content_method specified" do
|
66
|
+
link_to_signin_with_IP().should have_tag("a", '0.0.0.0')
|
67
|
+
end
|
68
|
+
|
69
|
+
it "should use the ip address as title" do
|
70
|
+
link_to_signin_with_IP().should have_tag("a[title='0.0.0.0']")
|
71
|
+
end
|
72
|
+
|
73
|
+
it "should by default be like school in summer and have no class" do
|
74
|
+
link_to_signin_with_IP().should_not have_tag("a.nickname")
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should have some class if you tell it to" do
|
78
|
+
result = link_to_signin_with_IP(:class => 'foo bar')
|
79
|
+
result.should have_tag("a.foo")
|
80
|
+
result.should have_tag("a.bar")
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe "<%= model_controller_class_name %>Helper.link_to_current_<%= file_name %>, When logged in" do
|
85
|
+
fixtures :<%= table_name %>
|
86
|
+
include AuthenticatedTestHelper
|
87
|
+
before do
|
88
|
+
login_as(:quentin)
|
89
|
+
end
|
90
|
+
|
91
|
+
it "should link to the given <%= file_name %>" do
|
92
|
+
link_to_current_<%= file_name %>().should have_tag("a[href='/<%= table_name %>/1']")
|
93
|
+
end
|
94
|
+
|
95
|
+
it "should use given link text if :content_text is specified" do
|
96
|
+
link_to_current_user(:content_text => 'Hello there!').should have_tag("a", 'Hello there!')
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should use the login as link text with no :content_method specified" do
|
100
|
+
link_to_current_user().should have_tag("a", 'quentin')
|
101
|
+
end
|
102
|
+
|
103
|
+
it "should use the name as link text with :content_method => :name" do
|
104
|
+
link_to_current_user(:content_method => :name).should have_tag("a", 'Quentin')
|
105
|
+
end
|
106
|
+
|
107
|
+
it "should use the login as title with no :title_method specified" do
|
108
|
+
link_to_current_user().should have_tag("a[title='quentin']")
|
109
|
+
end
|
110
|
+
|
111
|
+
it "should use the name as link title with :content_method => :name" do
|
112
|
+
link_to_current_user(:title_method => :name).should have_tag("a[title='Quentin']")
|
113
|
+
end
|
114
|
+
|
115
|
+
it "should have nickname as a class" do
|
116
|
+
link_to_current_user().should have_tag("a.nickname")
|
117
|
+
end
|
118
|
+
|
119
|
+
it "should take other classes and no longer have the nickname class" do
|
120
|
+
result = link_to_current_user(:class => 'foo bar')
|
121
|
+
result.should have_tag("a.foo")
|
122
|
+
result.should have_tag("a.bar")
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
describe "<%= model_controller_class_name %>Helper.link_to_current_user, When logged out" do
|
129
|
+
include AuthenticatedTestHelper
|
130
|
+
before do
|
131
|
+
end
|
132
|
+
|
133
|
+
it "should link to the signin_path" do
|
134
|
+
link_to_current_user().should have_tag("a[href='/signin']")
|
135
|
+
end
|
136
|
+
|
137
|
+
it "should use given link text if :content_text is specified" do
|
138
|
+
link_to_current_user(:content_text => 'Hello there!').should have_tag("a", 'Hello there!')
|
139
|
+
end
|
140
|
+
|
141
|
+
it "should use the IP address as link text with no :content_method specified" do
|
142
|
+
link_to_current_user().should have_tag("a", '0.0.0.0')
|
143
|
+
end
|
144
|
+
|
145
|
+
it "should use the ip address as title" do
|
146
|
+
link_to_current_user().should have_tag("a[title='0.0.0.0']")
|
147
|
+
end
|
148
|
+
|
149
|
+
it "should by default be like school in summer and have no class" do
|
150
|
+
link_to_current_user().should_not have_tag("a.nickname")
|
151
|
+
end
|
152
|
+
|
153
|
+
it "should have some class if you tell it to" do
|
154
|
+
result = link_to_current_user(:class => 'foo bar')
|
155
|
+
result.should have_tag("a.foo")
|
156
|
+
result.should have_tag("a.bar")
|
157
|
+
end
|
158
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class <%= class_name %>Observer < ActiveRecord::Observer
|
2
|
+
def after_create(<%= file_name %>)
|
3
|
+
<%= class_name %>Mailer.deliver_signup_notification(<%= file_name %>)
|
4
|
+
end
|
5
|
+
|
6
|
+
def after_save(<%= file_name %>)
|
7
|
+
<% if options[:include_activation] %>
|
8
|
+
<%= class_name %>Mailer.deliver_activation(<%= file_name %>) if <%= file_name %>.recently_activated?
|
9
|
+
<% end %>
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<h1>Sign up as a new user</h1>
|
2
|
+
<%% @<%= file_name %>.password = @<%= file_name %>.password_confirmation = nil %>
|
3
|
+
|
4
|
+
<%%= error_messages_for :<%= file_name %> %>
|
5
|
+
<%% form_for :<%= file_name %>, :url => <%= model_controller_routing_name %>_path do |f| -%>
|
6
|
+
<p><%%= label_tag 'login' %><br/>
|
7
|
+
<%%= f.text_field :login %></p>
|
8
|
+
|
9
|
+
<p><%%= label_tag 'email' %><br/>
|
10
|
+
<%%= f.text_field :email %></p>
|
11
|
+
|
12
|
+
<p><%%= label_tag 'password' %><br/>
|
13
|
+
<%%= f.password_field :password %></p>
|
14
|
+
|
15
|
+
<p><%%= label_tag 'password_confirmation', 'Confirm Password' %><br/>
|
16
|
+
<%%= f.password_field :password_confirmation %></p>
|
17
|
+
|
18
|
+
<p><%%= submit_tag 'Sign up' %></p>
|
19
|
+
<%% end -%>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
|
2
|
+
# A Site key gives additional protection against a dictionary attack if your
|
3
|
+
# DB is ever compromised. With no site key, we store
|
4
|
+
# DB_password = hash(user_password, DB_user_salt)
|
5
|
+
# If your database were to be compromised you'd be vulnerable to a dictionary
|
6
|
+
# attack on all your stupid users' passwords. With a site key, we store
|
7
|
+
# DB_password = hash(user_password, DB_user_salt, Code_site_key)
|
8
|
+
# That means an attacker needs access to both your site's code *and* its
|
9
|
+
# database to mount an "offline dictionary attack.":http://www.dwheeler.com/secure-programs/Secure-Programs-HOWTO/web-authentication.html
|
10
|
+
#
|
11
|
+
# It's probably of minor importance, but recommended by best practices: 'defense
|
12
|
+
# in depth'. Needless to say, if you upload this to github or the youtubes or
|
13
|
+
# otherwise place it in public view you'll kinda defeat the point. Your users'
|
14
|
+
# passwords are still secure, and the world won't end, but defense_in_depth -= 1.
|
15
|
+
#
|
16
|
+
# Please note: if you change this, all the passwords will be invalidated, so DO
|
17
|
+
# keep it someplace secure. Use the random value given or type in the lyrics to
|
18
|
+
# your favorite Jay-Z song or something; any moderately long, unpredictable text.
|
19
|
+
REST_AUTH_SITE_KEY = '<%= $rest_auth_site_key_from_generator %>'
|
20
|
+
|
21
|
+
# Repeated applications of the hash make brute force (even with a compromised
|
22
|
+
# database and site key) harder, and scale with Moore's law.
|
23
|
+
#
|
24
|
+
# bq. "To squeeze the most security out of a limited-entropy password or
|
25
|
+
# passphrase, we can use two techniques [salting and stretching]... that are
|
26
|
+
# so simple and obvious that they should be used in every password system.
|
27
|
+
# There is really no excuse not to use them." http://tinyurl.com/37lb73
|
28
|
+
# Practical Security (Ferguson & Scheier) p350
|
29
|
+
#
|
30
|
+
# A modest 10 foldings (the default here) adds 3ms. This makes brute forcing 10
|
31
|
+
# times harder, while reducing an app that otherwise serves 100 reqs/s to 78 signin
|
32
|
+
# reqs/s, an app that does 10reqs/s to 9.7 reqs/s
|
33
|
+
#
|
34
|
+
# More:
|
35
|
+
# * http://www.owasp.org/index.php/Hashing_Java
|
36
|
+
# * "An Illustrated Guide to Cryptographic Hashes":http://www.unixwiz.net/techtips/iguide-crypto-hashes.html
|
37
|
+
|
38
|
+
REST_AUTH_DIGEST_STRETCHES = <%= $rest_auth_digest_stretches_from_generator %>
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require File.dirname(__FILE__) + '<%= ('/..'*controller_class_nesting_depth) + '/../spec_helper' %>'
|
2
|
+
# Be sure to include AuthenticatedTestHelper in spec/spec_helper.rb instead
|
3
|
+
# Then, you can remove it from this and the units test.
|
4
|
+
include AuthenticatedTestHelper
|
5
|
+
|
6
|
+
#
|
7
|
+
# A test controller with and without access controls
|
8
|
+
#
|
9
|
+
class AccessControlTestController < ApplicationController
|
10
|
+
before_filter :login_required, :only => :login_is_required
|
11
|
+
def login_is_required
|
12
|
+
respond_to do |format|
|
13
|
+
@foo = { 'success' => params[:format]||'no fmt given'}
|
14
|
+
format.html do render :text => "success" end
|
15
|
+
format.xml do render :xml => @foo, :status => :ok end
|
16
|
+
format.json do render :json => @foo, :status => :ok end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
def login_not_required
|
20
|
+
respond_to do |format|
|
21
|
+
@foo = { 'success' => params[:format]||'no fmt given'}
|
22
|
+
format.html do render :text => "success" end
|
23
|
+
format.xml do render :xml => @foo, :status => :ok end
|
24
|
+
format.json do render :json => @foo, :status => :ok end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
#
|
30
|
+
# Access Control
|
31
|
+
#
|
32
|
+
|
33
|
+
ACCESS_CONTROL_FORMATS = [
|
34
|
+
['', "success"],
|
35
|
+
['xml', "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<hash>\n <success>xml</success>\n</hash>\n"],
|
36
|
+
['json', "{\"success\": \"json\"}"],]
|
37
|
+
ACCESS_CONTROL_AM_I_LOGGED_IN = [
|
38
|
+
[:i_am_logged_in, :quentin],
|
39
|
+
[:i_am_not_logged_in, nil],]
|
40
|
+
ACCESS_CONTROL_IS_LOGIN_REQD = [
|
41
|
+
:login_not_required,
|
42
|
+
:login_is_required,]
|
43
|
+
|
44
|
+
describe AccessControlTestController do
|
45
|
+
fixtures :<%= table_name %>
|
46
|
+
before do
|
47
|
+
# is there a better way to do this?
|
48
|
+
ActionController::Routing::Routes.add_route '/login_is_required', :controller => 'access_control_test', :action => 'login_is_required'
|
49
|
+
ActionController::Routing::Routes.add_route '/login_not_required', :controller => 'access_control_test', :action => 'login_not_required'
|
50
|
+
end
|
51
|
+
|
52
|
+
ACCESS_CONTROL_FORMATS.each do |format, success_text|
|
53
|
+
ACCESS_CONTROL_AM_I_LOGGED_IN.each do |logged_in_status, <%= file_name %>_login|
|
54
|
+
ACCESS_CONTROL_IS_LOGIN_REQD.each do |login_reqd_status|
|
55
|
+
describe "requesting #{format.blank? ? 'html' : format}; #{logged_in_status.to_s.humanize} and #{login_reqd_status.to_s.humanize}" do
|
56
|
+
before do
|
57
|
+
logout_keeping_session!
|
58
|
+
@<%= file_name %> = format.blank? ? login_as(<%= file_name %>_login) : authorize_as(<%= file_name %>_login)
|
59
|
+
get login_reqd_status.to_s, :format => format
|
60
|
+
end
|
61
|
+
|
62
|
+
if ((login_reqd_status == :login_not_required) ||
|
63
|
+
(login_reqd_status == :login_is_required && logged_in_status == :i_am_logged_in))
|
64
|
+
it "succeeds" do
|
65
|
+
response.should have_text(success_text)
|
66
|
+
response.code.to_s.should == '200'
|
67
|
+
end
|
68
|
+
|
69
|
+
elsif (login_reqd_status == :login_is_required && logged_in_status == :i_am_not_logged_in)
|
70
|
+
if ['html', ''].include? format
|
71
|
+
it "redirects me to the log in page" do
|
72
|
+
response.should redirect_to('/<%= controller_routing_path %>/new')
|
73
|
+
end
|
74
|
+
else
|
75
|
+
it "returns 'Access denied' and a 406 (Access Denied) status code" do
|
76
|
+
response.should have_text("HTTP Basic: Access denied.\n")
|
77
|
+
response.code.to_s.should == '401'
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
else
|
82
|
+
warn "Oops no case for #{format} and #{logged_in_status.to_s.humanize} and #{login_reqd_status.to_s.humanize}"
|
83
|
+
end
|
84
|
+
end # describe
|
85
|
+
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end # cases
|
89
|
+
|
90
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
require File.dirname(__FILE__) + '<%= ('/..'*controller_class_nesting_depth) + '/../spec_helper' %>'
|
2
|
+
|
3
|
+
# Be sure to include AuthenticatedTestHelper in spec/spec_helper.rb instead
|
4
|
+
# Then, you can remove it from this and the units test.
|
5
|
+
include AuthenticatedTestHelper
|
6
|
+
include AuthenticatedSystem
|
7
|
+
def action_name() end
|
8
|
+
|
9
|
+
describe <%= controller_class_name %>Controller do
|
10
|
+
fixtures :<%= table_name %>
|
11
|
+
|
12
|
+
before do
|
13
|
+
# FIXME -- <%= controller_file_name %> controller not testing xml logins
|
14
|
+
stub!(:authenticate_with_http_basic).and_return nil
|
15
|
+
end
|
16
|
+
describe "logout_killing_session!" do
|
17
|
+
before do
|
18
|
+
login_as :quentin
|
19
|
+
stub!(:reset_session)
|
20
|
+
end
|
21
|
+
it 'resets the session' do should_receive(:reset_session); logout_killing_session! end
|
22
|
+
it 'kills my auth_token cookie' do should_receive(:kill_remember_cookie!); logout_killing_session! end
|
23
|
+
it 'nils the current <%= file_name %>' do logout_killing_session!; current_<%= file_name %>.should be_nil end
|
24
|
+
it 'kills :<%= file_name %>_id session' do
|
25
|
+
session.stub!(:[]=)
|
26
|
+
session.should_receive(:[]=).with(:<%= file_name %>_id, nil).at_least(:once)
|
27
|
+
logout_killing_session!
|
28
|
+
end
|
29
|
+
it 'forgets me' do
|
30
|
+
current_<%= file_name %>.remember_me
|
31
|
+
current_<%= file_name %>.remember_token.should_not be_nil; current_<%= file_name %>.remember_token_expires_at.should_not be_nil
|
32
|
+
<%= class_name %>.find(1).remember_token.should_not be_nil; <%= class_name %>.find(1).remember_token_expires_at.should_not be_nil
|
33
|
+
logout_killing_session!
|
34
|
+
<%= class_name %>.find(1).remember_token.should be_nil; <%= class_name %>.find(1).remember_token_expires_at.should be_nil
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "logout_keeping_session!" do
|
39
|
+
before do
|
40
|
+
login_as :quentin
|
41
|
+
stub!(:reset_session)
|
42
|
+
end
|
43
|
+
it 'does not reset the session' do should_not_receive(:reset_session); logout_keeping_session! end
|
44
|
+
it 'kills my auth_token cookie' do should_receive(:kill_remember_cookie!); logout_keeping_session! end
|
45
|
+
it 'nils the current <%= file_name %>' do logout_keeping_session!; current_<%= file_name %>.should be_nil end
|
46
|
+
it 'kills :<%= file_name %>_id session' do
|
47
|
+
session.stub!(:[]=)
|
48
|
+
session.should_receive(:[]=).with(:<%= file_name %>_id, nil).at_least(:once)
|
49
|
+
logout_keeping_session!
|
50
|
+
end
|
51
|
+
it 'forgets me' do
|
52
|
+
current_<%= file_name %>.remember_me
|
53
|
+
current_<%= file_name %>.remember_token.should_not be_nil; current_<%= file_name %>.remember_token_expires_at.should_not be_nil
|
54
|
+
<%= class_name %>.find(1).remember_token.should_not be_nil; <%= class_name %>.find(1).remember_token_expires_at.should_not be_nil
|
55
|
+
logout_keeping_session!
|
56
|
+
<%= class_name %>.find(1).remember_token.should be_nil; <%= class_name %>.find(1).remember_token_expires_at.should be_nil
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'When logged out' do
|
61
|
+
it "should not be authorized?" do
|
62
|
+
authorized?().should be_false
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
#
|
67
|
+
# Cookie Login
|
68
|
+
#
|
69
|
+
describe "Logging in by cookie" do
|
70
|
+
def set_remember_token token, time
|
71
|
+
@<%= file_name %>[:remember_token] = token;
|
72
|
+
@<%= file_name %>[:remember_token_expires_at] = time
|
73
|
+
@<%= file_name %>.save!
|
74
|
+
end
|
75
|
+
before do
|
76
|
+
@<%= file_name %> = <%= class_name %>.find(:first);
|
77
|
+
set_remember_token 'hello!', 5.minutes.from_now
|
78
|
+
end
|
79
|
+
it 'logs in with cookie' do
|
80
|
+
stub!(:cookies).and_return({ :auth_token => 'hello!' })
|
81
|
+
logged_in?.should be_true
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'fails cookie login with bad cookie' do
|
85
|
+
should_receive(:cookies).at_least(:once).and_return({ :auth_token => 'i_haxxor_joo' })
|
86
|
+
logged_in?.should_not be_true
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'fails cookie login with no cookie' do
|
90
|
+
set_remember_token nil, nil
|
91
|
+
should_receive(:cookies).at_least(:once).and_return({ })
|
92
|
+
logged_in?.should_not be_true
|
93
|
+
end
|
94
|
+
|
95
|
+
it 'fails expired cookie login' do
|
96
|
+
set_remember_token 'hello!', 5.minutes.ago
|
97
|
+
stub!(:cookies).and_return({ :auth_token => 'hello!' })
|
98
|
+
logged_in?.should_not be_true
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
end
|
@@ -0,0 +1,139 @@
|
|
1
|
+
require File.dirname(__FILE__) + '<%= ('/..'*controller_class_nesting_depth) + '/../spec_helper' %>'
|
2
|
+
|
3
|
+
# Be sure to include AuthenticatedTestHelper in spec/spec_helper.rb instead
|
4
|
+
# Then, you can remove it from this and the units test.
|
5
|
+
include AuthenticatedTestHelper
|
6
|
+
|
7
|
+
describe <%= controller_class_name %>Controller do
|
8
|
+
fixtures :<%= table_name %>
|
9
|
+
before do
|
10
|
+
@<%= file_name %> = mock_<%= file_name %>
|
11
|
+
@login_params = { :login => 'quentin', :password => 'test' }
|
12
|
+
<%= class_name %>.stub!(:authenticate).with(@login_params[:login], @login_params[:password]).and_return(@<%= file_name %>)
|
13
|
+
end
|
14
|
+
def do_create
|
15
|
+
post :create, @login_params
|
16
|
+
end
|
17
|
+
describe "on successful login," do
|
18
|
+
[ [:nil, nil, nil],
|
19
|
+
[:expired, 'valid_token', 15.minutes.ago],
|
20
|
+
[:different, 'i_haxxor_joo', 15.minutes.from_now],
|
21
|
+
[:valid, 'valid_token', 15.minutes.from_now]
|
22
|
+
].each do |has_request_token, token_value, token_expiry|
|
23
|
+
[ true, false ].each do |want_remember_me|
|
24
|
+
describe "my request cookie token is #{has_request_token.to_s}," do
|
25
|
+
describe "and ask #{want_remember_me ? 'to' : 'not to'} be remembered" do
|
26
|
+
before do
|
27
|
+
@ccookies = mock('cookies')
|
28
|
+
controller.stub!(:cookies).and_return(@ccookies)
|
29
|
+
@ccookies.stub!(:[]).with(:auth_token).and_return(token_value)
|
30
|
+
@ccookies.stub!(:delete).with(:auth_token)
|
31
|
+
@ccookies.stub!(:[]=)
|
32
|
+
@<%= file_name %>.stub!(:remember_me)
|
33
|
+
@<%= file_name %>.stub!(:refresh_token)
|
34
|
+
@<%= file_name %>.stub!(:forget_me)
|
35
|
+
@<%= file_name %>.stub!(:remember_token).and_return(token_value)
|
36
|
+
@<%= file_name %>.stub!(:remember_token_expires_at).and_return(token_expiry)
|
37
|
+
@<%= file_name %>.stub!(:remember_token?).and_return(has_request_token == :valid)
|
38
|
+
if want_remember_me
|
39
|
+
@login_params[:remember_me] = '1'
|
40
|
+
else
|
41
|
+
@login_params[:remember_me] = '0'
|
42
|
+
end
|
43
|
+
end
|
44
|
+
it "kills existing login" do controller.should_receive(:logout_keeping_session!); do_create; end
|
45
|
+
it "authorizes me" do do_create; controller.send(:authorized?).should be_true; end
|
46
|
+
it "logs me in" do do_create; controller.send(:logged_in?).should be_true end
|
47
|
+
it "greets me nicely" do do_create; response.flash[:notice].should =~ /success/i end
|
48
|
+
it "sets/resets/expires cookie" do controller.should_receive(:handle_remember_cookie!).with(want_remember_me); do_create end
|
49
|
+
it "sends a cookie" do controller.should_receive(:send_remember_cookie!); do_create end
|
50
|
+
it 'redirects to the home page' do do_create; response.should redirect_to('/') end
|
51
|
+
it "does not reset my session" do controller.should_not_receive(:reset_session).and_return nil; do_create end # change if you uncomment the reset_session path
|
52
|
+
if (has_request_token == :valid)
|
53
|
+
it 'does not make new token' do @<%= file_name %>.should_not_receive(:remember_me); do_create end
|
54
|
+
it 'does refresh token' do @<%= file_name %>.should_receive(:refresh_token); do_create end
|
55
|
+
it "sets an auth cookie" do do_create; end
|
56
|
+
else
|
57
|
+
if want_remember_me
|
58
|
+
it 'makes a new token' do @<%= file_name %>.should_receive(:remember_me); do_create end
|
59
|
+
it "does not refresh token" do @<%= file_name %>.should_not_receive(:refresh_token); do_create end
|
60
|
+
it "sets an auth cookie" do do_create; end
|
61
|
+
else
|
62
|
+
it 'does not make new token' do @<%= file_name %>.should_not_receive(:remember_me); do_create end
|
63
|
+
it 'does not refresh token' do @<%= file_name %>.should_not_receive(:refresh_token); do_create end
|
64
|
+
it 'kills user token' do @<%= file_name %>.should_receive(:forget_me); do_create end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end # inner describe
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
describe "on failed login" do
|
74
|
+
before do
|
75
|
+
<%= class_name %>.should_receive(:authenticate).with(anything(), anything()).and_return(nil)
|
76
|
+
login_as :quentin
|
77
|
+
end
|
78
|
+
it 'logs out keeping session' do controller.should_receive(:logout_keeping_session!); do_create end
|
79
|
+
it 'flashes an error' do do_create; flash[:error].should =~ /Couldn't log you in as 'quentin'/ end
|
80
|
+
it 'renders the log in page' do do_create; response.should render_template('new') end
|
81
|
+
it "doesn't log me in" do do_create; controller.send(:logged_in?).should == false end
|
82
|
+
it "doesn't send password back" do
|
83
|
+
@login_params[:password] = 'FROBNOZZ'
|
84
|
+
do_create
|
85
|
+
response.should_not have_text(/FROBNOZZ/i)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
describe "on signout" do
|
90
|
+
def do_destroy
|
91
|
+
get :destroy
|
92
|
+
end
|
93
|
+
before do
|
94
|
+
login_as :quentin
|
95
|
+
end
|
96
|
+
it 'logs me out' do controller.should_receive(:logout_killing_session!); do_destroy end
|
97
|
+
it 'redirects me to the home page' do do_destroy; response.should be_redirect end
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
101
|
+
|
102
|
+
describe <%= controller_class_name %>Controller do
|
103
|
+
describe "route generation" do
|
104
|
+
it "should route the new <%= controller_controller_name %> action correctly" do
|
105
|
+
route_for(:controller => '<%= controller_controller_name %>', :action => 'new').should == "/login"
|
106
|
+
end
|
107
|
+
it "should route the create <%= controller_controller_name %> correctly" do
|
108
|
+
route_for(:controller => '<%= controller_controller_name %>', :action => 'create').should == "/<%= controller_routing_path %>"
|
109
|
+
end
|
110
|
+
it "should route the destroy <%= controller_controller_name %> action correctly" do
|
111
|
+
route_for(:controller => '<%= controller_controller_name %>', :action => 'destroy').should == "/logout"
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
describe "route recognition" do
|
116
|
+
it "should generate params from GET /login correctly" do
|
117
|
+
params_from(:get, '/login').should == {:controller => '<%= controller_controller_name %>', :action => 'new'}
|
118
|
+
end
|
119
|
+
it "should generate params from POST /<%= controller_routing_path %> correctly" do
|
120
|
+
params_from(:post, '/<%= controller_routing_path %>').should == {:controller => '<%= controller_controller_name %>', :action => 'create'}
|
121
|
+
end
|
122
|
+
it "should generate params from DELETE /<%= controller_routing_path %> correctly" do
|
123
|
+
params_from(:delete, '/logout').should == {:controller => '<%= controller_controller_name %>', :action => 'destroy'}
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
describe "named routing" do
|
128
|
+
before(:each) do
|
129
|
+
get :new
|
130
|
+
end
|
131
|
+
it "should route <%= controller_routing_name %>_path() correctly" do
|
132
|
+
<%= controller_routing_name %>_path().should == "/<%= controller_routing_path %>"
|
133
|
+
end
|
134
|
+
it "should route new_<%= controller_routing_name %>_path() correctly" do
|
135
|
+
new_<%= controller_routing_name %>_path().should == "/<%= controller_routing_path %>/new"
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
end
|