jlecour-authlogic 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. data/.gitignore +9 -0
  2. data/CHANGELOG.rdoc +345 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +245 -0
  5. data/Rakefile +42 -0
  6. data/VERSION.yml +4 -0
  7. data/authlogic.gemspec +212 -0
  8. data/generators/session/session_generator.rb +9 -0
  9. data/generators/session/templates/session.erb +2 -0
  10. data/init.rb +1 -0
  11. data/lib/authlogic.rb +56 -0
  12. data/lib/authlogic/acts_as_authentic/base.rb +107 -0
  13. data/lib/authlogic/acts_as_authentic/email.rb +110 -0
  14. data/lib/authlogic/acts_as_authentic/logged_in_status.rb +60 -0
  15. data/lib/authlogic/acts_as_authentic/login.rb +141 -0
  16. data/lib/authlogic/acts_as_authentic/magic_columns.rb +24 -0
  17. data/lib/authlogic/acts_as_authentic/password.rb +344 -0
  18. data/lib/authlogic/acts_as_authentic/perishable_token.rb +105 -0
  19. data/lib/authlogic/acts_as_authentic/persistence_token.rb +68 -0
  20. data/lib/authlogic/acts_as_authentic/restful_authentication.rb +61 -0
  21. data/lib/authlogic/acts_as_authentic/session_maintenance.rb +139 -0
  22. data/lib/authlogic/acts_as_authentic/single_access_token.rb +65 -0
  23. data/lib/authlogic/acts_as_authentic/validations_scope.rb +32 -0
  24. data/lib/authlogic/authenticates_many/association.rb +42 -0
  25. data/lib/authlogic/authenticates_many/base.rb +55 -0
  26. data/lib/authlogic/controller_adapters/abstract_adapter.rb +67 -0
  27. data/lib/authlogic/controller_adapters/merb_adapter.rb +30 -0
  28. data/lib/authlogic/controller_adapters/rails_adapter.rb +48 -0
  29. data/lib/authlogic/controller_adapters/sinatra_adapter.rb +61 -0
  30. data/lib/authlogic/crypto_providers/aes256.rb +43 -0
  31. data/lib/authlogic/crypto_providers/bcrypt.rb +89 -0
  32. data/lib/authlogic/crypto_providers/md5.rb +34 -0
  33. data/lib/authlogic/crypto_providers/sha1.rb +35 -0
  34. data/lib/authlogic/crypto_providers/sha512.rb +50 -0
  35. data/lib/authlogic/i18n.rb +83 -0
  36. data/lib/authlogic/i18n/translator.rb +15 -0
  37. data/lib/authlogic/random.rb +33 -0
  38. data/lib/authlogic/regex.rb +25 -0
  39. data/lib/authlogic/session/activation.rb +58 -0
  40. data/lib/authlogic/session/active_record_trickery.rb +61 -0
  41. data/lib/authlogic/session/base.rb +37 -0
  42. data/lib/authlogic/session/brute_force_protection.rb +96 -0
  43. data/lib/authlogic/session/callbacks.rb +88 -0
  44. data/lib/authlogic/session/cookies.rb +130 -0
  45. data/lib/authlogic/session/existence.rb +93 -0
  46. data/lib/authlogic/session/foundation.rb +63 -0
  47. data/lib/authlogic/session/http_auth.rb +58 -0
  48. data/lib/authlogic/session/id.rb +41 -0
  49. data/lib/authlogic/session/klass.rb +75 -0
  50. data/lib/authlogic/session/magic_columns.rb +95 -0
  51. data/lib/authlogic/session/magic_states.rb +59 -0
  52. data/lib/authlogic/session/params.rb +101 -0
  53. data/lib/authlogic/session/password.rb +240 -0
  54. data/lib/authlogic/session/perishable_token.rb +18 -0
  55. data/lib/authlogic/session/persistence.rb +70 -0
  56. data/lib/authlogic/session/priority_record.rb +34 -0
  57. data/lib/authlogic/session/scopes.rb +101 -0
  58. data/lib/authlogic/session/session.rb +62 -0
  59. data/lib/authlogic/session/timeout.rb +82 -0
  60. data/lib/authlogic/session/unauthorized_record.rb +50 -0
  61. data/lib/authlogic/session/validation.rb +82 -0
  62. data/lib/authlogic/test_case.rb +114 -0
  63. data/lib/authlogic/test_case/mock_controller.rb +45 -0
  64. data/lib/authlogic/test_case/mock_cookie_jar.rb +14 -0
  65. data/lib/authlogic/test_case/mock_logger.rb +10 -0
  66. data/lib/authlogic/test_case/mock_request.rb +19 -0
  67. data/lib/authlogic/test_case/rails_request_adapter.rb +30 -0
  68. data/rails/init.rb +1 -0
  69. data/shoulda_macros/authlogic.rb +13 -0
  70. data/test/acts_as_authentic_test/base_test.rb +18 -0
  71. data/test/acts_as_authentic_test/email_test.rb +97 -0
  72. data/test/acts_as_authentic_test/logged_in_status_test.rb +36 -0
  73. data/test/acts_as_authentic_test/login_test.rb +109 -0
  74. data/test/acts_as_authentic_test/magic_columns_test.rb +27 -0
  75. data/test/acts_as_authentic_test/password_test.rb +236 -0
  76. data/test/acts_as_authentic_test/perishable_token_test.rb +90 -0
  77. data/test/acts_as_authentic_test/persistence_token_test.rb +55 -0
  78. data/test/acts_as_authentic_test/restful_authentication_test.rb +40 -0
  79. data/test/acts_as_authentic_test/session_maintenance_test.rb +84 -0
  80. data/test/acts_as_authentic_test/single_access_test.rb +44 -0
  81. data/test/authenticates_many_test.rb +16 -0
  82. data/test/crypto_provider_test/aes256_test.rb +14 -0
  83. data/test/crypto_provider_test/bcrypt_test.rb +14 -0
  84. data/test/crypto_provider_test/sha1_test.rb +23 -0
  85. data/test/crypto_provider_test/sha512_test.rb +14 -0
  86. data/test/fixtures/companies.yml +5 -0
  87. data/test/fixtures/employees.yml +17 -0
  88. data/test/fixtures/projects.yml +3 -0
  89. data/test/fixtures/users.yml +24 -0
  90. data/test/i18n_test.rb +33 -0
  91. data/test/libs/affiliate.rb +7 -0
  92. data/test/libs/company.rb +6 -0
  93. data/test/libs/employee.rb +7 -0
  94. data/test/libs/employee_session.rb +2 -0
  95. data/test/libs/ldaper.rb +3 -0
  96. data/test/libs/ordered_hash.rb +9 -0
  97. data/test/libs/project.rb +3 -0
  98. data/test/libs/user.rb +5 -0
  99. data/test/libs/user_session.rb +2 -0
  100. data/test/random_test.rb +49 -0
  101. data/test/session_test/activation_test.rb +43 -0
  102. data/test/session_test/active_record_trickery_test.rb +36 -0
  103. data/test/session_test/brute_force_protection_test.rb +101 -0
  104. data/test/session_test/callbacks_test.rb +6 -0
  105. data/test/session_test/cookies_test.rb +107 -0
  106. data/test/session_test/credentials_test.rb +0 -0
  107. data/test/session_test/existence_test.rb +64 -0
  108. data/test/session_test/http_auth_test.rb +28 -0
  109. data/test/session_test/id_test.rb +17 -0
  110. data/test/session_test/klass_test.rb +35 -0
  111. data/test/session_test/magic_columns_test.rb +62 -0
  112. data/test/session_test/magic_states_test.rb +60 -0
  113. data/test/session_test/params_test.rb +53 -0
  114. data/test/session_test/password_test.rb +106 -0
  115. data/test/session_test/perishability_test.rb +15 -0
  116. data/test/session_test/persistence_test.rb +21 -0
  117. data/test/session_test/scopes_test.rb +60 -0
  118. data/test/session_test/session_test.rb +59 -0
  119. data/test/session_test/timeout_test.rb +52 -0
  120. data/test/session_test/unauthorized_record_test.rb +13 -0
  121. data/test/session_test/validation_test.rb +23 -0
  122. data/test/test_helper.rb +181 -0
  123. metadata +233 -0
