1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Allow regular expressions to avoid string conversion for parameter

filtering.
This commit is contained in:
T1D 2011-12-14 10:41:24 -06:00
parent 5a245b3d55
commit c9becd3ea1
2 changed files with 7 additions and 1 deletions

View file

@ -35,7 +35,7 @@ module Devise
# Determine which values should be transformed to string or passed as-is to the query builder underneath
def param_requires_string_conversion?(value)
true unless value.is_a?(TrueClass) || value.is_a?(FalseClass) || value.is_a?(Fixnum)
[Fixnum, TrueClass, FalseClass, Regexp].none? {|clz| value.is_a? clz }
end
end
end

View file

@ -28,6 +28,12 @@ class DatabaseAuthenticatableTest < ActiveSupport::TestCase
assert_equal( { 'login' => 'foo@bar.com', "bool1" => true, "bool2" => false, "fixnum" => 123, "will_be_converted" => "1..10" }, conditions)
end
test "param filter should not convert regular expressions to strings" do
conditions = { "regexp" => /expression/ }
conditions = Devise::ParamFilter.new([], []).filter(conditions)
assert_equal( { "regexp" => /expression/ }, conditions)
end
test 'should respond to password and password confirmation' do
user = new_user
assert user.respond_to?(:password)