mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
43 lines
1 KiB
Ruby
43 lines
1 KiB
Ruby
require 'abstract_unit'
|
|
|
|
module TestUrlGeneration
|
|
class WithMountPoint < ActionDispatch::IntegrationTest
|
|
Router = ActionDispatch::Routing::RouteSet.new
|
|
Router.draw { match "/foo", :to => "my_route_generating#index", :as => :foo }
|
|
|
|
class ::MyRouteGeneratingController < ActionController::Base
|
|
include Router.url_helpers
|
|
def index
|
|
render :text => foo_path
|
|
end
|
|
end
|
|
|
|
include Router.url_helpers
|
|
|
|
def _router
|
|
Router
|
|
end
|
|
|
|
def app
|
|
Router
|
|
end
|
|
|
|
test "generating URLS normally" do
|
|
assert_equal "/foo", foo_path
|
|
end
|
|
|
|
test "accepting a :script_name option" do
|
|
assert_equal "/bar/foo", foo_path(:script_name => "/bar")
|
|
end
|
|
|
|
test "the request's SCRIPT_NAME takes precedence over the router's" do
|
|
get "/foo", {}, 'SCRIPT_NAME' => "/new"
|
|
assert_equal "/new/foo", response.body
|
|
end
|
|
|
|
test "handling http protocol with https set" do
|
|
https!
|
|
assert_equal "http://www.example.com/foo", foo_url(:protocol => "http")
|
|
end
|
|
end
|
|
end
|