rails/actionpack/test/assertions/response_assertions_test.rb

64 lines
1.5 KiB
Ruby
Raw Normal View History

2012-01-06 19:20:26 +00:00
require 'abstract_unit'
require 'action_dispatch/testing/assertions/response'
module ActionDispatch
module Assertions
class ResponseAssertionsTest < ActiveSupport::TestCase
include ResponseAssertions
FakeResponse = Struct.new(:response_code) do
[:success, :missing, :redirect, :error].each do |sym|
define_method("#{sym}?") do
sym == response_code
end
end
end
def test_assert_response_predicate_methods
[:success, :missing, :redirect, :error].each do |sym|
@response = FakeResponse.new sym
assert_response sym
assert_raises(Minitest::Assertion) {
2012-01-06 19:20:26 +00:00
assert_response :unauthorized
}
end
end
def test_assert_response_fixnum
@response = FakeResponse.new 400
assert_response 400
assert_raises(Minitest::Assertion) {
2012-01-06 19:20:26 +00:00
assert_response :unauthorized
}
assert_raises(Minitest::Assertion) {
2012-01-06 19:20:26 +00:00
assert_response 500
}
end
def test_assert_response_sym_status
@response = FakeResponse.new 401
assert_response :unauthorized
assert_raises(Minitest::Assertion) {
2012-01-06 19:20:26 +00:00
assert_response :ok
}
assert_raises(Minitest::Assertion) {
2012-01-06 19:20:26 +00:00
assert_response :success
}
end
def test_assert_response_sym_typo
@response = FakeResponse.new 200
assert_raises(ArgumentError) {
assert_response :succezz
}
end
2012-01-06 19:20:26 +00:00
end
end
end