shingara-devise 0.4.3

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.
Files changed (99) hide show
  1. data/CHANGELOG.rdoc +119 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +253 -0
  4. data/Rakefile +45 -0
  5. data/TODO +5 -0
  6. data/app/controllers/confirmations_controller.rb +33 -0
  7. data/app/controllers/passwords_controller.rb +41 -0
  8. data/app/controllers/sessions_controller.rb +33 -0
  9. data/app/models/devise_mailer.rb +53 -0
  10. data/app/views/confirmations/new.html.erb +16 -0
  11. data/app/views/devise_mailer/confirmation_instructions.html.erb +5 -0
  12. data/app/views/devise_mailer/reset_password_instructions.html.erb +8 -0
  13. data/app/views/passwords/edit.html.erb +20 -0
  14. data/app/views/passwords/new.html.erb +16 -0
  15. data/app/views/sessions/new.html.erb +23 -0
  16. data/generators/devise/USAGE +5 -0
  17. data/generators/devise/devise_generator.rb +25 -0
  18. data/generators/devise/lib/route_devise.rb +32 -0
  19. data/generators/devise/templates/README +22 -0
  20. data/generators/devise/templates/migration.rb +20 -0
  21. data/generators/devise/templates/model.rb +5 -0
  22. data/generators/devise_install/USAGE +3 -0
  23. data/generators/devise_install/devise_install_generator.rb +9 -0
  24. data/generators/devise_install/templates/devise.rb +47 -0
  25. data/generators/devise_views/USAGE +3 -0
  26. data/generators/devise_views/devise_views_generator.rb +24 -0
  27. data/init.rb +2 -0
  28. data/lib/devise/controllers/filters.rb +111 -0
  29. data/lib/devise/controllers/helpers.rb +130 -0
  30. data/lib/devise/controllers/url_helpers.rb +49 -0
  31. data/lib/devise/encryptors/authlogic_sha512.rb +28 -0
  32. data/lib/devise/encryptors/clearance_sha1.rb +26 -0
  33. data/lib/devise/encryptors/restful_authentication_sha1.rb +29 -0
  34. data/lib/devise/encryptors/sha1.rb +34 -0
  35. data/lib/devise/encryptors/sha512.rb +34 -0
  36. data/lib/devise/failure.rb +36 -0
  37. data/lib/devise/hooks/confirmable.rb +11 -0
  38. data/lib/devise/hooks/rememberable.rb +27 -0
  39. data/lib/devise/locales/en.yml +18 -0
  40. data/lib/devise/mapping.rb +120 -0
  41. data/lib/devise/migrations.rb +57 -0
  42. data/lib/devise/models/authenticatable.rb +87 -0
  43. data/lib/devise/models/confirmable.rb +156 -0
  44. data/lib/devise/models/recoverable.rb +88 -0
  45. data/lib/devise/models/rememberable.rb +95 -0
  46. data/lib/devise/models/validatable.rb +36 -0
  47. data/lib/devise/models.rb +110 -0
  48. data/lib/devise/orm/mongo_mapper.rb +26 -0
  49. data/lib/devise/rails/routes.rb +109 -0
  50. data/lib/devise/rails/warden_compat.rb +26 -0
  51. data/lib/devise/rails.rb +17 -0
  52. data/lib/devise/strategies/authenticatable.rb +46 -0
  53. data/lib/devise/strategies/base.rb +24 -0
  54. data/lib/devise/strategies/rememberable.rb +35 -0
  55. data/lib/devise/version.rb +3 -0
  56. data/lib/devise/warden.rb +20 -0
  57. data/lib/devise.rb +130 -0
  58. data/test/controllers/filters_test.rb +103 -0
  59. data/test/controllers/helpers_test.rb +55 -0
  60. data/test/controllers/url_helpers_test.rb +47 -0
  61. data/test/devise_test.rb +72 -0
  62. data/test/encryptors_test.rb +28 -0
  63. data/test/failure_test.rb +34 -0
  64. data/test/integration/authenticatable_test.rb +195 -0
  65. data/test/integration/confirmable_test.rb +89 -0
  66. data/test/integration/recoverable_test.rb +131 -0
  67. data/test/integration/rememberable_test.rb +65 -0
  68. data/test/mailers/confirmation_instructions_test.rb +59 -0
  69. data/test/mailers/reset_password_instructions_test.rb +62 -0
  70. data/test/mapping_test.rb +101 -0
  71. data/test/models/authenticatable_test.rb +130 -0
  72. data/test/models/confirmable_test.rb +237 -0
  73. data/test/models/recoverable_test.rb +141 -0
  74. data/test/models/rememberable_test.rb +130 -0
  75. data/test/models/validatable_test.rb +99 -0
  76. data/test/models_test.rb +111 -0
  77. data/test/rails_app/app/controllers/admins_controller.rb +6 -0
  78. data/test/rails_app/app/controllers/application_controller.rb +10 -0
  79. data/test/rails_app/app/controllers/home_controller.rb +4 -0
  80. data/test/rails_app/app/controllers/users_controller.rb +7 -0
  81. data/test/rails_app/app/helpers/application_helper.rb +3 -0
  82. data/test/rails_app/app/models/account.rb +3 -0
  83. data/test/rails_app/app/models/admin.rb +3 -0
  84. data/test/rails_app/app/models/organizer.rb +3 -0
  85. data/test/rails_app/app/models/user.rb +3 -0
  86. data/test/rails_app/config/boot.rb +110 -0
  87. data/test/rails_app/config/environment.rb +41 -0
  88. data/test/rails_app/config/environments/development.rb +17 -0
  89. data/test/rails_app/config/environments/production.rb +28 -0
  90. data/test/rails_app/config/environments/test.rb +28 -0
  91. data/test/rails_app/config/initializers/new_rails_defaults.rb +21 -0
  92. data/test/rails_app/config/initializers/session_store.rb +15 -0
  93. data/test/rails_app/config/routes.rb +18 -0
  94. data/test/routes_test.rb +79 -0
  95. data/test/support/assertions_helper.rb +22 -0
  96. data/test/support/integration_tests_helper.rb +66 -0
  97. data/test/support/model_tests_helper.rb +51 -0
  98. data/test/test_helper.rb +40 -0
  99. metadata +161 -0
