e3832c6f79
Upgrade to Rails 2.3.5. Also work around this bug: https://rails.lighthouseapp.com/projects/8994/tickets/3524 created by the aforementioned Rails release.
32 lines
835 B
Ruby
32 lines
835 B
Ruby
require 'abstract_unit'
|
|
|
|
class MessageVerifierTest < Test::Unit::TestCase
|
|
def setup
|
|
@verifier = ActiveSupport::MessageVerifier.new("Hey, I'm a secret!")
|
|
@data = {:some=>"data", :now=>Time.now}
|
|
end
|
|
|
|
def test_simple_round_tripping
|
|
message = @verifier.generate(@data)
|
|
assert_equal @data, @verifier.verify(message)
|
|
end
|
|
|
|
def test_missing_signature_raises
|
|
assert_not_verified(nil)
|
|
assert_not_verified("")
|
|
end
|
|
|
|
def test_tampered_data_raises
|
|
data, hash = @verifier.generate(@data).split("--")
|
|
assert_not_verified("#{data.reverse}--#{hash}")
|
|
assert_not_verified("#{data}--#{hash.reverse}")
|
|
assert_not_verified("purejunk")
|
|
end
|
|
|
|
def assert_not_verified(message)
|
|
assert_raise(ActiveSupport::MessageVerifier::InvalidSignature) do
|
|
@verifier.verify(message)
|
|
end
|
|
end
|
|
end
|