@@ -0,0 +1,23 @@
1
+ require File.dirname(__FILE__) + '/../test_helper.rb'
2
+
3
+ module SessionTest
4
+ class ValidationTest < ActiveSupport::TestCase
5
+ def test_errors
6
+ session = UserSession.new
7
+ assert session.errors.is_a?(Authlogic::Session::Validation::Errors)
8
+ end
9
+
10
+ def test_valid
11
+ session = UserSession.new
12
+ assert !session.valid?
13
+ assert_nil session.record
14
+ assert session.errors.count > 0
15
+
16
+ ben = users(:ben)
17
+ session.unauthorized_record = ben
18
+ assert session.valid?
19
+ assert_equal ben, session.attempted_record
20
+ assert session.errors.empty?
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,181 @@
1
+ require "test/unit"
2
+ require "rubygems"
3
+ require "ruby-debug"
4
+ require "active_record"
5
+ require "active_record/fixtures"
6
+
7
+ # A temporary fix to bring active record errors up to speed with rails edge.
8
+ # I need to remove this once the new gem is released. This is only here so my tests pass.
9
+ unless defined?(::ActiveModel)
10
+ class ActiveRecord::Errors
11
+ def [](key)
12
+ value = on(key)
13
+ value.is_a?(Array) ? value : [value].compact
14
+ end
15
+ end
16
+ end
17
+
18
+
19
+ ActiveRecord::Schema.verbose = false
20
+ begin
21
+ ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :database => ":memory:")
22
+ rescue ArgumentError
23
+ ActiveRecord::Base.establish_connection(:adapter => "sqlite3", :dbfile => ":memory:")
24
+ end
25
+
26
+ ActiveRecord::Base.configurations = true
27
+ ActiveRecord::Schema.define(:version => 1) do
28
+ create_table :companies do |t|
29
+ t.datetime :created_at
30
+ t.datetime :updated_at
31
+ t.string :name
32
+ t.boolean :active
33
+ end
34
+
35
+ create_table :projects do |t|
36
+ t.datetime :created_at
37
+ t.datetime :updated_at
38
+ t.string :name
39
+ end
40
+
41
+ create_table :projects_users, :id => false do |t|
42
+ t.integer :project_id
43
+ t.integer :user_id
44
+ end
45
+
46
+ create_table :users do |t|
47
+ t.datetime :created_at
48
+ t.datetime :updated_at
49
+ t.integer :lock_version, :default => 0
50
+ t.integer :company_id
51
+ t.string :login
52
+ t.string :crypted_password
53
+ t.string :password_salt
54
+ t.string :persistence_token
55
+ t.string :single_access_token
56
+ t.string :perishable_token
57
+ t.string :email
58
+ t.string :first_name
59
+ t.string :last_name
60
+ t.integer :login_count, :default => 0, :null => false
61
+ t.integer :failed_login_count, :default => 0, :null => false
62
+ t.datetime :last_request_at
63
+ t.datetime :current_login_at
64
+ t.datetime :last_login_at
65
+ t.string :current_login_ip
66
+ t.string :last_login_ip
67
+ t.boolean :active, :default => true
68
+ t.boolean :approved, :default => true
69
+ t.boolean :confirmed, :default => true
70
+ end
71
+
72
+ create_table :employees do |t|
73
+ t.datetime :created_at
74
+ t.datetime :updated_at
75
+ t.integer :company_id
76
+ t.string :email
77
+ t.string :crypted_password
78
+ t.string :password_salt
79
+ t.string :persistence_token
80
+ t.string :first_name
81
+ t.string :last_name
82
+ t.integer :login_count, :default => 0, :null => false
83
+ t.datetime :last_request_at
84
+ t.datetime :current_login_at
85
+ t.datetime :last_login_at
86
+ t.string :current_login_ip
87
+ t.string :last_login_ip
88
+ end
89
+
90
+ create_table :affiliates do |t|
91
+ t.datetime :created_at
92
+ t.datetime :updated_at
93
+ t.integer :company_id
94
+ t.string :username
95
+ t.string :pw_hash
96
+ t.string :pw_salt
97
+ t.string :persistence_token
98
+ end
99
+
100
+ create_table :ldapers do |t|
101
+ t.datetime :created_at
102
+ t.datetime :updated_at
103
+ t.string :ldap_login
104
+ t.string :persistence_token
105
+ end
106
+ end
107
+
108
+ require File.dirname(__FILE__) + '/../lib/authlogic' unless defined?(Authlogic)
109
+ require File.dirname(__FILE__) + '/../lib/authlogic/test_case'
110
+ require File.dirname(__FILE__) + '/libs/project'
111
+ require File.dirname(__FILE__) + '/libs/affiliate'
112
+ require File.dirname(__FILE__) + '/libs/employee'
113
+ require File.dirname(__FILE__) + '/libs/employee_session'
114
+ require File.dirname(__FILE__) + '/libs/ldaper'
115
+ require File.dirname(__FILE__) + '/libs/user'
116
+ require File.dirname(__FILE__) + '/libs/user_session'
117
+ require File.dirname(__FILE__) + '/libs/company'
118
+
119
+ Authlogic::CryptoProviders::AES256.key = "myafdsfddddddddddddddddddddddddddddddddddddddddddddddd"
120
+
121
+ class ActiveSupport::TestCase
122
+ include ActiveRecord::TestFixtures
123
+ self.fixture_path = File.dirname(__FILE__) + "/fixtures"
124
+ self.use_transactional_fixtures = false
125
+ self.use_instantiated_fixtures = false
126
+ self.pre_loaded_fixtures = false
127
+ fixtures :all
128
+ setup :activate_authlogic
129
+
130
+ private
131
+ def password_for(user)
132
+ case user
133
+ when users(:ben)
134
+ "benrocks"
135
+ when users(:zack)
136
+ "zackrocks"
137
+ end
138
+ end
139
+
140
+ def http_basic_auth_for(user = nil, &block)
141
+ unless user.blank?
142
+ controller.http_user = user.login
143
+ controller.http_password = password_for(user)
144
+ end
145
+ yield
146
+ controller.http_user = controller.http_password = nil
147
+ end
148
+
149
+ def set_cookie_for(user, id = nil)
150
+ controller.cookies["user_credentials"] = {:value => user.persistence_token, :expires => nil}
151
+ end
152
+
153
+ def unset_cookie
154
+ controller.cookies["user_credentials"] = nil
155
+ end
156
+
157
+ def set_params_for(user, id = nil)
158
+ controller.params["user_credentials"] = user.single_access_token
159
+ end
160
+
161
+ def unset_params
162
+ controller.params["user_credentials"] = nil
163
+ end
164
+
165
+ def set_request_content_type(type)
166
+ controller.request_content_type = type
167
+ end
168
+
169
+ def unset_request_content_type
170
+ controller.request_content_type = nil
171
+ end
172
+
173
+ def set_session_for(user, id = nil)
174
+ controller.session["user_credentials"] = user.persistence_token
175
+ controller.session["user_credentials_id"] = user.id
176
+ end
177
+
178
+ def unset_session
179
+ controller.session["user_credentials"] = controller.session["user_credentials_id"] = nil
180
+ end
181
+ end
metadata ADDED
@@ -0,0 +1,233 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jlecour-authlogic
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Ben Johnson of Binary Logic
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-09-12 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description:
26
+ email: bjohnson@binarylogic.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .gitignore
36
+ - CHANGELOG.rdoc
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION.yml
41
+ - authlogic.gemspec
42
+ - generators/session/session_generator.rb
43
+ - generators/session/templates/session.erb
44
+ - init.rb
45
+ - lib/authlogic.rb
46
+ - lib/authlogic/acts_as_authentic/base.rb
47
+ - lib/authlogic/acts_as_authentic/email.rb
48
+ - lib/authlogic/acts_as_authentic/logged_in_status.rb
49
+ - lib/authlogic/acts_as_authentic/login.rb
50
+ - lib/authlogic/acts_as_authentic/magic_columns.rb
51
+ - lib/authlogic/acts_as_authentic/password.rb
52
+ - lib/authlogic/acts_as_authentic/perishable_token.rb
53
+ - lib/authlogic/acts_as_authentic/persistence_token.rb
54
+ - lib/authlogic/acts_as_authentic/restful_authentication.rb
55
+ - lib/authlogic/acts_as_authentic/session_maintenance.rb
56
+ - lib/authlogic/acts_as_authentic/single_access_token.rb
57
+ - lib/authlogic/acts_as_authentic/validations_scope.rb
58
+ - lib/authlogic/authenticates_many/association.rb
59
+ - lib/authlogic/authenticates_many/base.rb
60
+ - lib/authlogic/controller_adapters/abstract_adapter.rb
61
+ - lib/authlogic/controller_adapters/merb_adapter.rb
62
+ - lib/authlogic/controller_adapters/rails_adapter.rb
63
+ - lib/authlogic/controller_adapters/sinatra_adapter.rb
64
+ - lib/authlogic/crypto_providers/aes256.rb
65
+ - lib/authlogic/crypto_providers/bcrypt.rb
66
+ - lib/authlogic/crypto_providers/md5.rb
67
+ - lib/authlogic/crypto_providers/sha1.rb
68
+ - lib/authlogic/crypto_providers/sha512.rb
69
+ - lib/authlogic/i18n.rb
70
+ - lib/authlogic/i18n/translator.rb
71
+ - lib/authlogic/random.rb
72
+ - lib/authlogic/regex.rb
73
+ - lib/authlogic/session/activation.rb
74
+ - lib/authlogic/session/active_record_trickery.rb
75
+ - lib/authlogic/session/base.rb
76
+ - lib/authlogic/session/brute_force_protection.rb
77
+ - lib/authlogic/session/callbacks.rb
78
+ - lib/authlogic/session/cookies.rb
79
+ - lib/authlogic/session/existence.rb
80
+ - lib/authlogic/session/foundation.rb
81
+ - lib/authlogic/session/http_auth.rb
82
+ - lib/authlogic/session/id.rb
83
+ - lib/authlogic/session/klass.rb
84
+ - lib/authlogic/session/magic_columns.rb
85
+ - lib/authlogic/session/magic_states.rb
86
+ - lib/authlogic/session/params.rb
87
+ - lib/authlogic/session/password.rb
88
+ - lib/authlogic/session/perishable_token.rb
89
+ - lib/authlogic/session/persistence.rb
90
+ - lib/authlogic/session/priority_record.rb
91
+ - lib/authlogic/session/scopes.rb
92
+ - lib/authlogic/session/session.rb
93
+ - lib/authlogic/session/timeout.rb
94
+ - lib/authlogic/session/unauthorized_record.rb
95
+ - lib/authlogic/session/validation.rb
96
+ - lib/authlogic/test_case.rb
97
+ - lib/authlogic/test_case/mock_controller.rb
98
+ - lib/authlogic/test_case/mock_cookie_jar.rb
99
+ - lib/authlogic/test_case/mock_logger.rb
100
+ - lib/authlogic/test_case/mock_request.rb
101
+ - lib/authlogic/test_case/rails_request_adapter.rb
102
+ - rails/init.rb
103
+ - shoulda_macros/authlogic.rb
104
+ - test/acts_as_authentic_test/base_test.rb
105
+ - test/acts_as_authentic_test/email_test.rb
106
+ - test/acts_as_authentic_test/logged_in_status_test.rb
107
+ - test/acts_as_authentic_test/login_test.rb
108
+ - test/acts_as_authentic_test/magic_columns_test.rb
109
+ - test/acts_as_authentic_test/password_test.rb
110
+ - test/acts_as_authentic_test/perishable_token_test.rb
111
+ - test/acts_as_authentic_test/persistence_token_test.rb
112
+ - test/acts_as_authentic_test/restful_authentication_test.rb
113
+ - test/acts_as_authentic_test/session_maintenance_test.rb
114
+ - test/acts_as_authentic_test/single_access_test.rb
115
+ - test/authenticates_many_test.rb
116
+ - test/crypto_provider_test/aes256_test.rb
117
+ - test/crypto_provider_test/bcrypt_test.rb
118
+ - test/crypto_provider_test/sha1_test.rb
119
+ - test/crypto_provider_test/sha512_test.rb
120
+ - test/fixtures/companies.yml
121
+ - test/fixtures/employees.yml
122
+ - test/fixtures/projects.yml
123
+ - test/fixtures/users.yml
124
+ - test/i18n_test.rb
125
+ - test/libs/affiliate.rb
126
+ - test/libs/company.rb
127
+ - test/libs/employee.rb
128
+ - test/libs/employee_session.rb
129
+ - test/libs/ldaper.rb
130
+ - test/libs/ordered_hash.rb
131
+ - test/libs/project.rb
132
+ - test/libs/user.rb
133
+ - test/libs/user_session.rb
134
+ - test/random_test.rb
135
+ - test/session_test/activation_test.rb
136
+ - test/session_test/active_record_trickery_test.rb
137
+ - test/session_test/brute_force_protection_test.rb
138
+ - test/session_test/callbacks_test.rb
139
+ - test/session_test/cookies_test.rb
140
+ - test/session_test/credentials_test.rb
141
+ - test/session_test/existence_test.rb
142
+ - test/session_test/http_auth_test.rb
143
+ - test/session_test/id_test.rb
144
+ - test/session_test/klass_test.rb
145
+ - test/session_test/magic_columns_test.rb
146
+ - test/session_test/magic_states_test.rb
147
+ - test/session_test/params_test.rb
148
+ - test/session_test/password_test.rb
149
+ - test/session_test/perishability_test.rb
150
+ - test/session_test/persistence_test.rb
151
+ - test/session_test/scopes_test.rb
152
+ - test/session_test/session_test.rb
153
+ - test/session_test/timeout_test.rb
154
+ - test/session_test/unauthorized_record_test.rb
155
+ - test/session_test/validation_test.rb
156
+ - test/test_helper.rb
157
+ has_rdoc: false
158
+ homepage: http://github.com/binarylogic/authlogic
159
+ licenses:
160
+ post_install_message:
161
+ rdoc_options:
162
+ - --charset=UTF-8
163
+ require_paths:
164
+ - lib
165
+ required_ruby_version: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - ">="
168
+ - !ruby/object:Gem::Version
169
+ version: "0"
170
+ version:
171
+ required_rubygems_version: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: "0"
176
+ version:
177
+ requirements: []
178
+
179
+ rubyforge_project: authlogic
180
+ rubygems_version: 1.3.5
181
+ signing_key:
182
+ specification_version: 3
183
+ summary: A clean, simple, and unobtrusive ruby authentication solution.
184
+ test_files:
185
+ - test/acts_as_authentic_test/base_test.rb
186
+ - test/acts_as_authentic_test/email_test.rb
187
+ - test/acts_as_authentic_test/logged_in_status_test.rb
188
+ - test/acts_as_authentic_test/login_test.rb
189
+ - test/acts_as_authentic_test/magic_columns_test.rb
190
+ - test/acts_as_authentic_test/password_test.rb
191
+ - test/acts_as_authentic_test/perishable_token_test.rb
192
+ - test/acts_as_authentic_test/persistence_token_test.rb
193
+ - test/acts_as_authentic_test/restful_authentication_test.rb
194
+ - test/acts_as_authentic_test/session_maintenance_test.rb
195
+ - test/acts_as_authentic_test/single_access_test.rb
196
+ - test/authenticates_many_test.rb
197
+ - test/crypto_provider_test/aes256_test.rb
198
+ - test/crypto_provider_test/bcrypt_test.rb
199
+ - test/crypto_provider_test/sha1_test.rb
200
+ - test/crypto_provider_test/sha512_test.rb
201
+ - test/i18n_test.rb
202
+ - test/libs/affiliate.rb
203
+ - test/libs/company.rb
204
+ - test/libs/employee.rb
205
+ - test/libs/employee_session.rb
206
+ - test/libs/ldaper.rb
207
+ - test/libs/ordered_hash.rb
208
+ - test/libs/project.rb
209
+ - test/libs/user.rb
210
+ - test/libs/user_session.rb
211
+ - test/random_test.rb
212
+ - test/session_test/activation_test.rb
213
+ - test/session_test/active_record_trickery_test.rb
214
+ - test/session_test/brute_force_protection_test.rb
215
+ - test/session_test/callbacks_test.rb
216
+ - test/session_test/cookies_test.rb
217
+ - test/session_test/credentials_test.rb
218
+ - test/session_test/existence_test.rb
219
+ - test/session_test/http_auth_test.rb
220
+ - test/session_test/id_test.rb
221
+ - test/session_test/klass_test.rb
222
+ - test/session_test/magic_columns_test.rb
223
+ - test/session_test/magic_states_test.rb
224
+ - test/session_test/params_test.rb
225
+ - test/session_test/password_test.rb
226
+ - test/session_test/perishability_test.rb
227
+ - test/session_test/persistence_test.rb
228
+ - test/session_test/scopes_test.rb
229
+ - test/session_test/session_test.rb
230
+ - test/session_test/timeout_test.rb
231
+ - test/session_test/unauthorized_record_test.rb
232
+ - test/session_test/validation_test.rb
233
+ - test/test_helper.rb