@@ -0,0 +1,111 @@
1
+ require 'test/test_helper'
2
+
3
+ class Authenticable < User
4
+ devise
5
+ end
6
+
7
+ class Confirmable < User
8
+ devise :confirmable
9
+ end
10
+
11
+ class Recoverable < User
12
+ devise :recoverable
13
+ end
14
+
15
+ class Rememberable < User
16
+ devise :rememberable
17
+ end
18
+
19
+ class Validatable < User
20
+ devise :validatable
21
+ end
22
+
23
+ class Devisable < User
24
+ devise :all
25
+ end
26
+
27
+ class Exceptable < User
28
+ devise :all, :except => [:recoverable, :rememberable, :validatable]
29
+ end
30
+
31
+ class Configurable < User
32
+ devise :all, :stretches => 15,
33
+ :pepper => 'abcdef',
34
+ :confirm_within => 5.days,
35
+ :remember_for => 7.days
36
+ end
37
+
38
+ class ActiveRecordTest < ActiveSupport::TestCase
39
+
40
+ def include_module?(klass, mod)
41
+ klass.devise_modules.include?(mod) &&
42
+ klass.included_modules.include?(Devise::Models::const_get(mod.to_s.classify))
43
+ end
44
+
45
+ def assert_include_modules(klass, *modules)
46
+ modules.each do |mod|
47
+ assert include_module?(klass, mod)
48
+ end
49
+ end
50
+
51
+ def assert_not_include_modules(klass, *modules)
52
+ modules.each do |mod|
53
+ assert_not include_module?(klass, mod)
54
+ end
55
+ end
56
+
57
+ test 'include by default authenticatable only' do
58
+ assert_include_modules Authenticable, :authenticatable
59
+ assert_not_include_modules Authenticable, :confirmable, :recoverable, :rememberable, :validatable
60
+ end
61
+
62
+ test 'add confirmable module only' do
63
+ assert_include_modules Confirmable, :authenticatable, :confirmable
64
+ assert_not_include_modules Confirmable, :recoverable, :rememberable, :validatable
65
+ end
66
+
67
+ test 'add recoverable module only' do
68
+ assert_include_modules Recoverable, :authenticatable, :recoverable
69
+ assert_not_include_modules Recoverable, :confirmable, :rememberable, :validatable
70
+ end
71
+
72
+ test 'add rememberable module only' do
73
+ assert_include_modules Rememberable, :authenticatable, :rememberable
74
+ assert_not_include_modules Rememberable, :confirmable, :recoverable, :validatable
75
+ end
76
+
77
+ test 'add validatable module only' do
78
+ assert_include_modules Validatable, :authenticatable, :validatable
79
+ assert_not_include_modules Validatable, :confirmable, :recoverable, :rememberable
80
+ end
81
+
82
+ test 'add all modules' do
83
+ assert_include_modules Devisable,
84
+ :authenticatable, :confirmable, :recoverable, :rememberable, :validatable
85
+ end
86
+
87
+ test 'configure modules with except option' do
88
+ assert_include_modules Exceptable, :authenticatable, :confirmable
89
+ assert_not_include_modules Exceptable, :recoverable, :rememberable, :validatable
90
+ end
91
+
92
+ test 'set a default value for stretches' do
93
+ assert_equal 15, Configurable.new.stretches
94
+ end
95
+
96
+ test 'set a default value for pepper' do
97
+ assert_equal 'abcdef', Configurable.new.pepper
98
+ end
99
+
100
+ test 'set a default value for confirm_within' do
101
+ assert_equal 5.days, Configurable.new.confirm_within
102
+ end
103
+
104
+ test 'set a default value for remember_for' do
105
+ assert_equal 7.days, Configurable.new.remember_for
106
+ end
107
+
108
+ test 'set null fields on migrations' do
109
+ Admin.create!
110
+ end
111
+ end
@@ -0,0 +1,6 @@
1
+ class AdminsController < ApplicationController
2
+ before_filter :authenticate_admin!
3
+
4
+ def index
5
+ end
6
+ end
@@ -0,0 +1,10 @@
1
+ # Filters added to this controller apply to all controllers in the application.
2
+ # Likewise, all the methods added will be available for all controllers.
3
+
4
+ class ApplicationController < ActionController::Base
5
+ helper :all # include all helpers, all the time
6
+ protect_from_forgery # See ActionController::RequestForgeryProtection for details
7
+
8
+ # Scrub sensitive parameters from your log
9
+ filter_parameter_logging :password
10
+ end
@@ -0,0 +1,4 @@
1
+ class HomeController < ApplicationController
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,7 @@
1
+ class UsersController < ApplicationController
2
+ before_filter :authenticate_user!
3
+
4
+ def index
5
+ user_session[:cart] = "Cart"
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ # Methods added to this helper will be available to all templates in the application.
2
+ module ApplicationHelper
3
+ end
@@ -0,0 +1,3 @@
1
+ class Account < ActiveRecord::Base
2
+ devise :all
3
+ end
@@ -0,0 +1,3 @@
1
+ class Admin < ActiveRecord::Base
2
+ devise :all, :except => [:recoverable, :confirmable, :rememberable, :validatable]
3
+ end
@@ -0,0 +1,3 @@
1
+ class Organizer < ActiveRecord::Base
2
+ devise :all
3
+ end
@@ -0,0 +1,3 @@
1
+ class User < ActiveRecord::Base
2
+ devise :all
3
+ end
@@ -0,0 +1,110 @@
1
+ # Don't change this file!
2
+ # Configure your app in config/environment.rb and config/environments/*.rb
3
+
4
+ RAILS_ROOT = "#{File.dirname(__FILE__)}/.." unless defined?(RAILS_ROOT)
5
+
6
+ module Rails
7
+ class << self
8
+ def boot!
9
+ unless booted?
10
+ preinitialize
11
+ pick_boot.run
12
+ end
13
+ end
14
+
15
+ def booted?
16
+ defined? Rails::Initializer
17
+ end
18
+
19
+ def pick_boot
20
+ (vendor_rails? ? VendorBoot : GemBoot).new
21
+ end
22
+
23
+ def vendor_rails?
24
+ File.exist?("#{RAILS_ROOT}/vendor/rails")
25
+ end
26
+
27
+ def preinitialize
28
+ load(preinitializer_path) if File.exist?(preinitializer_path)
29
+ end
30
+
31
+ def preinitializer_path
32
+ "#{RAILS_ROOT}/config/preinitializer.rb"
33
+ end
34
+ end
35
+
36
+ class Boot
37
+ def run
38
+ load_initializer
39
+ Rails::Initializer.run(:set_load_path)
40
+ end
41
+ end
42
+
43
+ class VendorBoot < Boot
44
+ def load_initializer
45
+ require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
46
+ Rails::Initializer.run(:install_gem_spec_stubs)
47
+ Rails::GemDependency.add_frozen_gem_path
48
+ end
49
+ end
50
+
51
+ class GemBoot < Boot
52
+ def load_initializer
53
+ self.class.load_rubygems
54
+ load_rails_gem
55
+ require 'initializer'
56
+ end
57
+
58
+ def load_rails_gem
59
+ if version = self.class.gem_version
60
+ gem 'rails', version
61
+ else
62
+ gem 'rails'
63
+ end
64
+ rescue Gem::LoadError => load_error
65
+ $stderr.puts %(Missing the Rails #{version} gem. Please `gem install -v=#{version} rails`, update your RAILS_GEM_VERSION setting in config/environment.rb for the Rails version you do have installed, or comment out RAILS_GEM_VERSION to use the latest version installed.)
66
+ exit 1
67
+ end
68
+
69
+ class << self
70
+ def rubygems_version
71
+ Gem::RubyGemsVersion rescue nil
72
+ end
73
+
74
+ def gem_version
75
+ if defined? RAILS_GEM_VERSION
76
+ RAILS_GEM_VERSION
77
+ elsif ENV.include?('RAILS_GEM_VERSION')
78
+ ENV['RAILS_GEM_VERSION']
79
+ else
80
+ parse_gem_version(read_environment_rb)
81
+ end
82
+ end
83
+
84
+ def load_rubygems
85
+ min_version = '1.3.2'
86
+ require 'rubygems'
87
+ unless rubygems_version >= min_version
88
+ $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.)
89
+ exit 1
90
+ end
91
+
92
+ rescue LoadError
93
+ $stderr.puts %Q(Rails requires RubyGems >= #{min_version}. Please install RubyGems and try again: http://rubygems.rubyforge.org)
94
+ exit 1
95
+ end
96
+
97
+ def parse_gem_version(text)
98
+ $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
99
+ end
100
+
101
+ private
102
+ def read_environment_rb
103
+ File.read("#{RAILS_ROOT}/config/environment.rb")
104
+ end
105
+ end
106
+ end
107
+ end
108
+
109
+ # All that for this:
110
+ Rails.boot!
@@ -0,0 +1,41 @@
1
+ # Be sure to restart your server when you modify this file
2
+
3
+ # Specifies gem version of Rails to use when vendor/rails is not present
4
+ RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION
5
+
6
+ # Bootstrap the Rails environment, frameworks, and default configuration
7
+ require File.join(File.dirname(__FILE__), 'boot')
8
+
9
+ Rails::Initializer.run do |config|
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Add additional load paths for your own custom dirs
15
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
16
+
17
+ # Specify gems that this application depends on and have them installed with rake gems:install
18
+ # config.gem "bj"
19
+ # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
20
+ # config.gem "sqlite3-ruby", :lib => "sqlite3"
21
+ # config.gem "aws-s3", :lib => "aws/s3"
22
+
23
+ # Only load the plugins named here, in the order given (default is alphabetical).
24
+ # :all can be used as a placeholder for all plugins not explicitly named
25
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
26
+
27
+ # Skip frameworks you're not going to use. To use Rails without a database,
28
+ # you must remove the Active Record framework.
29
+ # config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
30
+
31
+ # Activate observers that should always be running
32
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
33
+
34
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
35
+ # Run "rake -D time" for a list of tasks for finding time zone names.
36
+ config.time_zone = 'UTC'
37
+
38
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
39
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
40
+ # config.i18n.default_locale = :en
41
+ end
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.action_controller.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+ config.action_view.cache_template_loading = true
11
+
12
+ # See everything in the log (default is :info)
13
+ # config.log_level = :debug
14
+
15
+ # Use a different logger for distributed setups
16
+ # config.logger = SyslogLogger.new
17
+
18
+ # Use a different cache store in production
19
+ # config.cache_store = :mem_cache_store
20
+
21
+ # Enable serving of images, stylesheets, and javascripts from an asset server
22
+ # config.action_controller.asset_host = "http://assets.example.com"
23
+
24
+ # Disable delivery errors, bad email addresses will be ignored
25
+ # config.action_mailer.raise_delivery_errors = false
26
+
27
+ # Enable threaded mode
28
+ # config.threadsafe!
@@ -0,0 +1,28 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+ config.action_view.cache_template_loading = true
16
+
17
+ # Disable request forgery protection in test environment
18
+ config.action_controller.allow_forgery_protection = false
19
+
20
+ # Tell Action Mailer not to deliver emails to the real world.
21
+ # The :test delivery method accumulates sent emails in the
22
+ # ActionMailer::Base.deliveries array.
23
+ config.action_mailer.delivery_method = :test
24
+
25
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
26
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
27
+ # like if you have constraints or database-specific column types
28
+ # config.active_record.schema_format = :sql
@@ -0,0 +1,21 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # These settings change the behavior of Rails 2 apps and will be defaults
4
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
5
+
6
+ if defined?(ActiveRecord)
7
+ # Include Active Record class name as root for JSON serialized output.
8
+ ActiveRecord::Base.include_root_in_json = true
9
+
10
+ # Store the full class name (including module namespace) in STI type column.
11
+ ActiveRecord::Base.store_full_sti_class = true
12
+ end
13
+
14
+ ActionController::Routing.generate_best_match = false
15
+
16
+ # Use ISO 8601 format for JSON serialized times and dates.
17
+ ActiveSupport.use_standard_json_time_format = true
18
+
19
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
20
+ # if you're including raw json in an HTML page.
21
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying cookie session data integrity.
4
+ # If you change this key, all old sessions will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ ActionController::Base.session = {
8
+ :key => '_rails_app_session',
9
+ :secret => '89e8147901a0d7c221ac130e0ded3eeab6dab4a97127255909f08fedaae371918b41dec9d4d75c5b27a55c3772d43c2b6a3cbac232c5cc2ce4b8ec22242f5e60'
10
+ }
11
+
12
+ # Use the database for sessions instead of the cookie-based default,
13
+ # which shouldn't be used to store highly confidential information
14
+ # (create the session table with "rake db:sessions:create")
15
+ # ActionController::Base.session_store = :active_record_store
@@ -0,0 +1,18 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ map.devise_for :users
3
+ map.devise_for :admin, :as => 'admin_area'
4
+ map.devise_for :account, :path_names => {
5
+ :sign_in => 'login', :sign_out => 'logout', :password => 'secret', :confirmation => 'verification'
6
+ }
7
+ map.devise_for :organizers, :singular => 'manager', :path_prefix => '/:locale'
8
+
9
+ map.resources :users, :only => :index
10
+ map.resources :admins, :only => :index
11
+ map.root :controller => :home
12
+
13
+ map.connect '/admin_area/password/new', :controller => "passwords", :action => "new"
14
+ map.admin_root '/admin_area/home', :controller => "admins", :action => "index"
15
+
16
+ map.connect ':controller/:action/:id'
17
+ map.connect ':controller/:action/:id.:format'
18
+ end
@@ -0,0 +1,79 @@
1
+ require 'test/test_helper'
2
+
3
+ class MapRoutingTest < ActionController::TestCase
4
+
5
+ test 'map new user session' do
6
+ assert_recognizes({:controller => 'sessions', :action => 'new'}, {:path => 'users/sign_in', :method => :get})
7
+ end
8
+
9
+ test 'map create user session' do
10
+ assert_recognizes({:controller => 'sessions', :action => 'create'}, {:path => 'users/sign_in', :method => :post})
11
+ end
12
+
13
+ test 'map destroy user session' do
14
+ assert_recognizes({:controller => 'sessions', :action => 'destroy'}, {:path => 'users/sign_out', :method => :get})
15
+ end
16
+
17
+ test 'map new user confirmation' do
18
+ assert_recognizes({:controller => 'confirmations', :action => 'new'}, 'users/confirmation/new')
19
+ end
20
+
21
+ test 'map create user confirmation' do
22
+ assert_recognizes({:controller => 'confirmations', :action => 'create'}, {:path => 'users/confirmation', :method => :post})
23
+ end
24
+
25
+ test 'map show user confirmation' do
26
+ assert_recognizes({:controller => 'confirmations', :action => 'show'}, {:path => 'users/confirmation', :method => :get})
27
+ end
28
+
29
+ test 'map new user password' do
30
+ assert_recognizes({:controller => 'passwords', :action => 'new'}, 'users/password/new')
31
+ end
32
+
33
+ test 'map create user password' do
34
+ assert_recognizes({:controller => 'passwords', :action => 'create'}, {:path => 'users/password', :method => :post})
35
+ end
36
+
37
+ test 'map edit user password' do
38
+ assert_recognizes({:controller => 'passwords', :action => 'edit'}, 'users/password/edit')
39
+ end
40
+
41
+ test 'map update user password' do
42
+ assert_recognizes({:controller => 'passwords', :action => 'update'}, {:path => 'users/password', :method => :put})
43
+ end
44
+
45
+ test 'map admin session with :as option' do
46
+ assert_recognizes({:controller => 'sessions', :action => 'new'}, {:path => 'admin_area/sign_in', :method => :get})
47
+ end
48
+
49
+ test 'does not map admin confirmation' do
50
+ assert_raise ActionController::RoutingError do
51
+ assert_recognizes({:controller => 'confirmations', :action => 'new'}, 'admin_area/confirmation/new')
52
+ end
53
+ end
54
+
55
+ test 'map account with custom path name for session sign in' do
56
+ assert_recognizes({:controller => 'sessions', :action => 'new'}, 'account/login')
57
+ end
58
+
59
+ test 'map account with custom path name for session sign out' do
60
+ assert_recognizes({:controller => 'sessions', :action => 'destroy'}, 'account/logout')
61
+ end
62
+
63
+ test 'map account with custom path name for password' do
64
+ assert_recognizes({:controller => 'passwords', :action => 'new'}, 'account/secret/new')
65
+ end
66
+
67
+ test 'map account with custom path name for confirmation' do
68
+ assert_recognizes({:controller => 'confirmations', :action => 'new'}, 'account/verification/new')
69
+ end
70
+
71
+ test 'map organizer with custom singular name' do
72
+ assert_recognizes({:controller => 'passwords', :action => 'new', :locale => "en"}, '/en/organizers/password/new')
73
+ end
74
+
75
+ test 'map organizer with path prefix' do
76
+ assert_recognizes({:controller => 'sessions', :action => 'new', :locale => "en"}, '/en/organizers/sign_in')
77
+ end
78
+
79
+ end
@@ -0,0 +1,22 @@
1
+ class ActiveSupport::TestCase
2
+ def assert_not(assertion)
3
+ assert !assertion
4
+ end
5
+
6
+ def assert_blank(assertion)
7
+ assert assertion.blank?
8
+ end
9
+
10
+ def assert_not_blank(assertion)
11
+ assert !assertion.blank?
12
+ end
13
+ alias :assert_present :assert_not_blank
14
+
15
+ def assert_email_sent(&block)
16
+ assert_difference('ActionMailer::Base.deliveries.size') { yield }
17
+ end
18
+
19
+ def assert_email_not_sent(&block)
20
+ assert_no_difference('ActionMailer::Base.deliveries.size') { yield }
21
+ end
22
+ end
@@ -0,0 +1,66 @@
1
+ class ActionController::IntegrationTest
2
+
3
+ def warden
4
+ request.env['warden']
5
+ end
6
+
7
+ def create_user(options={})
8
+ @user ||= begin
9
+ user = User.create!(
10
+ :email => 'user@test.com', :password => '123456', :password_confirmation => '123456'
11
+ )
12
+ user.confirm! unless options[:confirm] == false
13
+ user
14
+ end
15
+ end
16
+
17
+ def create_admin(options={})
18
+ @admin ||= begin
19
+ admin = Admin.create!(
20
+ :email => 'admin@test.com', :password => '123456', :password_confirmation => '123456'
21
+ )
22
+ admin
23
+ end
24
+ end
25
+
26
+ def sign_in_as_user(options={}, &block)
27
+ user = create_user(options)
28
+ visit new_user_session_path unless options[:visit] == false
29
+ fill_in 'email', :with => 'user@test.com'
30
+ fill_in 'password', :with => '123456'
31
+ check 'remember me' if options[:remember_me] == true
32
+ yield if block_given?
33
+ click_button 'Sign In'
34
+ user
35
+ end
36
+
37
+ def sign_in_as_admin(options={}, &block)
38
+ admin = create_admin(options)
39
+ visit new_admin_session_path unless options[:visit] == false
40
+ fill_in 'email', :with => 'admin@test.com'
41
+ fill_in 'password', :with => '123456'
42
+ yield if block_given?
43
+ click_button 'Sign In'
44
+ admin
45
+ end
46
+
47
+ # Fix assert_redirect_to in integration sessions because they don't take into
48
+ # account Middleware redirects.
49
+ #
50
+ def assert_redirected_to(url)
51
+ assert [301, 302].include?(@integration_session.status),
52
+ "Expected status to be 301 or 302, got #{@integration_session.status}"
53
+
54
+ url = prepend_host(url)
55
+ location = prepend_host(@integration_session.headers["Location"])
56
+ assert_equal url, location
57
+ end
58
+
59
+ protected
60
+
61
+ def prepend_host(url)
62
+ url = "http://#{request.host}#{url}" if url[0] == ?/
63
+ url
64
+ end
65
+
66
+ end
@@ -0,0 +1,51 @@
1
+ class ActiveSupport::TestCase
2
+ def setup_mailer
3
+ ActionMailer::Base.deliveries = []
4
+ end
5
+
6
+ def store_translations(locale, translations, &block)
7
+ begin
8
+ I18n.backend.store_translations locale, translations
9
+ yield
10
+ ensure
11
+ I18n.reload!
12
+ end
13
+ end
14
+
15
+ # Helpers for creating new users
16
+ #
17
+ def generate_unique_email
18
+ @@email_count ||= 0
19
+ @@email_count += 1
20
+ "test#{@@email_count}@email.com"
21
+ end
22
+
23
+ def valid_attributes(attributes={})
24
+ { :email => generate_unique_email,
25
+ :password => '123456',
26
+ :password_confirmation => '123456' }.update(attributes)
27
+ end
28
+
29
+ def new_user(attributes={})
30
+ User.new(valid_attributes(attributes))
31
+ end
32
+
33
+ def create_user(attributes={})
34
+ User.create!(valid_attributes(attributes))
35
+ end
36
+
37
+ # Execute the block setting the given values and restoring old values after
38
+ # the block is executed.
39
+ def swap(object, new_values)
40
+ old_values = {}
41
+ new_values.each do |key, value|
42
+ old_values[key] = object.send key
43
+ object.send :"#{key}=", value
44
+ end
45
+ yield
46
+ ensure
47
+ old_values.each do |key, value|
48
+ object.send :"#{key}=", value
49
+ end
50
+ end
51
+ end