Sha256: 02a2f182fd77416d6e920cde36fd8d69d7245c3b95e93b382fdce787614b88d4
Contents?: true
Size: 1.49 KB
Versions: 10
Compression:
Stored size: 1.49 KB
Contents
require 'test_helper.rb' # # TestClass for ApplicationRouter # # @author [benny] # class ApplicationRouterTest < MiniTest::Unit::TestCase def setup # fake document documents = [{ html: '<!DOCTYPE html><body><h2>This is the Index Page</h2></body></html>', path: '/' }] env_fail = { 'PATH_INFO' => '/fail' } request_fail = Rack::Request.new(env_fail) env_success = { 'PATH_INFO' => '/' } request_success = Rack::Request.new(env_success) @route_success = Rack::Blogengine::ApplicationRouter.map_route(request_success, documents) @route_fail = Rack::Blogengine::ApplicationRouter.map_route(request_fail, documents) end def test_map_route_general assert_instance_of(Hash, @route_success, 'Route should be a hash') # Check Hash keys assert(@route_success.key?('path'), 'Route should contain a path') assert(@route_success.key?('response'), 'Route should contain a response') # Check path assert_instance_of(String, @route_success['path'], 'Path should be a string') # Check response assert_instance_of(Rack::Response, @route_success['response'], 'Response should be an Array') assert_instance_of(Fixnum, @route_success['response'].status, 'Status should be a Fixnum') end def test_map_route_on_success assert_equal(200, @route_success['response'].status, 'Status should be 200') end def test_map_route_on_fail assert_equal(404, @route_fail['response'].status, 'Status should be 404') end def teardown end end
Version data entries
10 entries across 10 versions & 1 rubygems