Sha256: 5449ed1ea2800ca10bd9707c1120b9ba65bc8dcca7547c397b91d6903b4fd239

Contents?: true

Size: 1 KB

Versions: 4

Compression:

Stored size: 1 KB

Contents

# Copyright (c) 2005 Zed A. Shaw 
# You can redistribute it and/or modify it under the same terms as Ruby.
#
# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html 
# for more information.

require 'test/testhelp'

class RedirectHandlerTest < Test::Unit::TestCase

  def setup
    @server = Mongrel::HttpServer.new('127.0.0.1', 9998)
    @server.run
    @client = Net::HTTP.new('127.0.0.1', 9998)
  end

  def teardown
    @server.stop(true)
  end

  def test_simple_redirect
    tester = Mongrel::RedirectHandler.new('/yo')
    @server.register("/test", tester)

    sleep(1)
    res = @client.request_get('/test')
    assert res != nil, "Didn't get a response"
    assert_equal ['/yo'], res.get_fields('Location')
  end

  def test_rewrite
    tester = Mongrel::RedirectHandler.new(/(\w+)/, '+\1+')
    @server.register("/test", tester)

    sleep(1)
    res = @client.request_get('/test/something')
    assert_equal ['/+test+/+something+'], res.get_fields('Location')
  end

end


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mongrel-1.0.3 test/test_redirect_handler.rb
mongrel-1.0.2 test/test_redirect_handler.rb
mongrel-1.0.4 test/test_redirect_handler.rb
mongrel-1.0.5 test/test_redirect_handler.rb