sorcery 0.8.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +56 -0
- data/.travis.yml +130 -1
- data/CHANGELOG.md +270 -0
- data/Gemfile +17 -22
- data/README.md +371 -0
- data/Rakefile +3 -79
- data/gemfiles/active_record-rails40.gemfile +7 -0
- data/gemfiles/active_record-rails41.gemfile +7 -0
- data/gemfiles/mongo_mapper-rails40.gemfile +9 -0
- data/gemfiles/mongo_mapper-rails41.gemfile +9 -0
- data/gemfiles/mongoid-rails40.gemfile +9 -0
- data/gemfiles/mongoid-rails41.gemfile +9 -0
- data/gemfiles/mongoid3-rails32.gemfile +9 -0
- data/lib/generators/sorcery/USAGE +1 -1
- data/lib/generators/sorcery/helpers.rb +40 -0
- data/lib/generators/sorcery/install_generator.rb +38 -20
- data/lib/generators/sorcery/templates/initializer.rb +35 -10
- data/lib/generators/sorcery/templates/migration/activity_logging.rb +2 -11
- data/lib/generators/sorcery/templates/migration/brute_force_protection.rb +3 -7
- data/lib/generators/sorcery/templates/migration/core.rb +5 -8
- data/lib/generators/sorcery/templates/migration/external.rb +3 -5
- data/lib/generators/sorcery/templates/migration/remember_me.rb +2 -9
- data/lib/generators/sorcery/templates/migration/reset_password.rb +2 -10
- data/lib/generators/sorcery/templates/migration/user_activation.rb +2 -10
- data/lib/sorcery/adapters/active_record_adapter.rb +120 -0
- data/lib/sorcery/adapters/base_adapter.rb +30 -0
- data/lib/sorcery/adapters/data_mapper_adapter.rb +176 -0
- data/lib/sorcery/adapters/mongo_mapper_adapter.rb +110 -0
- data/lib/sorcery/adapters/mongoid_adapter.rb +97 -0
- data/lib/sorcery/controller/config.rb +65 -0
- data/lib/sorcery/controller/submodules/activity_logging.rb +16 -21
- data/lib/sorcery/controller/submodules/brute_force_protection.rb +6 -6
- data/lib/sorcery/controller/submodules/external.rb +42 -43
- data/lib/sorcery/controller/submodules/remember_me.rb +5 -5
- data/lib/sorcery/controller/submodules/session_timeout.rb +11 -7
- data/lib/sorcery/controller.rb +22 -74
- data/lib/sorcery/model/config.rb +96 -0
- data/lib/sorcery/model/submodules/activity_logging.rb +30 -13
- data/lib/sorcery/model/submodules/brute_force_protection.rb +25 -27
- data/lib/sorcery/model/submodules/external.rb +53 -9
- data/lib/sorcery/model/submodules/remember_me.rb +15 -19
- data/lib/sorcery/model/submodules/reset_password.rb +36 -33
- data/lib/sorcery/model/submodules/user_activation.rb +51 -48
- data/lib/sorcery/model/temporary_token.rb +4 -4
- data/lib/sorcery/model.rb +81 -175
- data/lib/sorcery/protocols/oauth.rb +42 -0
- data/lib/sorcery/protocols/oauth2.rb +47 -0
- data/lib/sorcery/providers/base.rb +38 -0
- data/lib/sorcery/providers/facebook.rb +63 -0
- data/lib/sorcery/providers/github.rb +51 -0
- data/lib/sorcery/providers/google.rb +51 -0
- data/lib/sorcery/providers/heroku.rb +57 -0
- data/lib/sorcery/providers/jira.rb +77 -0
- data/lib/sorcery/providers/linkedin.rb +66 -0
- data/lib/sorcery/providers/liveid.rb +53 -0
- data/lib/sorcery/providers/salesforce.rb +50 -0
- data/lib/sorcery/providers/twitter.rb +59 -0
- data/lib/sorcery/providers/vk.rb +63 -0
- data/lib/sorcery/providers/xing.rb +64 -0
- data/lib/sorcery/test_helpers/internal/rails.rb +17 -6
- data/lib/sorcery/test_helpers/internal.rb +27 -6
- data/lib/sorcery/test_helpers/rails/controller.rb +21 -0
- data/lib/sorcery/test_helpers/rails/integration.rb +26 -0
- data/lib/sorcery/version.rb +3 -0
- data/lib/sorcery.rb +82 -58
- data/sorcery.gemspec +24 -362
- data/spec/active_record/user_activation_spec.rb +18 -0
- data/spec/active_record/user_activity_logging_spec.rb +17 -0
- data/spec/{rails3/spec → active_record}/user_brute_force_protection_spec.rb +6 -5
- data/spec/{rails3/spec → active_record}/user_oauth_spec.rb +6 -5
- data/spec/{rails3/spec → active_record}/user_remember_me_spec.rb +5 -4
- data/spec/{rails3/spec → active_record}/user_reset_password_spec.rb +7 -7
- data/spec/active_record/user_spec.rb +37 -0
- data/spec/controllers/controller_activity_logging_spec.rb +124 -0
- data/spec/controllers/controller_brute_force_protection_spec.rb +43 -0
- data/spec/controllers/controller_http_basic_auth_spec.rb +68 -0
- data/spec/controllers/controller_oauth2_spec.rb +414 -0
- data/spec/controllers/controller_oauth_spec.rb +240 -0
- data/spec/controllers/controller_remember_me_spec.rb +117 -0
- data/spec/controllers/controller_session_timeout_spec.rb +80 -0
- data/spec/controllers/controller_spec.rb +218 -0
- data/spec/data_mapper/user_activation_spec.rb +10 -0
- data/spec/data_mapper/user_activity_logging_spec.rb +14 -0
- data/spec/data_mapper/user_brute_force_protection_spec.rb +9 -0
- data/spec/data_mapper/user_oauth_spec.rb +9 -0
- data/spec/data_mapper/user_remember_me_spec.rb +8 -0
- data/spec/data_mapper/user_reset_password_spec.rb +8 -0
- data/spec/data_mapper/user_spec.rb +27 -0
- data/spec/mongo_mapper/user_activation_spec.rb +9 -0
- data/spec/mongo_mapper/user_activity_logging_spec.rb +8 -0
- data/spec/mongo_mapper/user_brute_force_protection_spec.rb +8 -0
- data/spec/mongo_mapper/user_oauth_spec.rb +8 -0
- data/spec/mongo_mapper/user_remember_me_spec.rb +8 -0
- data/spec/mongo_mapper/user_reset_password_spec.rb +8 -0
- data/spec/mongo_mapper/user_spec.rb +37 -0
- data/spec/mongoid/user_activation_spec.rb +9 -0
- data/spec/mongoid/user_activity_logging_spec.rb +8 -0
- data/spec/mongoid/user_brute_force_protection_spec.rb +8 -0
- data/spec/mongoid/user_oauth_spec.rb +8 -0
- data/spec/mongoid/user_remember_me_spec.rb +8 -0
- data/spec/mongoid/user_reset_password_spec.rb +8 -0
- data/spec/mongoid/user_spec.rb +51 -0
- data/spec/orm/active_record.rb +21 -0
- data/spec/orm/data_mapper.rb +48 -0
- data/spec/orm/mongo_mapper.rb +10 -0
- data/spec/orm/mongoid.rb +22 -0
- data/spec/{rails3/app/models → rails_app/app/active_record}/user.rb +1 -2
- data/spec/rails_app/app/active_record/user_provider.rb +3 -0
- data/spec/rails_app/app/controllers/sorcery_controller.rb +285 -0
- data/spec/rails_app/app/data_mapper/authentication.rb +8 -0
- data/spec/rails_app/app/data_mapper/user.rb +7 -0
- data/spec/{rails3_mongo_mapper/app/models → rails_app/app/mongo_mapper}/user.rb +2 -0
- data/spec/{rails3_mongoid/app/models → rails_app/app/mongoid}/user.rb +2 -0
- data/spec/{rails3_mongo_mapper → rails_app}/config/application.rb +13 -8
- data/spec/rails_app/config/boot.rb +4 -0
- data/spec/rails_app/config/database.yml +22 -0
- data/spec/{rails3_mongo_mapper → rails_app}/config/environments/test.rb +2 -0
- data/spec/{rails3_mongoid → rails_app}/config/initializers/session_store.rb +4 -0
- data/spec/rails_app/config/routes.rb +51 -0
- data/spec/{rails3_mongo_mapper → rails_app}/config.ru +1 -1
- data/spec/{rails3 → rails_app}/db/migrate/activation/20101224223622_add_activation_to_users.rb +3 -3
- data/spec/{rails3 → rails_app}/db/migrate/core/20101224223620_create_users.rb +2 -2
- data/spec/rails_app/db/migrate/external/20101224223628_create_authentications_and_user_providers.rb +22 -0
- data/spec/rails_app/log/development.log +1791 -0
- data/spec/shared_examples/user_activation_shared_examples.rb +137 -98
- data/spec/shared_examples/user_activity_logging_shared_examples.rb +83 -15
- data/spec/shared_examples/user_brute_force_protection_shared_examples.rb +140 -21
- data/spec/shared_examples/user_oauth_shared_examples.rb +21 -16
- data/spec/shared_examples/user_remember_me_shared_examples.rb +36 -24
- data/spec/shared_examples/user_reset_password_shared_examples.rb +163 -130
- data/spec/shared_examples/user_shared_examples.rb +355 -193
- data/spec/sorcery_crypto_providers_spec.rb +74 -72
- data/spec/spec_helper.rb +32 -4
- metadata +262 -508
- data/Gemfile.lock +0 -175
- data/README.rdoc +0 -261
- data/VERSION +0 -1
- data/lib/sorcery/controller/submodules/external/protocols/oauth1.rb +0 -46
- data/lib/sorcery/controller/submodules/external/protocols/oauth2.rb +0 -49
- data/lib/sorcery/controller/submodules/external/providers/base.rb +0 -21
- data/lib/sorcery/controller/submodules/external/providers/facebook.rb +0 -98
- data/lib/sorcery/controller/submodules/external/providers/github.rb +0 -92
- data/lib/sorcery/controller/submodules/external/providers/google.rb +0 -91
- data/lib/sorcery/controller/submodules/external/providers/linkedin.rb +0 -102
- data/lib/sorcery/controller/submodules/external/providers/liveid.rb +0 -92
- data/lib/sorcery/controller/submodules/external/providers/twitter.rb +0 -93
- data/lib/sorcery/controller/submodules/external/providers/vk.rb +0 -100
- data/lib/sorcery/controller/submodules/external/providers/xing.rb +0 -97
- data/lib/sorcery/model/adapters/active_record.rb +0 -49
- data/lib/sorcery/model/adapters/mongo_mapper.rb +0 -56
- data/lib/sorcery/model/adapters/mongoid.rb +0 -88
- data/lib/sorcery/test_helpers/rails.rb +0 -16
- data/lib/sorcery/test_helpers.rb +0 -5
- data/spec/Gemfile +0 -12
- data/spec/Gemfile.lock +0 -129
- data/spec/README.md +0 -31
- data/spec/Rakefile +0 -12
- data/spec/rails3/.gitignore +0 -4
- data/spec/rails3/.rspec +0 -1
- data/spec/rails3/Gemfile +0 -15
- data/spec/rails3/Gemfile.lock +0 -162
- data/spec/rails3/README +0 -256
- data/spec/rails3/Rakefile +0 -11
- data/spec/rails3/app/controllers/application_controller.rb +0 -208
- data/spec/rails3/config/application.rb +0 -46
- data/spec/rails3/config/boot.rb +0 -13
- data/spec/rails3/config/database.yml +0 -27
- data/spec/rails3/config/environments/development.rb +0 -26
- data/spec/rails3/config/environments/in_memory.rb +0 -35
- data/spec/rails3/config/environments/production.rb +0 -49
- data/spec/rails3/config/environments/test.rb +0 -35
- data/spec/rails3/config/initializers/session_store.rb +0 -8
- data/spec/rails3/config/routes.rb +0 -59
- data/spec/rails3/config.ru +0 -4
- data/spec/rails3/db/migrate/external/20101224223628_create_authentications.rb +0 -14
- data/spec/rails3/lib/tasks/.gitkeep +0 -0
- data/spec/rails3/public/404.html +0 -26
- data/spec/rails3/public/422.html +0 -26
- data/spec/rails3/public/500.html +0 -26
- data/spec/rails3/public/favicon.ico +0 -0
- data/spec/rails3/public/images/rails.png +0 -0
- data/spec/rails3/public/javascripts/application.js +0 -2
- data/spec/rails3/public/javascripts/controls.js +0 -965
- data/spec/rails3/public/javascripts/dragdrop.js +0 -974
- data/spec/rails3/public/javascripts/effects.js +0 -1123
- data/spec/rails3/public/javascripts/prototype.js +0 -6001
- data/spec/rails3/public/javascripts/rails.js +0 -175
- data/spec/rails3/public/robots.txt +0 -5
- data/spec/rails3/public/stylesheets/.gitkeep +0 -0
- data/spec/rails3/script/rails +0 -6
- data/spec/rails3/spec/controller_activity_logging_spec.rb +0 -130
- data/spec/rails3/spec/controller_brute_force_protection_spec.rb +0 -96
- data/spec/rails3/spec/controller_http_basic_auth_spec.rb +0 -50
- data/spec/rails3/spec/controller_oauth2_spec.rb +0 -380
- data/spec/rails3/spec/controller_oauth_spec.rb +0 -206
- data/spec/rails3/spec/controller_remember_me_spec.rb +0 -96
- data/spec/rails3/spec/controller_session_timeout_spec.rb +0 -55
- data/spec/rails3/spec/controller_spec.rb +0 -182
- data/spec/rails3/spec/integration_spec.rb +0 -23
- data/spec/rails3/spec/spec.opts +0 -2
- data/spec/rails3/spec/spec_helper.orig.rb +0 -27
- data/spec/rails3/spec/spec_helper.rb +0 -71
- data/spec/rails3/spec/user_activation_spec.rb +0 -16
- data/spec/rails3/spec/user_activity_logging_spec.rb +0 -8
- data/spec/rails3/spec/user_spec.rb +0 -36
- data/spec/rails3/vendor/plugins/.gitkeep +0 -0
- data/spec/rails3_mongo_mapper/.gitignore +0 -4
- data/spec/rails3_mongo_mapper/.rspec +0 -1
- data/spec/rails3_mongo_mapper/Gemfile +0 -16
- data/spec/rails3_mongo_mapper/Gemfile.lock +0 -156
- data/spec/rails3_mongo_mapper/Rakefile +0 -11
- data/spec/rails3_mongo_mapper/app/controllers/application_controller.rb +0 -122
- data/spec/rails3_mongo_mapper/app/helpers/application_helper.rb +0 -2
- data/spec/rails3_mongo_mapper/app/mailers/sorcery_mailer.rb +0 -25
- data/spec/rails3_mongo_mapper/app/views/layouts/application.html.erb +0 -14
- data/spec/rails3_mongo_mapper/app/views/sorcery_mailer/activation_email.html.erb +0 -17
- data/spec/rails3_mongo_mapper/app/views/sorcery_mailer/activation_email.text.erb +0 -9
- data/spec/rails3_mongo_mapper/app/views/sorcery_mailer/activation_success_email.text.erb +0 -9
- data/spec/rails3_mongo_mapper/app/views/sorcery_mailer/reset_password_email.html.erb +0 -16
- data/spec/rails3_mongo_mapper/app/views/sorcery_mailer/reset_password_email.text.erb +0 -8
- data/spec/rails3_mongo_mapper/config/boot.rb +0 -13
- data/spec/rails3_mongo_mapper/config/environment.rb +0 -5
- data/spec/rails3_mongo_mapper/config/environments/development.rb +0 -30
- data/spec/rails3_mongo_mapper/config/environments/in_memory.rb +0 -0
- data/spec/rails3_mongo_mapper/config/environments/production.rb +0 -49
- data/spec/rails3_mongo_mapper/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/rails3_mongo_mapper/config/initializers/inflections.rb +0 -10
- data/spec/rails3_mongo_mapper/config/initializers/mime_types.rb +0 -5
- data/spec/rails3_mongo_mapper/config/initializers/mongo.rb +0 -2
- data/spec/rails3_mongo_mapper/config/initializers/secret_token.rb +0 -7
- data/spec/rails3_mongo_mapper/config/initializers/session_store.rb +0 -8
- data/spec/rails3_mongo_mapper/config/locales/en.yml +0 -5
- data/spec/rails3_mongo_mapper/config/routes.rb +0 -59
- data/spec/rails3_mongo_mapper/db/schema.rb +0 -23
- data/spec/rails3_mongo_mapper/db/seeds.rb +0 -7
- data/spec/rails3_mongo_mapper/lib/tasks/.gitkeep +0 -0
- data/spec/rails3_mongo_mapper/public/404.html +0 -26
- data/spec/rails3_mongo_mapper/public/422.html +0 -26
- data/spec/rails3_mongo_mapper/public/500.html +0 -26
- data/spec/rails3_mongo_mapper/public/favicon.ico +0 -0
- data/spec/rails3_mongo_mapper/public/images/rails.png +0 -0
- data/spec/rails3_mongo_mapper/public/javascripts/application.js +0 -2
- data/spec/rails3_mongo_mapper/public/javascripts/controls.js +0 -965
- data/spec/rails3_mongo_mapper/public/javascripts/dragdrop.js +0 -974
- data/spec/rails3_mongo_mapper/public/javascripts/effects.js +0 -1123
- data/spec/rails3_mongo_mapper/public/javascripts/prototype.js +0 -6001
- data/spec/rails3_mongo_mapper/public/javascripts/rails.js +0 -175
- data/spec/rails3_mongo_mapper/public/robots.txt +0 -5
- data/spec/rails3_mongo_mapper/public/stylesheets/.gitkeep +0 -0
- data/spec/rails3_mongo_mapper/script/rails +0 -6
- data/spec/rails3_mongo_mapper/spec/controller_spec.rb +0 -175
- data/spec/rails3_mongo_mapper/spec/spec.opts +0 -2
- data/spec/rails3_mongo_mapper/spec/spec_helper.orig.rb +0 -27
- data/spec/rails3_mongo_mapper/spec/spec_helper.rb +0 -55
- data/spec/rails3_mongo_mapper/spec/user_activation_spec.rb +0 -9
- data/spec/rails3_mongo_mapper/spec/user_activity_logging_spec.rb +0 -8
- data/spec/rails3_mongo_mapper/spec/user_brute_force_protection_spec.rb +0 -8
- data/spec/rails3_mongo_mapper/spec/user_oauth_spec.rb +0 -8
- data/spec/rails3_mongo_mapper/spec/user_remember_me_spec.rb +0 -8
- data/spec/rails3_mongo_mapper/spec/user_reset_password_spec.rb +0 -8
- data/spec/rails3_mongo_mapper/spec/user_spec.rb +0 -37
- data/spec/rails3_mongo_mapper/vendor/plugins/.gitkeep +0 -0
- data/spec/rails3_mongoid/.gitignore +0 -4
- data/spec/rails3_mongoid/.rspec +0 -1
- data/spec/rails3_mongoid/Gemfile +0 -15
- data/spec/rails3_mongoid/Gemfile.lock +0 -146
- data/spec/rails3_mongoid/Rakefile +0 -11
- data/spec/rails3_mongoid/app/controllers/application_controller.rb +0 -127
- data/spec/rails3_mongoid/app/helpers/application_helper.rb +0 -2
- data/spec/rails3_mongoid/app/mailers/sorcery_mailer.rb +0 -25
- data/spec/rails3_mongoid/app/views/layouts/application.html.erb +0 -14
- data/spec/rails3_mongoid/app/views/sorcery_mailer/activation_email.html.erb +0 -17
- data/spec/rails3_mongoid/app/views/sorcery_mailer/activation_email.text.erb +0 -9
- data/spec/rails3_mongoid/app/views/sorcery_mailer/activation_success_email.html.erb +0 -17
- data/spec/rails3_mongoid/app/views/sorcery_mailer/activation_success_email.text.erb +0 -9
- data/spec/rails3_mongoid/app/views/sorcery_mailer/reset_password_email.html.erb +0 -16
- data/spec/rails3_mongoid/app/views/sorcery_mailer/reset_password_email.text.erb +0 -8
- data/spec/rails3_mongoid/config/application.rb +0 -51
- data/spec/rails3_mongoid/config/boot.rb +0 -13
- data/spec/rails3_mongoid/config/environment.rb +0 -5
- data/spec/rails3_mongoid/config/environments/development.rb +0 -26
- data/spec/rails3_mongoid/config/environments/in_memory.rb +0 -0
- data/spec/rails3_mongoid/config/environments/production.rb +0 -49
- data/spec/rails3_mongoid/config/environments/test.rb +0 -35
- data/spec/rails3_mongoid/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/rails3_mongoid/config/initializers/inflections.rb +0 -10
- data/spec/rails3_mongoid/config/initializers/mime_types.rb +0 -5
- data/spec/rails3_mongoid/config/initializers/secret_token.rb +0 -7
- data/spec/rails3_mongoid/config/locales/en.yml +0 -5
- data/spec/rails3_mongoid/config/mongoid.yml +0 -7
- data/spec/rails3_mongoid/config/routes.rb +0 -59
- data/spec/rails3_mongoid/config.ru +0 -4
- data/spec/rails3_mongoid/db/schema.rb +0 -23
- data/spec/rails3_mongoid/db/seeds.rb +0 -7
- data/spec/rails3_mongoid/lib/tasks/.gitkeep +0 -0
- data/spec/rails3_mongoid/public/404.html +0 -26
- data/spec/rails3_mongoid/public/422.html +0 -26
- data/spec/rails3_mongoid/public/500.html +0 -26
- data/spec/rails3_mongoid/public/favicon.ico +0 -0
- data/spec/rails3_mongoid/public/images/rails.png +0 -0
- data/spec/rails3_mongoid/public/javascripts/application.js +0 -2
- data/spec/rails3_mongoid/public/javascripts/controls.js +0 -965
- data/spec/rails3_mongoid/public/javascripts/dragdrop.js +0 -974
- data/spec/rails3_mongoid/public/javascripts/effects.js +0 -1123
- data/spec/rails3_mongoid/public/javascripts/prototype.js +0 -6001
- data/spec/rails3_mongoid/public/javascripts/rails.js +0 -175
- data/spec/rails3_mongoid/public/robots.txt +0 -5
- data/spec/rails3_mongoid/public/stylesheets/.gitkeep +0 -0
- data/spec/rails3_mongoid/script/rails +0 -6
- data/spec/rails3_mongoid/spec/controller_activity_logging_spec.rb +0 -111
- data/spec/rails3_mongoid/spec/controller_spec.rb +0 -186
- data/spec/rails3_mongoid/spec/spec.opts +0 -2
- data/spec/rails3_mongoid/spec/spec_helper.orig.rb +0 -27
- data/spec/rails3_mongoid/spec/spec_helper.rb +0 -55
- data/spec/rails3_mongoid/spec/user_activation_spec.rb +0 -9
- data/spec/rails3_mongoid/spec/user_activity_logging_spec.rb +0 -8
- data/spec/rails3_mongoid/spec/user_brute_force_protection_spec.rb +0 -8
- data/spec/rails3_mongoid/spec/user_oauth_spec.rb +0 -8
- data/spec/rails3_mongoid/spec/user_remember_me_spec.rb +0 -8
- data/spec/rails3_mongoid/spec/user_reset_password_spec.rb +0 -8
- data/spec/rails3_mongoid/spec/user_spec.rb +0 -38
- data/spec/rails3_mongoid/vendor/plugins/.gitkeep +0 -0
- data/spec/shared_examples/controller_oauth2_shared_examples.rb +0 -56
- data/spec/shared_examples/controller_oauth_shared_examples.rb +0 -55
- /data/lib/sorcery/{controller/submodules/external/protocols → protocols}/certs/ca-bundle.crt +0 -0
- /data/spec/{rails3/app/models → rails_app/app/active_record}/authentication.rb +0 -0
- /data/spec/{rails3 → rails_app}/app/helpers/application_helper.rb +0 -0
- /data/spec/{rails3 → rails_app}/app/mailers/sorcery_mailer.rb +0 -0
- /data/spec/{rails3_mongo_mapper/app/models → rails_app/app/mongo_mapper}/authentication.rb +0 -0
- /data/spec/{rails3_mongoid/app/models → rails_app/app/mongoid}/authentication.rb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/application/index.html.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/layouts/application.html.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/sorcery_mailer/activation_email.html.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/sorcery_mailer/activation_email.text.erb +0 -0
- /data/spec/{rails3/app/views/sorcery_mailer/activation_success_email.html.erb → rails_app/app/views/sorcery_mailer/activation_needed_email.html.erb} +0 -0
- /data/spec/{rails3_mongo_mapper → rails_app}/app/views/sorcery_mailer/activation_success_email.html.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/sorcery_mailer/activation_success_email.text.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/sorcery_mailer/reset_password_email.html.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/sorcery_mailer/reset_password_email.text.erb +0 -0
- /data/spec/{rails3 → rails_app}/app/views/sorcery_mailer/send_unlock_token_email.text.erb +0 -0
- /data/spec/{rails3 → rails_app}/config/environment.rb +0 -0
- /data/spec/{rails3 → rails_app}/config/initializers/backtrace_silencers.rb +0 -0
- /data/spec/{rails3 → rails_app}/config/initializers/inflections.rb +0 -0
- /data/spec/{rails3 → rails_app}/config/initializers/mime_types.rb +0 -0
- /data/spec/{rails3 → rails_app}/config/initializers/secret_token.rb +0 -0
- /data/spec/{rails3 → rails_app}/config/locales/en.yml +0 -0
- /data/spec/{rails3 → rails_app}/db/migrate/activity_logging/20101224223624_add_activity_logging_to_users.rb +0 -0
- /data/spec/{rails3 → rails_app}/db/migrate/brute_force_protection/20101224223626_add_brute_force_protection_to_users.rb +0 -0
- /data/spec/{rails3 → rails_app}/db/migrate/remember_me/20101224223623_add_remember_me_token_to_users.rb +0 -0
- /data/spec/{rails3 → rails_app}/db/migrate/reset_password/20101224223622_add_reset_password_to_users.rb +0 -0
- /data/spec/{rails3 → rails_app}/db/schema.rb +0 -0
- /data/spec/{rails3 → rails_app}/db/seeds.rb +0 -0
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
-
|
|
3
|
-
describe ApplicationController do
|
|
4
|
-
|
|
5
|
-
# ----------------- SESSION TIMEOUT -----------------------
|
|
6
|
-
describe ApplicationController, "with session timeout features" do
|
|
7
|
-
before(:all) do
|
|
8
|
-
sorcery_reload!([:session_timeout])
|
|
9
|
-
sorcery_controller_property_set(:session_timeout,0.5)
|
|
10
|
-
create_new_user
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
after(:each) do
|
|
14
|
-
Timecop.return
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
it "should not reset session before session timeout" do
|
|
18
|
-
login_user
|
|
19
|
-
get :test_should_be_logged_in
|
|
20
|
-
session[:user_id].should_not be_nil
|
|
21
|
-
response.should be_a_success
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
it "should reset session after session timeout" do
|
|
25
|
-
login_user
|
|
26
|
-
Timecop.travel(Time.now.in_time_zone+0.6)
|
|
27
|
-
get :test_should_be_logged_in
|
|
28
|
-
session[:user_id].should be_nil
|
|
29
|
-
response.should be_a_redirect
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
context "with 'session_timeout_from_last_action'" do
|
|
33
|
-
it "should not logout if there was activity" do
|
|
34
|
-
sorcery_controller_property_set(:session_timeout_from_last_action, true)
|
|
35
|
-
get :test_login, :username => 'gizmo', :password => 'secret'
|
|
36
|
-
Timecop.travel(Time.now.in_time_zone+0.3)
|
|
37
|
-
get :test_should_be_logged_in
|
|
38
|
-
session[:user_id].should_not be_nil
|
|
39
|
-
Timecop.travel(Time.now.in_time_zone+0.3)
|
|
40
|
-
get :test_should_be_logged_in
|
|
41
|
-
session[:user_id].should_not be_nil
|
|
42
|
-
response.should be_a_success
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
it "with 'session_timeout_from_last_action' should logout if there was no activity" do
|
|
46
|
-
sorcery_controller_property_set(:session_timeout_from_last_action, true)
|
|
47
|
-
get :test_login, :username => 'gizmo', :password => 'secret'
|
|
48
|
-
Timecop.travel(Time.now.in_time_zone+0.6)
|
|
49
|
-
get :test_should_be_logged_in
|
|
50
|
-
session[:user_id].should be_nil
|
|
51
|
-
response.should be_a_redirect
|
|
52
|
-
end
|
|
53
|
-
end
|
|
54
|
-
end
|
|
55
|
-
end
|
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
-
|
|
3
|
-
describe ApplicationController do
|
|
4
|
-
|
|
5
|
-
# ----------------- PLUGIN CONFIGURATION -----------------------
|
|
6
|
-
describe ApplicationController, "plugin configuration" do
|
|
7
|
-
before(:all) do
|
|
8
|
-
sorcery_reload!
|
|
9
|
-
end
|
|
10
|
-
|
|
11
|
-
after(:each) do
|
|
12
|
-
Sorcery::Controller::Config.reset!
|
|
13
|
-
sorcery_reload!
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
it "should enable configuration option 'user_class'" do
|
|
17
|
-
sorcery_controller_property_set(:user_class, "TestUser")
|
|
18
|
-
Sorcery::Controller::Config.user_class.should == "TestUser"
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
it "should enable configuration option 'not_authenticated_action'" do
|
|
22
|
-
sorcery_controller_property_set(:not_authenticated_action, :my_action)
|
|
23
|
-
Sorcery::Controller::Config.not_authenticated_action.should equal(:my_action)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
# ----------------- PLUGIN ACTIVATED -----------------------
|
|
29
|
-
describe ApplicationController, "when activated with sorcery" do
|
|
30
|
-
before(:all) do
|
|
31
|
-
sorcery_reload!
|
|
32
|
-
User.delete_all
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
before(:each) do
|
|
36
|
-
create_new_user
|
|
37
|
-
end
|
|
38
|
-
|
|
39
|
-
after(:each) do
|
|
40
|
-
Sorcery::Controller::Config.reset!
|
|
41
|
-
sorcery_reload!
|
|
42
|
-
User.delete_all
|
|
43
|
-
sorcery_controller_property_set(:user_class, User)
|
|
44
|
-
sorcery_model_property_set(:username_attribute_names, [:username, :email])
|
|
45
|
-
end
|
|
46
|
-
|
|
47
|
-
specify { should respond_to(:login) }
|
|
48
|
-
|
|
49
|
-
specify { should respond_to(:logout) }
|
|
50
|
-
|
|
51
|
-
specify { should respond_to(:logged_in?) }
|
|
52
|
-
|
|
53
|
-
specify { should respond_to(:current_user) }
|
|
54
|
-
|
|
55
|
-
it "login(username,password) should return the user when success and set the session with user.id" do
|
|
56
|
-
get :test_login, :username => 'gizmo', :password => 'secret'
|
|
57
|
-
assigns[:user].should == @user
|
|
58
|
-
session[:user_id].should == @user.id
|
|
59
|
-
end
|
|
60
|
-
|
|
61
|
-
it "login(email,password) should return the user when success and set the session with user.id" do
|
|
62
|
-
get :test_login, :username => 'bla@bla.com', :password => 'secret'
|
|
63
|
-
assigns[:user].should == @user
|
|
64
|
-
session[:user_id].should == @user.id
|
|
65
|
-
end
|
|
66
|
-
|
|
67
|
-
it "login(username,password) should return nil and not set the session when failure" do
|
|
68
|
-
get :test_login, :username => 'gizmo', :password => 'opensesame!'
|
|
69
|
-
assigns[:user].should be_nil
|
|
70
|
-
session[:user_id].should be_nil
|
|
71
|
-
end
|
|
72
|
-
|
|
73
|
-
it "login(email,password) should return the user when success and set the session with the _csrf_token" do
|
|
74
|
-
get :test_login, :username => 'gizmo', :password => 'secret'
|
|
75
|
-
session[:_csrf_token].should_not be_nil
|
|
76
|
-
end
|
|
77
|
-
|
|
78
|
-
it "login(username,password) should return nil and not set the session when upper case username" do
|
|
79
|
-
get :test_login, :username => 'GIZMO', :password => 'secret'
|
|
80
|
-
assigns[:user].should be_nil
|
|
81
|
-
session[:user_id].should be_nil
|
|
82
|
-
end
|
|
83
|
-
|
|
84
|
-
it "login(username,password) should return the user and set the session with user.id when upper case username and config is downcase before authenticating" do
|
|
85
|
-
sorcery_model_property_set(:downcase_username_before_authenticating, true)
|
|
86
|
-
get :test_login, :username => 'GIZMO', :password => 'secret'
|
|
87
|
-
assigns[:user].should == @user
|
|
88
|
-
session[:user_id].should == @user.id
|
|
89
|
-
end
|
|
90
|
-
|
|
91
|
-
it "login(username,password) should return nil and not set the session when user was created with upper case username, config is default, and log in username is lower case" do
|
|
92
|
-
create_new_user({:username => 'GIZMO1', :email => "bla1@bla.com", :password => 'secret1'})
|
|
93
|
-
get :test_login, :username => 'gizmo1', :password => 'secret1'
|
|
94
|
-
assigns[:user].should be_nil
|
|
95
|
-
session[:user_id].should be_nil
|
|
96
|
-
end
|
|
97
|
-
|
|
98
|
-
it "login(username,password) should return the user and set the session with user.id when user was created with upper case username and config is downcase before authenticating" do
|
|
99
|
-
sorcery_model_property_set(:downcase_username_before_authenticating, true)
|
|
100
|
-
create_new_user({:username => 'GIZMO1', :email => "bla1@bla.com", :password => 'secret1'})
|
|
101
|
-
get :test_login, :username => 'gizmo1', :password => 'secret1'
|
|
102
|
-
assigns[:user].should == @user
|
|
103
|
-
session[:user_id].should == @user.id
|
|
104
|
-
end
|
|
105
|
-
|
|
106
|
-
it "logout should clear the session" do
|
|
107
|
-
cookies[:remember_me_token] = nil
|
|
108
|
-
session[:user_id] = @user.id
|
|
109
|
-
get :test_logout
|
|
110
|
-
session[:user_id].should be_nil
|
|
111
|
-
end
|
|
112
|
-
|
|
113
|
-
it "logged_in? should return true if logged in" do
|
|
114
|
-
session[:user_id] = @user.id
|
|
115
|
-
subject.logged_in?.should be_true
|
|
116
|
-
end
|
|
117
|
-
|
|
118
|
-
it "logged_in? should return false if not logged in" do
|
|
119
|
-
session[:user_id] = nil
|
|
120
|
-
subject.logged_in?.should be_false
|
|
121
|
-
end
|
|
122
|
-
|
|
123
|
-
it "current_user should return the user instance if logged in" do
|
|
124
|
-
create_new_user
|
|
125
|
-
session[:user_id] = @user.id
|
|
126
|
-
subject.current_user.should == @user
|
|
127
|
-
end
|
|
128
|
-
|
|
129
|
-
it "current_user should return false if not logged in" do
|
|
130
|
-
session[:user_id] = nil
|
|
131
|
-
subject.current_user.should == false
|
|
132
|
-
end
|
|
133
|
-
|
|
134
|
-
specify { should respond_to(:require_login) }
|
|
135
|
-
|
|
136
|
-
it "should call the configured 'not_authenticated_action' when authenticate before_filter fails" do
|
|
137
|
-
session[:user_id] = nil
|
|
138
|
-
sorcery_controller_property_set(:not_authenticated_action, :test_not_authenticated_action)
|
|
139
|
-
get :test_logout
|
|
140
|
-
response.body.should == "test_not_authenticated_action"
|
|
141
|
-
end
|
|
142
|
-
|
|
143
|
-
it "require_login before_filter should save the url that the user originally wanted" do
|
|
144
|
-
get :some_action
|
|
145
|
-
session[:return_to_url].should == "http://test.host/application/some_action"
|
|
146
|
-
response.should redirect_to("http://test.host/")
|
|
147
|
-
end
|
|
148
|
-
|
|
149
|
-
it "require_login before_filter should not save the url that the user originally wanted upon all non-get http methods" do
|
|
150
|
-
[:post, :put, :delete].each do |m|
|
|
151
|
-
self.send(m, :some_action)
|
|
152
|
-
session[:return_to_url].should be_nil
|
|
153
|
-
end
|
|
154
|
-
end
|
|
155
|
-
|
|
156
|
-
it "on successful login the user should be redirected to the url he originally wanted" do
|
|
157
|
-
session[:return_to_url] = "http://test.host/some_action"
|
|
158
|
-
post :test_return_to, :username => 'gizmo', :password => 'secret'
|
|
159
|
-
response.should redirect_to("http://test.host/some_action")
|
|
160
|
-
flash[:notice].should == "haha!"
|
|
161
|
-
end
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
# --- auto_login(user) ---
|
|
165
|
-
specify { should respond_to(:auto_login) }
|
|
166
|
-
|
|
167
|
-
it "auto_login(user) should login a user instance" do
|
|
168
|
-
session[:user_id] = nil
|
|
169
|
-
subject.auto_login(@user)
|
|
170
|
-
subject.logged_in?.should be_true
|
|
171
|
-
end
|
|
172
|
-
|
|
173
|
-
it "auto_login(user) should work even if current_user was already set to false" do
|
|
174
|
-
get :test_logout
|
|
175
|
-
session[:user_id].should be_nil
|
|
176
|
-
subject.current_user.should be_false
|
|
177
|
-
get :test_auto_login
|
|
178
|
-
assigns[:result].should == User.find(:first)
|
|
179
|
-
end
|
|
180
|
-
end
|
|
181
|
-
|
|
182
|
-
end
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
-
|
|
3
|
-
describe "the login process", :type => :request do
|
|
4
|
-
before(:all) do
|
|
5
|
-
sorcery_reload!
|
|
6
|
-
create_new_user
|
|
7
|
-
end
|
|
8
|
-
|
|
9
|
-
after(:all) do
|
|
10
|
-
end
|
|
11
|
-
end
|
|
12
|
-
# it "handles unverified request", :js => true do
|
|
13
|
-
# visit root_path
|
|
14
|
-
# #save_and_open_page
|
|
15
|
-
# fill_in 'Username', :with => 'gizmo1'
|
|
16
|
-
# fill_in 'Password', :with => 'secret'
|
|
17
|
-
# # <input name="authenticity_token" type="hidden" value="+8M9lXnjnhAW/mAuzwI9Mmy6hM+00qZJa8VMQUg+NmM=">
|
|
18
|
-
# page.execute_script("$$('hidden').value='mezuza'")
|
|
19
|
-
# #save_and_open_page
|
|
20
|
-
# click_button 'Login'
|
|
21
|
-
# save_and_open_page
|
|
22
|
-
# end
|
|
23
|
-
# end
|
data/spec/rails3/spec/spec.opts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
|
2
|
-
ENV["RAILS_ENV"] ||= 'test'
|
|
3
|
-
require File.expand_path("../../config/environment", __FILE__)
|
|
4
|
-
require 'rspec/rails'
|
|
5
|
-
|
|
6
|
-
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
7
|
-
# in spec/support/ and its subdirectories.
|
|
8
|
-
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
|
|
9
|
-
|
|
10
|
-
RSpec.configure do |config|
|
|
11
|
-
# == Mock Framework
|
|
12
|
-
#
|
|
13
|
-
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
14
|
-
#
|
|
15
|
-
# config.mock_with :mocha
|
|
16
|
-
# config.mock_with :flexmock
|
|
17
|
-
# config.mock_with :rr
|
|
18
|
-
config.mock_with :rspec
|
|
19
|
-
|
|
20
|
-
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
21
|
-
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
22
|
-
|
|
23
|
-
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
24
|
-
# examples within a transaction, remove the following line or assign false
|
|
25
|
-
# instead of true.
|
|
26
|
-
config.use_transactional_fixtures = true
|
|
27
|
-
end
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
$: << File.join(File.dirname(__FILE__), '..', '..', 'lib' )
|
|
2
|
-
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
|
3
|
-
|
|
4
|
-
# Set the default environment to sqlite3's in_memory database
|
|
5
|
-
ENV["RAILS_ENV"] ||= 'in_memory'
|
|
6
|
-
require File.expand_path("../../config/environment", __FILE__)
|
|
7
|
-
require 'rspec/rails'
|
|
8
|
-
require 'capybara/rspec'
|
|
9
|
-
require 'timecop'
|
|
10
|
-
# require 'simplecov'
|
|
11
|
-
# SimpleCov.root File.join(File.dirname(__FILE__), "..", "..", "rails3" )
|
|
12
|
-
# SimpleCov.start do
|
|
13
|
-
# add_filter "/config/"
|
|
14
|
-
#
|
|
15
|
-
# add_group 'Controllers', 'app/controllers'
|
|
16
|
-
# add_group 'Models', 'app/models'
|
|
17
|
-
# add_group 'Helpers', 'app/helpers'
|
|
18
|
-
# add_group 'Libraries', 'lib'
|
|
19
|
-
# add_group 'Plugins', 'vendor/plugins'
|
|
20
|
-
# add_group 'Migrations', 'db/migrate'
|
|
21
|
-
# end
|
|
22
|
-
|
|
23
|
-
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
24
|
-
# in spec/support/ and its subdirectories.
|
|
25
|
-
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
|
|
26
|
-
|
|
27
|
-
RSpec.configure do |config|
|
|
28
|
-
config.include RSpec::Rails::ControllerExampleGroup, :example_group => { :file_path => /controller(.)*_spec.rb$/ }
|
|
29
|
-
# == Mock Framework
|
|
30
|
-
#
|
|
31
|
-
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
32
|
-
#
|
|
33
|
-
# config.mock_with :mocha
|
|
34
|
-
# config.mock_with :flexmock
|
|
35
|
-
# config.mock_with :rr
|
|
36
|
-
config.mock_with :rspec
|
|
37
|
-
|
|
38
|
-
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
39
|
-
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
40
|
-
|
|
41
|
-
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
42
|
-
# examples within a transaction, remove the following line or assign false
|
|
43
|
-
# instead of true.
|
|
44
|
-
config.use_transactional_fixtures = true
|
|
45
|
-
|
|
46
|
-
#ActiveRecord::Base.logger = Logger.new(STDOUT)
|
|
47
|
-
config.before(:suite) do
|
|
48
|
-
ActiveRecord::Migrator.migrate("#{Rails.root}/db/migrate/core")
|
|
49
|
-
end
|
|
50
|
-
|
|
51
|
-
config.after(:suite) do
|
|
52
|
-
ActiveRecord::Migrator.rollback("#{Rails.root}/db/migrate/core")
|
|
53
|
-
end
|
|
54
|
-
end
|
|
55
|
-
|
|
56
|
-
#----------------------------------------------------------------
|
|
57
|
-
# needed when running individual specs
|
|
58
|
-
require File.join(File.dirname(__FILE__), '..','app','models','user')
|
|
59
|
-
require File.join(File.dirname(__FILE__), '..','app','models','authentication')
|
|
60
|
-
|
|
61
|
-
class TestUser < ActiveRecord::Base
|
|
62
|
-
authenticates_with_sorcery!
|
|
63
|
-
end
|
|
64
|
-
|
|
65
|
-
class TestMailer < ActionMailer::Base
|
|
66
|
-
|
|
67
|
-
end
|
|
68
|
-
|
|
69
|
-
include ::Sorcery::TestHelpers::Internal
|
|
70
|
-
include ::Sorcery::TestHelpers::Internal::Rails
|
|
71
|
-
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../app/mailers/sorcery_mailer')
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../shared_examples/user_activation_shared_examples')
|
|
4
|
-
|
|
5
|
-
describe "User with activation submodule" do
|
|
6
|
-
before(:all) do
|
|
7
|
-
ActiveRecord::Migrator.migrate("#{Rails.root}/db/migrate/activation")
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
after(:all) do
|
|
11
|
-
ActiveRecord::Migrator.rollback("#{Rails.root}/db/migrate/activation")
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
it_behaves_like "rails_3_activation_model"
|
|
15
|
-
|
|
16
|
-
end
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../shared_examples/user_activity_logging_shared_examples')
|
|
3
|
-
|
|
4
|
-
describe "User with activity logging submodule" do
|
|
5
|
-
|
|
6
|
-
it_behaves_like "rails_3_activity_logging_model"
|
|
7
|
-
|
|
8
|
-
end
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../app/mailers/sorcery_mailer')
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../../shared_examples/user_shared_examples')
|
|
4
|
-
|
|
5
|
-
describe "User with no submodules (core)" do
|
|
6
|
-
before(:all) do
|
|
7
|
-
sorcery_reload!
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
describe User, "when app has plugin loaded" do
|
|
11
|
-
it "should respond to the plugin activation class method" do
|
|
12
|
-
ActiveRecord::Base.should respond_to(:authenticates_with_sorcery!)
|
|
13
|
-
end
|
|
14
|
-
|
|
15
|
-
it "User should respond_to .authenticates_with_sorcery!" do
|
|
16
|
-
User.should respond_to(:authenticates_with_sorcery!)
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
|
|
20
|
-
# ----------------- PLUGIN CONFIGURATION -----------------------
|
|
21
|
-
|
|
22
|
-
it_should_behave_like "rails_3_core_model"
|
|
23
|
-
|
|
24
|
-
describe User, "external users" do
|
|
25
|
-
before(:all) do
|
|
26
|
-
ActiveRecord::Migrator.migrate("#{Rails.root}/db/migrate/external")
|
|
27
|
-
sorcery_reload!()
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
after(:all) do
|
|
31
|
-
ActiveRecord::Migrator.rollback("#{Rails.root}/db/migrate/external")
|
|
32
|
-
end
|
|
33
|
-
|
|
34
|
-
it_should_behave_like "external_user"
|
|
35
|
-
end
|
|
36
|
-
end
|
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
--colour
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
source 'http://rubygems.org'
|
|
2
|
-
|
|
3
|
-
gem 'bcrypt-ruby', '~> 3.0.0'
|
|
4
|
-
gem 'rails', '3.0.3'
|
|
5
|
-
gem "sorcery", '>= 0.1.0', :path => '../../'
|
|
6
|
-
gem "mongo_mapper", '~> 0.11.0'
|
|
7
|
-
gem "bson_ext", "~> 1.3"
|
|
8
|
-
|
|
9
|
-
group :development, :test do
|
|
10
|
-
gem "rspec", "~> 2.5.0"
|
|
11
|
-
gem 'rspec-rails', "~> 2.5.0"
|
|
12
|
-
gem 'ruby-debug19'
|
|
13
|
-
gem 'simplecov', '>= 0.3.8', :require => false # Will install simplecov-html as a dependency
|
|
14
|
-
gem 'timecop'
|
|
15
|
-
gem 'pry'
|
|
16
|
-
end
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: ../../
|
|
3
|
-
specs:
|
|
4
|
-
sorcery (0.8.1)
|
|
5
|
-
bcrypt-ruby (~> 3.0.0)
|
|
6
|
-
oauth (~> 0.4.4)
|
|
7
|
-
oauth2 (~> 0.8.0)
|
|
8
|
-
|
|
9
|
-
GEM
|
|
10
|
-
remote: http://rubygems.org/
|
|
11
|
-
specs:
|
|
12
|
-
abstract (1.0.0)
|
|
13
|
-
actionmailer (3.0.3)
|
|
14
|
-
actionpack (= 3.0.3)
|
|
15
|
-
mail (~> 2.2.9)
|
|
16
|
-
actionpack (3.0.3)
|
|
17
|
-
activemodel (= 3.0.3)
|
|
18
|
-
activesupport (= 3.0.3)
|
|
19
|
-
builder (~> 2.1.2)
|
|
20
|
-
erubis (~> 2.6.6)
|
|
21
|
-
i18n (~> 0.4)
|
|
22
|
-
rack (~> 1.2.1)
|
|
23
|
-
rack-mount (~> 0.6.13)
|
|
24
|
-
rack-test (~> 0.5.6)
|
|
25
|
-
tzinfo (~> 0.3.23)
|
|
26
|
-
activemodel (3.0.3)
|
|
27
|
-
activesupport (= 3.0.3)
|
|
28
|
-
builder (~> 2.1.2)
|
|
29
|
-
i18n (~> 0.4)
|
|
30
|
-
activerecord (3.0.3)
|
|
31
|
-
activemodel (= 3.0.3)
|
|
32
|
-
activesupport (= 3.0.3)
|
|
33
|
-
arel (~> 2.0.2)
|
|
34
|
-
tzinfo (~> 0.3.23)
|
|
35
|
-
activeresource (3.0.3)
|
|
36
|
-
activemodel (= 3.0.3)
|
|
37
|
-
activesupport (= 3.0.3)
|
|
38
|
-
activesupport (3.0.3)
|
|
39
|
-
archive-tar-minitar (0.5.2)
|
|
40
|
-
arel (2.0.10)
|
|
41
|
-
bcrypt-ruby (3.0.1)
|
|
42
|
-
bson (1.6.0)
|
|
43
|
-
bson_ext (1.6.0)
|
|
44
|
-
bson (= 1.6.0)
|
|
45
|
-
builder (2.1.2)
|
|
46
|
-
coderay (1.0.5)
|
|
47
|
-
columnize (0.3.6)
|
|
48
|
-
diff-lcs (1.1.3)
|
|
49
|
-
erubis (2.6.6)
|
|
50
|
-
abstract (>= 1.0.0)
|
|
51
|
-
faraday (0.8.5)
|
|
52
|
-
multipart-post (~> 1.1)
|
|
53
|
-
httpauth (0.2.0)
|
|
54
|
-
i18n (0.6.0)
|
|
55
|
-
jwt (0.1.5)
|
|
56
|
-
multi_json (>= 1.0)
|
|
57
|
-
linecache19 (0.5.12)
|
|
58
|
-
ruby_core_source (>= 0.1.4)
|
|
59
|
-
mail (2.2.19)
|
|
60
|
-
activesupport (>= 2.3.6)
|
|
61
|
-
i18n (>= 0.4.0)
|
|
62
|
-
mime-types (~> 1.16)
|
|
63
|
-
treetop (~> 1.4.8)
|
|
64
|
-
method_source (0.7.1)
|
|
65
|
-
mime-types (1.17.2)
|
|
66
|
-
mongo (1.6.0)
|
|
67
|
-
bson (= 1.6.0)
|
|
68
|
-
mongo_mapper (0.11.0)
|
|
69
|
-
activemodel (~> 3.0)
|
|
70
|
-
activesupport (~> 3.0)
|
|
71
|
-
plucky (~> 0.4.0)
|
|
72
|
-
multi_json (1.1.0)
|
|
73
|
-
multipart-post (1.1.5)
|
|
74
|
-
oauth (0.4.7)
|
|
75
|
-
oauth2 (0.8.1)
|
|
76
|
-
faraday (~> 0.8)
|
|
77
|
-
httpauth (~> 0.1)
|
|
78
|
-
jwt (~> 0.1.4)
|
|
79
|
-
multi_json (~> 1.0)
|
|
80
|
-
rack (~> 1.2)
|
|
81
|
-
plucky (0.4.4)
|
|
82
|
-
mongo (~> 1.5)
|
|
83
|
-
polyglot (0.3.3)
|
|
84
|
-
pry (0.9.8.3)
|
|
85
|
-
coderay (~> 1.0.5)
|
|
86
|
-
method_source (~> 0.7.1)
|
|
87
|
-
slop (>= 2.4.4, < 3)
|
|
88
|
-
rack (1.2.5)
|
|
89
|
-
rack-mount (0.6.14)
|
|
90
|
-
rack (>= 1.0.0)
|
|
91
|
-
rack-test (0.5.7)
|
|
92
|
-
rack (>= 1.0)
|
|
93
|
-
rails (3.0.3)
|
|
94
|
-
actionmailer (= 3.0.3)
|
|
95
|
-
actionpack (= 3.0.3)
|
|
96
|
-
activerecord (= 3.0.3)
|
|
97
|
-
activeresource (= 3.0.3)
|
|
98
|
-
activesupport (= 3.0.3)
|
|
99
|
-
bundler (~> 1.0)
|
|
100
|
-
railties (= 3.0.3)
|
|
101
|
-
railties (3.0.3)
|
|
102
|
-
actionpack (= 3.0.3)
|
|
103
|
-
activesupport (= 3.0.3)
|
|
104
|
-
rake (>= 0.8.7)
|
|
105
|
-
thor (~> 0.14.4)
|
|
106
|
-
rake (0.9.2.2)
|
|
107
|
-
rspec (2.5.0)
|
|
108
|
-
rspec-core (~> 2.5.0)
|
|
109
|
-
rspec-expectations (~> 2.5.0)
|
|
110
|
-
rspec-mocks (~> 2.5.0)
|
|
111
|
-
rspec-core (2.5.2)
|
|
112
|
-
rspec-expectations (2.5.0)
|
|
113
|
-
diff-lcs (~> 1.1.2)
|
|
114
|
-
rspec-mocks (2.5.0)
|
|
115
|
-
rspec-rails (2.5.0)
|
|
116
|
-
actionpack (~> 3.0)
|
|
117
|
-
activesupport (~> 3.0)
|
|
118
|
-
railties (~> 3.0)
|
|
119
|
-
rspec (~> 2.5.0)
|
|
120
|
-
ruby-debug-base19 (0.11.25)
|
|
121
|
-
columnize (>= 0.3.1)
|
|
122
|
-
linecache19 (>= 0.5.11)
|
|
123
|
-
ruby_core_source (>= 0.1.4)
|
|
124
|
-
ruby-debug19 (0.11.6)
|
|
125
|
-
columnize (>= 0.3.1)
|
|
126
|
-
linecache19 (>= 0.5.11)
|
|
127
|
-
ruby-debug-base19 (>= 0.11.19)
|
|
128
|
-
ruby_core_source (0.1.5)
|
|
129
|
-
archive-tar-minitar (>= 0.5.2)
|
|
130
|
-
simplecov (0.6.1)
|
|
131
|
-
multi_json (~> 1.0)
|
|
132
|
-
simplecov-html (~> 0.5.3)
|
|
133
|
-
simplecov-html (0.5.3)
|
|
134
|
-
slop (2.4.4)
|
|
135
|
-
thor (0.14.6)
|
|
136
|
-
timecop (0.3.5)
|
|
137
|
-
treetop (1.4.10)
|
|
138
|
-
polyglot
|
|
139
|
-
polyglot (>= 0.3.1)
|
|
140
|
-
tzinfo (0.3.31)
|
|
141
|
-
|
|
142
|
-
PLATFORMS
|
|
143
|
-
ruby
|
|
144
|
-
|
|
145
|
-
DEPENDENCIES
|
|
146
|
-
bcrypt-ruby (~> 3.0.0)
|
|
147
|
-
bson_ext (~> 1.3)
|
|
148
|
-
mongo_mapper (~> 0.11.0)
|
|
149
|
-
pry
|
|
150
|
-
rails (= 3.0.3)
|
|
151
|
-
rspec (~> 2.5.0)
|
|
152
|
-
rspec-rails (~> 2.5.0)
|
|
153
|
-
ruby-debug19
|
|
154
|
-
simplecov (>= 0.3.8)
|
|
155
|
-
sorcery (>= 0.1.0)!
|
|
156
|
-
timecop
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
require 'rake'
|
|
2
|
-
require 'rspec/core/rake_task'
|
|
3
|
-
|
|
4
|
-
desc 'Default: Run all specs for a specific rails version.'
|
|
5
|
-
task :default => :spec
|
|
6
|
-
|
|
7
|
-
desc "Run all specs for a specific rails version"
|
|
8
|
-
RSpec::Core::RakeTask.new(:spec) do |t|
|
|
9
|
-
t.pattern = '**/*_spec.rb'
|
|
10
|
-
t.rspec_opts = ["--options #{File.dirname(__FILE__)}/spec/spec.opts"]
|
|
11
|
-
end
|