1

我正在使用rack-rewrite来重定向旧版 URL。重定向到新内部路径的旧路径,我可以很好地测试,如下所示:

require 'test_helper'

class MiscellaneousTest < ActionDispatch::IntegrationTest

    test 'redirect about.php' do
        get_via_redirect '/about.php?country=US'
        assert_equal '/us/about', path

        get_via_redirect '/about.php?country=CA'
        assert_equal '/ca/about', path

        # default
        get_via_redirect '/about.php'
        assert_equal '/ca/about', path
    end
end

但我想知道的是:如何测试旧路径现在映射到外部 URL 的案例?

例如,如果检测到以下旧路由:/blog/12345/something-cool-to-say它现在将映射到以下外部 URL:http://blog.far.far.away.com/12345/something-cool-to-say通过:

$BLOG_URL = 'http://blog.far.far.away-example.com'
r301 %r{^/blog/([0-9]{5})/(.*)\.php}, "#{BLOG_URL}/$1/$2" # token, slug
4

1 回答 1

1

尝试这个:

assert_redirected_to 'http://some.host/with/a/path'
于 2012-12-14T21:54:17.123 回答