mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
a1ac18671a
This autocorrects the violations after adding a custom cop in 3305c78dcd.
22 lines
804 B
Ruby
22 lines
804 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "abstract_unit"
|
|
require "active_support/security_utils"
|
|
|
|
class SecurityUtilsTest < ActiveSupport::TestCase
|
|
def test_secure_compare_should_perform_string_comparison
|
|
assert ActiveSupport::SecurityUtils.secure_compare("a", "a")
|
|
assert_not ActiveSupport::SecurityUtils.secure_compare("a", "b")
|
|
end
|
|
|
|
def test_fixed_length_secure_compare_should_perform_string_comparison
|
|
assert ActiveSupport::SecurityUtils.fixed_length_secure_compare("a", "a")
|
|
assert_not ActiveSupport::SecurityUtils.fixed_length_secure_compare("a", "b")
|
|
end
|
|
|
|
def test_fixed_length_secure_compare_raise_on_length_mismatch
|
|
assert_raises(ArgumentError, "string length mismatch.") do
|
|
ActiveSupport::SecurityUtils.fixed_length_secure_compare("a", "ab")
|
|
end
|
|
end
|
|
end
|