routing_test.rb 70.3 KB
Newer Older
1
# encoding: utf-8
2 3
require 'abstract_unit'
require 'controller/fake_controllers'
4
require 'active_support/core_ext/object/with_options'
5

J
Jeremy Kemper 已提交
6 7 8 9 10
class MilestonesController < ActionController::Base
  def index() head :ok end
  alias_method :show, :index
end

11
ROUTING = ActionDispatch::Routing
12

13
# See RFC 3986, section 3.3 for allowed path characters.
14
class UriReservedCharactersRoutingTest < ActiveSupport::TestCase
15 16
  include RoutingTestHelpers

17
  def setup
18
    @set = ActionDispatch::Routing::RouteSet.new
19
    @set.draw do
20
      get ':controller/:action/:variable/*additional'
21
    end
22

23
    safe, unsafe = %w(: @ & = + $ , ;), %w(^ ? # [ ])
24 25
    hex = unsafe.map { |char| '%' + char.unpack('H2').first.upcase }

26 27
    @segment = "#{safe.join}#{unsafe.join}".freeze
    @escaped = "#{safe.join}#{hex.join}".freeze
28
  end
29 30

  def test_route_generation_escapes_unsafe_path_characters
31
    assert_equal "/content/act#{@escaped}ion/var#{@escaped}iable/add#{@escaped}itional-1/add#{@escaped}itional-2",
32 33 34 35 36 37
      url_for(@set, {
        :controller => "content",
        :action => "act#{@segment}ion",
        :variable => "var#{@segment}iable",
        :additional => ["add#{@segment}itional-1", "add#{@segment}itional-2"]
      })
38
  end
39 40

  def test_route_recognition_unescapes_path_components
41
    options = { :controller => "content",
42
                :action => "act#{@segment}ion",
43
                :variable => "var#{@segment}iable",
44
                :additional => "add#{@segment}itional-1/add#{@segment}itional-2" }
45
    assert_equal options, @set.recognize_path("/content/act#{@escaped}ion/var#{@escaped}iable/add#{@escaped}itional-1/add#{@escaped}itional-2")
46
  end
47 48

  def test_route_generation_allows_passing_non_string_values_to_generated_helper
49 50 51 52 53 54 55
    assert_equal "/content/action/variable/1/2",
      url_for(@set, {
        :controller => "content",
        :action => "action",
        :variable => "variable",
        :additional => [1, 2]
      })
56
  end
57 58
end

59
class MockController
60 61
  def self.build(helpers)
    Class.new do
62 63
      def url_options
        options = super
64 65
        options[:protocol] ||= "http"
        options[:host] ||= "test.host"
66
        options
67 68 69 70
      end

      include helpers
    end
71
  end
72
end
73

74
class LegacyRouteSetTests < ActiveSupport::TestCase
75
  include RoutingTestHelpers
76
  include ActionDispatch::RoutingVerbs
77

78
  attr_reader :rs
79
  alias :routes :rs
80

81
  def setup
A
Aaron Patterson 已提交
82 83 84 85
    @rs       = ::ActionDispatch::Routing::RouteSet.new
    @response = nil
  end

86 87
  def test_symbols_with_dashes
    rs.draw do
88
      get '/:artist/:song-omg', :to => lambda { |env|
89 90 91 92 93 94 95 96 97 98 99
        resp = JSON.dump env[ActionDispatch::Routing::RouteSet::PARAMETERS_KEY]
        [200, {}, [resp]]
      }
    end

    hash = JSON.load get(URI('http://example.org/journey/faithfully-omg'))
    assert_equal({"artist"=>"journey", "song"=>"faithfully"}, hash)
  end

  def test_id_with_dash
    rs.draw do
100
      get '/journey/:id', :to => lambda { |env|
101 102 103 104 105 106 107 108 109 110 111
        resp = JSON.dump env[ActionDispatch::Routing::RouteSet::PARAMETERS_KEY]
        [200, {}, [resp]]
      }
    end

    hash = JSON.load get(URI('http://example.org/journey/faithfully-omg'))
    assert_equal({"id"=>"faithfully-omg"}, hash)
  end

  def test_dash_with_custom_regexp
    rs.draw do
112
      get '/:artist/:song-omg', :constraints => { :song => /\d+/ }, :to => lambda { |env|
113 114 115 116 117 118 119 120 121 122 123 124
        resp = JSON.dump env[ActionDispatch::Routing::RouteSet::PARAMETERS_KEY]
        [200, {}, [resp]]
      }
    end

    hash = JSON.load get(URI('http://example.org/journey/123-omg'))
    assert_equal({"artist"=>"journey", "song"=>"123"}, hash)
    assert_equal 'Not Found', get(URI('http://example.org/journey/faithfully-omg'))
  end

  def test_pre_dash
    rs.draw do
125
      get '/:artist/omg-:song', :to => lambda { |env|
126 127 128 129 130 131 132 133 134 135 136
        resp = JSON.dump env[ActionDispatch::Routing::RouteSet::PARAMETERS_KEY]
        [200, {}, [resp]]
      }
    end

    hash = JSON.load get(URI('http://example.org/journey/omg-faithfully'))
    assert_equal({"artist"=>"journey", "song"=>"faithfully"}, hash)
  end

  def test_pre_dash_with_custom_regexp
    rs.draw do
137
      get '/:artist/omg-:song', :constraints => { :song => /\d+/ }, :to => lambda { |env|
138 139 140 141 142 143 144 145 146 147
        resp = JSON.dump env[ActionDispatch::Routing::RouteSet::PARAMETERS_KEY]
        [200, {}, [resp]]
      }
    end

    hash = JSON.load get(URI('http://example.org/journey/omg-123'))
    assert_equal({"artist"=>"journey", "song"=>"123"}, hash)
    assert_equal 'Not Found', get(URI('http://example.org/journey/omg-faithfully'))
  end

148
  def test_star_paths_are_greedy
149
    rs.draw do
150
      get "/*path", :to => lambda { |env|
151 152 153 154 155 156 157 158 159 160 161
        x = env["action_dispatch.request.path_parameters"][:path]
        [200, {}, [x]]
      }, :format => false
    end

    u = URI('http://example.org/foo/bar.html')
    assert_equal u.path.sub(/^\//, ''), get(u)
  end

  def test_star_paths_are_greedy_but_not_too_much
    rs.draw do
162
      get "/*path", :to => lambda { |env|
163 164 165 166 167 168 169 170 171 172 173
        x = JSON.dump env["action_dispatch.request.path_parameters"]
        [200, {}, [x]]
      }
    end

    expected = { "path" => "foo/bar", "format" => "html" }
    u = URI('http://example.org/foo/bar.html')
    assert_equal expected, JSON.parse(get(u))
  end

  def test_optional_star_paths_are_greedy
174
    rs.draw do
175
      get "/(*filters)", :to => lambda { |env|
176 177 178 179 180 181 182 183 184
        x = env["action_dispatch.request.path_parameters"][:filters]
        [200, {}, [x]]
      }, :format => false
    end

    u = URI('http://example.org/ne_27.065938,-80.6092/sw_25.489856,-82.542794')
    assert_equal u.path.sub(/^\//, ''), get(u)
  end

185
  def test_optional_star_paths_are_greedy_but_not_too_much
186
    rs.draw do
187
      get "/(*filters)", :to => lambda { |env|
188 189 190 191 192 193 194 195 196 197 198
        x = JSON.dump env["action_dispatch.request.path_parameters"]
        [200, {}, [x]]
      }
    end

    expected = { "filters" => "ne_27.065938,-80.6092/sw_25.489856,-82",
                 "format"  => "542794" }
    u = URI('http://example.org/ne_27.065938,-80.6092/sw_25.489856,-82.542794')
    assert_equal expected, JSON.parse(get(u))
  end

199 200
  def test_regexp_precidence
    @rs.draw do
201
      get '/whois/:domain', :constraints => {
202
        :domain => /\w+\.[\w\.]+/ },
A
Aaron Patterson 已提交
203
        :to     => lambda { |env| [200, {}, %w{regexp}] }
204

205
      get '/whois/:id', :to => lambda { |env| [200, {}, %w{id}] }
206 207
    end

A
Aaron Patterson 已提交
208 209
    assert_equal 'regexp', get(URI('http://example.org/whois/example.org'))
    assert_equal 'id', get(URI('http://example.org/whois/123'))
210 211
  end

A
Aaron Patterson 已提交
212 213 214 215 216 217 218 219
  def test_class_and_lambda_constraints
    subdomain = Class.new {
      def matches? request
        request.subdomain.present? and request.subdomain != 'clients'
      end
    }

    @rs.draw do
220
      get '/', :constraints => subdomain.new,
A
Aaron Patterson 已提交
221
                 :to          => lambda { |env| [200, {}, %w{default}] }
222
      get '/', :constraints => { :subdomain => 'clients' },
A
Aaron Patterson 已提交
223
                 :to          => lambda { |env| [200, {}, %w{clients}] }
A
Aaron Patterson 已提交
224 225
    end

A
Aaron Patterson 已提交
226 227
    assert_equal 'default', get(URI('http://www.example.org/'))
    assert_equal 'clients', get(URI('http://clients.example.org/'))
A
Aaron Patterson 已提交
228 229 230 231
  end

  def test_lambda_constraints
    @rs.draw do
232
      get '/', :constraints => lambda { |req|
A
Aaron Patterson 已提交
233
        req.subdomain.present? and req.subdomain != "clients" },
A
Aaron Patterson 已提交
234
                 :to          => lambda { |env| [200, {}, %w{default}] }
A
Aaron Patterson 已提交
235

236
      get '/', :constraints => lambda { |req|
A
Aaron Patterson 已提交
237
        req.subdomain.present? && req.subdomain == "clients" },
A
Aaron Patterson 已提交
238
                 :to          => lambda { |env| [200, {}, %w{clients}] }
A
Aaron Patterson 已提交
239 240
    end

A
Aaron Patterson 已提交
241 242
    assert_equal 'default', get(URI('http://www.example.org/'))
    assert_equal 'clients', get(URI('http://clients.example.org/'))
A
Aaron Patterson 已提交
243 244
  end

245 246 247 248 249 250 251 252 253
  def test_empty_string_match
    rs.draw do
      get '/:username', :constraints => { :username => /[^\/]+/ },
                       :to => lambda { |e| [200, {}, ['foo']] }
    end
    assert_equal 'Not Found', get(URI('http://example.org/'))
    assert_equal 'foo', get(URI('http://example.org/hello'))
  end

254 255 256 257 258 259 260 261 262 263 264 265 266
  def test_non_greedy_glob_regexp
    params = nil
    rs.draw do
      get '/posts/:id(/*filters)', :constraints => { :filters => /.+?/ },
        :to => lambda { |e|
        params = e["action_dispatch.request.path_parameters"]
        [200, {}, ['foo']]
      }
    end
    assert_equal 'foo', get(URI('http://example.org/posts/1/foo.js'))
    assert_equal({:id=>"1", :filters=>"foo", :format=>"js"}, params)
  end

267 268 269 270 271 272
  def test_draw_with_block_arity_one_raises
    assert_raise(RuntimeError) do
      @rs.draw { |map| map.match '/:controller(/:action(/:id))' }
    end
  end

273
  def test_default_setup
274
    @rs.draw { get '/:controller(/:action(/:id))' }
275
    assert_equal({:controller => "content", :action => 'index'}, rs.recognize_path("/content"))
276
    assert_equal({:controller => "content", :action => 'list'},  rs.recognize_path("/content/list"))
277 278 279 280
    assert_equal({:controller => "content", :action => 'show', :id => '10'}, rs.recognize_path("/content/show/10"))

    assert_equal({:controller => "admin/user", :action => 'show', :id => '10'}, rs.recognize_path("/admin/user/show/10"))

281
    assert_equal '/admin/user/show/10', url_for(rs, { :controller => 'admin/user', :action => 'show', :id => 10 })
282

283 284
    assert_equal '/admin/user/show',    url_for(rs, { :action => 'show' }, { :controller => 'admin/user', :action => 'list', :id => '10' })
    assert_equal '/admin/user/list/10', url_for(rs, {}, { :controller => 'admin/user', :action => 'list', :id => '10' })
285

286 287
    assert_equal '/admin/stuff', url_for(rs, { :controller => 'stuff' }, { :controller => 'admin/user', :action => 'list', :id => '10' })
    assert_equal '/stuff',       url_for(rs, { :controller => '/stuff' }, { :controller => 'admin/user', :action => 'list', :id => '10' })
288 289 290 291
  end

  def test_ignores_leading_slash
    @rs.clear!
292
    @rs.draw { get '/:controller(/:action(/:id))'}
293 294 295 296
    test_default_setup
  end

  def test_route_with_colon_first
297
    rs.draw do
298 299
      get '/:controller/:action/:id', :action => 'index', :id => nil
      get ':url', :controller => 'tiny_url', :action => 'translate'
300
    end
301 302 303
  end

  def test_route_with_regexp_for_controller
304
    rs.draw do
305 306
      get ':controller/:admintoken(/:action(/:id))', :controller => /admin\/.+/
      get '/:controller(/:action(/:id))'
307
    end
308

309 310
    assert_equal({:controller => "admin/user", :admintoken => "foo", :action => "index"},
        rs.recognize_path("/admin/user/foo"))
311 312 313 314 315
    assert_equal({:controller => "content", :action => "foo"},
        rs.recognize_path("/content/foo"))

    assert_equal '/admin/user/foo', url_for(rs, { :controller => "admin/user", :admintoken => "foo", :action => "index" })
    assert_equal '/content/foo',    url_for(rs, { :controller => "content", :action => "foo" })
316
  end
317

318
  def test_route_with_regexp_and_captures_for_controller
319
    rs.draw do
320
      get '/:controller(/:action(/:id))', :controller => /admin\/(accounts|users)/
321 322 323
    end
    assert_equal({:controller => "admin/accounts", :action => "index"}, rs.recognize_path("/admin/accounts"))
    assert_equal({:controller => "admin/users", :action => "index"}, rs.recognize_path("/admin/users"))
324
    assert_raise(ActionController::RoutingError) { rs.recognize_path("/admin/products") }
325 326
  end

327
  def test_route_with_regexp_and_dot
328
    rs.draw do
329
      get ':controller/:action/:file',
330 331 332 333
                :controller => /admin|user/,
                :action => /upload|download/,
                :defaults => {:file => nil},
                :constraints => {:file => %r{[^/]+(\.[^/]+)?}}
334 335 336
    end
    # Without a file extension
    assert_equal '/user/download/file',
337 338 339
      url_for(rs, { :controller => "user", :action => "download", :file => "file" })

    assert_equal({:controller => "user", :action => "download", :file => "file"},
340
      rs.recognize_path("/user/download/file"))
341

342 343
    # Now, let's try a file with an extension, really a dot (.)
    assert_equal '/user/download/file.jpg',
344 345 346
      url_for(rs, { :controller => "user", :action => "download", :file => "file.jpg" })

    assert_equal({:controller => "user", :action => "download", :file => "file.jpg"},
347 348
      rs.recognize_path("/user/download/file.jpg"))
  end
349

350
  def test_basic_named_route
351
    rs.draw do
352
      root :to => 'content#list', :as => 'home'
353
    end
354
    assert_equal("http://test.host/", setup_for_named_route.send(:home_url))
355
  end
356

357
  def test_named_route_with_option
358
    rs.draw do
359
      get 'page/:title' => 'content#show_page', :as => 'page'
360
    end
361

362
    assert_equal("http://test.host/page/new%20stuff",
363
        setup_for_named_route.send(:page_url, :title => 'new stuff'))
364
  end
365

366
  def test_named_route_with_default
367
    rs.draw do
368
      get 'page/:title' => 'content#show_page', :title => 'AboutPage', :as => 'page'
369
    end
370

371 372
    assert_equal("http://test.host/page/AboutRails",
        setup_for_named_route.send(:page_url, :title => "AboutRails"))
373
  end
374

375
  def test_named_route_with_path_prefix
376
    rs.draw do
377
      scope "my" do
378
        get 'page' => 'content#show_page', :as => 'page'
379
      end
380
    end
381

382
    assert_equal("http://test.host/my/page",
383
        setup_for_named_route.send(:page_url))
384
  end
385

386
  def test_named_route_with_blank_path_prefix
387
    rs.draw do
388
      scope "" do
389
        get 'page' => 'content#show_page', :as => 'page'
390
      end
391
    end
392

393
    assert_equal("http://test.host/page",
394
        setup_for_named_route.send(:page_url))
395 396
  end

397
  def test_named_route_with_nested_controller
398
    rs.draw do
399
      get 'admin/user' => 'admin/user#index', :as => "users"
400
    end
401

402
    assert_equal("http://test.host/admin/user",
403
        setup_for_named_route.send(:users_url))
404
  end
405

406
  def test_optimised_named_route_with_host
407
    rs.draw do
408
      get 'page' => 'content#show_page', :as => 'pages', :host => 'foo.com'
409
    end
410 411 412 413 414 415 416 417 418
    routes = setup_for_named_route
    routes.expects(:url_for).with({
      :host => 'foo.com',
      :only_path => false,
      :controller => 'content',
      :action => 'show_page',
      :use_route => 'pages'
    }).once
    routes.send(:pages_url)
419
  end
420

421
  def setup_for_named_route
422
    MockController.build(rs.url_helpers).new
423
  end
424

425
  def test_named_route_without_hash
426
    rs.draw do
427
      get ':controller/:action/:id', :as => 'normal'
428
    end
429
  end
430

431
  def test_named_route_root
432 433
    rs.draw do
      root :to => "hello#index"
434
    end
435 436 437
    routes = setup_for_named_route
    assert_equal("http://test.host/", routes.send(:root_url))
    assert_equal("/", routes.send(:root_path))
438
  end
439

B
Brian Cardarella 已提交
440 441 442 443 444 445 446 447 448
  def test_named_route_root_without_hash
    rs.draw do
      root "hello#index"
    end
    routes = setup_for_named_route
    assert_equal("http://test.host/", routes.send(:root_url))
    assert_equal("/", routes.send(:root_path))
  end

449
  def test_named_route_with_regexps
450
    rs.draw do
451
      get 'page/:year/:month/:day/:title' => 'page#show', :as => 'article',
452
        :year => /\d+/, :month => /\d+/, :day => /\d+/
453
      get ':controller/:action/:id'
454
    end
455 456 457 458 459

    routes = setup_for_named_route

    assert_equal "http://test.host/page/2005/6/10/hi",
      routes.send(:article_url, :title => 'hi', :day => 10, :year => 2005, :month => 6)
460
  end
461

462
  def test_changing_controller
463
    @rs.draw { get ':controller/:action/:id' }
464

465 466 467
    assert_equal '/admin/stuff/show/10',
        url_for(rs, {:controller => 'stuff', :action => 'show', :id => 10},
                    {:controller => 'admin/user', :action => 'index'})
468
  end
469

470
  def test_paths_escaped
471
    rs.draw do
472 473
      get 'file/*path' => 'content#show_file', :as => 'path'
      get ':controller/:action/:id'
474
    end
475

476 477 478
    # No + to space in URI escaping, only for query params.
    results = rs.recognize_path "/file/hello+world/how+are+you%3F"
    assert results, "Recognition should have succeeded"
479
    assert_equal 'hello+world/how+are+you?', results[:path]
480

481 482 483
    # Use %20 for space instead.
    results = rs.recognize_path "/file/hello%20world/how%20are%20you%3F"
    assert results, "Recognition should have succeeded"
484
    assert_equal 'hello world/how are you?', results[:path]
485
  end
486

487
  def test_paths_slashes_unescaped_with_ordered_parameters
488
    rs.draw do
489
      get '/file/*path' => 'content#index', :as => 'path'
490
    end
491

492
    # No / to %2F in URI, only for query params.
493
    assert_equal("/file/hello/world", setup_for_named_route.send(:path_path, ['hello', 'world']))
494
  end
495

496
  def test_non_controllers_cannot_be_matched
497
    rs.draw do
498
      get ':controller/:action/:id'
499
    end
500
    assert_raise(ActionController::RoutingError) { rs.recognize_path("/not_a/show/10") }
501
  end
502

503 504
  def test_should_list_options_diff_when_routing_constraints_dont_match
    rs.draw do
505
      get 'post/:id' => 'post#show', :constraints => { :id => /\d+/ }, :as => 'post'
506
    end
507 508 509
    assert_raise(ActionController::RoutingError) do
      url_for(rs, { :controller => 'post', :action => 'show', :bad_param => "foo", :use_route => "post" })
    end
510 511 512
  end

  def test_dynamic_path_allowed
513
    rs.draw do
514
      get '*path' => 'content#show_file'
515
    end
516

517 518
    assert_equal '/pages/boo',
        url_for(rs, { :controller => 'content', :action => 'show_file', :path => %w(pages boo) })
519
  end
520

521
  def test_dynamic_recall_paths_allowed
522
    rs.draw do
523
      get '*path' => 'content#show_file'
524 525
    end

526 527
    assert_equal '/pages/boo',
        url_for(rs, {}, { :controller => 'content', :action => 'show_file', :path => %w(pages boo) })
528
  end
529

530
  def test_backwards
531
    rs.draw do
532 533
      get 'page/:id(/:action)' => 'pages#show'
      get ':controller(/:action(/:id))'
534 535
    end

536 537 538
    assert_equal '/page/20',   url_for(rs, { :id => 20 }, { :controller => 'pages', :action => 'show' })
    assert_equal '/page/20',   url_for(rs, { :controller => 'pages', :id => 20, :action => 'show' })
    assert_equal '/pages/boo', url_for(rs, { :controller => 'pages', :action => 'boo' })
539 540 541
  end

  def test_route_with_fixnum_default
542
    rs.draw do
543 544
      get 'page(/:id)' => 'content#show_page', :id => 1
      get ':controller/:action/:id'
545 546
    end

547 548 549 550
    assert_equal '/page',    url_for(rs, { :controller => 'content', :action => 'show_page' })
    assert_equal '/page',    url_for(rs, { :controller => 'content', :action => 'show_page', :id => 1 })
    assert_equal '/page',    url_for(rs, { :controller => 'content', :action => 'show_page', :id => '1' })
    assert_equal '/page/10', url_for(rs, { :controller => 'content', :action => 'show_page', :id => 10 })
551

552
    assert_equal({:controller => "content", :action => 'show_page', :id => 1 }, rs.recognize_path("/page"))
553 554 555 556 557 558
    assert_equal({:controller => "content", :action => 'show_page', :id => '1'}, rs.recognize_path("/page/1"))
    assert_equal({:controller => "content", :action => 'show_page', :id => '10'}, rs.recognize_path("/page/10"))
  end

  # For newer revision
  def test_route_with_text_default
559
    rs.draw do
560 561
      get 'page/:id' => 'content#show_page', :id => 1
      get ':controller/:action/:id'
562 563
    end

564 565
    assert_equal '/page/foo', url_for(rs, { :controller => 'content', :action => 'show_page', :id => 'foo' })
    assert_equal({ :controller => "content", :action => 'show_page', :id => 'foo' }, rs.recognize_path("/page/foo"))
566

R
R.T. Lechow 已提交
567
    token = "\321\202\320\265\320\272\321\201\321\202" # 'text' in Russian
568
    token.force_encoding(Encoding::BINARY)
569
    escaped_token = CGI::escape(token)
570

571 572
    assert_equal '/page/' + escaped_token, url_for(rs, { :controller => 'content', :action => 'show_page', :id => token })
    assert_equal({ :controller => "content", :action => 'show_page', :id => token }, rs.recognize_path("/page/#{escaped_token}"))
573
  end
574

575
  def test_action_expiry
576
    @rs.draw { get ':controller(/:action(/:id))' }
577
    assert_equal '/content', url_for(rs, { :controller => 'content' }, { :controller => 'content', :action => 'show' })
578
  end
579

580
  def test_requirement_should_prevent_optional_id
581
    rs.draw do
582
      get 'post/:id' => 'post#show', :constraints => {:id => /\d+/}, :as => 'post'
583 584
    end

585
    assert_equal '/post/10', url_for(rs, { :controller => 'post', :action => 'show', :id => 10 })
586

587
    assert_raise ActionController::RoutingError do
588
      url_for(rs, { :controller => 'post', :action => 'show' })
589
    end
590
  end
591

592
  def test_both_requirement_and_optional
593
    rs.draw do
594
      get('test(/:year)' => 'post#show', :as => 'blog',
595
        :defaults => { :year => nil },
596
        :constraints => { :year => /\d{4}/ }
597
      )
598
      get ':controller/:action/:id'
599
    end
600

601 602
    assert_equal '/test', url_for(rs, { :controller => 'post', :action => 'show' })
    assert_equal '/test', url_for(rs, { :controller => 'post', :action => 'show', :year => nil })
603

604
    assert_equal("http://test.host/test", setup_for_named_route.send(:blog_url))
605
  end
606

607
  def test_set_to_nil_forgets
608
    rs.draw do
609 610
      get 'pages(/:year(/:month(/:day)))' => 'content#list_pages', :month => nil, :day => nil
      get ':controller/:action/:id'
611 612
    end

613
    assert_equal '/pages/2005',
614
      url_for(rs, { :controller => 'content', :action => 'list_pages', :year => 2005 })
615
    assert_equal '/pages/2005/6',
616
      url_for(rs, { :controller => 'content', :action => 'list_pages', :year => 2005, :month => 6 })
617
    assert_equal '/pages/2005/6/12',
618
      url_for(rs, { :controller => 'content', :action => 'list_pages', :year => 2005, :month => 6, :day => 12 })
619

620
    assert_equal '/pages/2005/6/4',
621
      url_for(rs, { :day => 4 },   { :controller => 'content', :action => 'list_pages', :year => '2005', :month => '6', :day => '12' })
622

623
    assert_equal '/pages/2005/6',
624
      url_for(rs, { :day => nil }, { :controller => 'content', :action => 'list_pages', :year => '2005', :month => '6', :day => '12' })
625

626
    assert_equal '/pages/2005',
627
      url_for(rs, { :day => nil, :month => nil }, { :controller => 'content', :action => 'list_pages', :year => '2005', :month => '6', :day => '12' })
628
  end
629

630
  def test_root_url_generation_with_controller_and_action
631
    rs.draw do
632
      root :to => "content#index"
633 634
    end

635 636
    assert_equal '/', url_for(rs, { :controller => 'content', :action => 'index' })
    assert_equal '/', url_for(rs, { :controller => 'content' })
637
  end
638

639
  def test_named_root_url_generation_with_controller_and_action
640
    rs.draw do
641
       root :to => "content#index", :as => 'home'
642 643
    end

644 645
    assert_equal '/', url_for(rs, { :controller => 'content', :action => 'index' })
    assert_equal '/', url_for(rs, { :controller => 'content' })
646

647
    assert_equal("http://test.host/", setup_for_named_route.send(:home_url))
648
  end
649

650
  def test_named_route_method
651
    rs.draw do
652 653
      get 'categories' => 'content#categories', :as => 'categories'
      get ':controller(/:action(/:id))'
654 655
    end

656 657
    assert_equal '/categories', url_for(rs, { :controller => 'content', :action => 'categories' })
    assert_equal '/content/hi', url_for(rs, { :controller => 'content', :action => 'hi' })
658 659 660 661 662 663
  end

  def test_named_routes_array
    test_named_route_method
    assert_equal [:categories], rs.named_routes.names
  end
664

665
  def test_nil_defaults
666
    rs.draw do
667
      get 'journal' => 'content#list_journal',
668
        :date => nil, :user_id => nil
669
      get ':controller/:action/:id'
670
    end
671

672 673 674 675 676 677
    assert_equal '/journal', url_for(rs, {
      :controller => 'content',
      :action => 'list_journal',
      :date => nil,
      :user_id => nil
    })
678
  end
679

680
  def setup_request_method_routes_for(method)
681
    rs.draw do
682 683 684
      match '/match' => 'books#get', :via => :get
      match '/match' => 'books#post', :via => :post
      match '/match' => 'books#put', :via => :put
685
      match '/match' => 'books#patch', :via => :patch
686
      match '/match' => 'books#delete', :via => :delete
687
    end
688
  end
689

690
  %w(GET PATCH POST PUT DELETE).each do |request_method|
691
    define_method("test_request_method_recognized_with_#{request_method}") do
692
      setup_request_method_routes_for(request_method)
J
Joshua Peek 已提交
693 694
      params = rs.recognize_path("/match", :method => request_method)
      assert_equal request_method.downcase, params[:action]
695 696
    end
  end
697

698
  def test_recognize_array_of_methods
699
    rs.draw do
700
      match '/match' => 'books#get_or_post', :via => [:get, :post]
701
      put '/match' => 'books#not_get_or_post'
702 703
    end

J
Joshua Peek 已提交
704 705
    params = rs.recognize_path("/match", :method => :post)
    assert_equal 'get_or_post', params[:action]
706

J
Joshua Peek 已提交
707 708
    params = rs.recognize_path("/match", :method => :put)
    assert_equal 'not_get_or_post', params[:action]
709
  end
710

711
  def test_subpath_recognized
712
    rs.draw do
713 714 715 716
      get '/books/:id/edit'    => 'subpath_books#edit'
      get '/items/:id/:action' => 'subpath_books'
      get '/posts/new/:action' => 'subpath_books'
      get '/posts/:id'         => 'subpath_books#show'
717 718
    end

719 720 721
    hash = rs.recognize_path "/books/17/edit"
    assert_not_nil hash
    assert_equal %w(subpath_books 17 edit), [hash[:controller], hash[:id], hash[:action]]
722

723 724 725 726 727 728 729 730 731 732 733 734
    hash = rs.recognize_path "/items/3/complete"
    assert_not_nil hash
    assert_equal %w(subpath_books 3 complete), [hash[:controller], hash[:id], hash[:action]]

    hash = rs.recognize_path "/posts/new/preview"
    assert_not_nil hash
    assert_equal %w(subpath_books preview), [hash[:controller], hash[:action]]

    hash = rs.recognize_path "/posts/7"
    assert_not_nil hash
    assert_equal %w(subpath_books show 7), [hash[:controller], hash[:action], hash[:id]]
  end
735

736
  def test_subpath_generated
737
    rs.draw do
738 739 740
      get '/books/:id/edit'    => 'subpath_books#edit'
      get '/items/:id/:action' => 'subpath_books'
      get '/posts/new/:action' => 'subpath_books'
741 742
    end

743 744 745
    assert_equal "/books/7/edit",      url_for(rs, { :controller => "subpath_books", :id => 7, :action => "edit" })
    assert_equal "/items/15/complete", url_for(rs, { :controller => "subpath_books", :id => 15, :action => "complete" })
    assert_equal "/posts/new/preview", url_for(rs, { :controller => "subpath_books", :action => "preview" })
746
  end
747

748 749
  def test_failed_constraints_raises_exception_with_violated_constraints
    rs.draw do
750
      get 'foos/:id' => 'foos#show', :as => 'foo_with_requirement', :constraints => { :id => /\d+/ }
751 752
    end

753
    assert_raise(ActionController::RoutingError) do
754
      setup_for_named_route.send(:foo_with_requirement_url, "I am Against the constraints")
755 756
    end
  end
757

758
  def test_routes_changed_correctly_after_clear
759
    rs = ::ActionDispatch::Routing::RouteSet.new
760
    rs.draw do
761 762 763 764 765
      get 'ca' => 'ca#aa'
      get 'cb' => 'cb#ab'
      get 'cc' => 'cc#ac'
      get ':controller/:action/:id'
      get ':controller/:action/:id.:format'
766 767
    end

768
    hash = rs.recognize_path "/cc"
769

770 771
    assert_not_nil hash
    assert_equal %w(cc ac), [hash[:controller], hash[:action]]
772

773
    rs.draw do
774 775 776 777
      get 'cb' => 'cb#ab'
      get 'cc' => 'cc#ac'
      get ':controller/:action/:id'
      get ':controller/:action/:id.:format'
778 779
    end

780
    hash = rs.recognize_path "/cc"
781

782 783 784 785
    assert_not_nil hash
    assert_equal %w(cc ac), [hash[:controller], hash[:action]]
  end
end
786

787
class RouteSetTest < ActiveSupport::TestCase
788 789
  include RoutingTestHelpers

790 791 792
  def set
    @set ||= ROUTING::RouteSet.new
  end
793

794 795 796
  def request
    @request ||= ActionController::TestRequest.new
  end
797

798 799
  def default_route_set
    @default_route_set ||= begin
J
Joshua Peek 已提交
800
      set = ROUTING::RouteSet.new
801
      set.draw do
802
        get '/:controller(/:action(/:id))'
803 804 805 806 807
      end
      set
    end
  end

808
  def test_generate_extras
809
    set.draw { get ':controller/(:action(/:id))' }
810 811
    path, extras = set.generate_extras(:controller => "foo", :action => "bar", :id => 15, :this => "hello", :that => "world")
    assert_equal "/foo/bar/15", path
812
    assert_equal %w(that this), extras.map { |e| e.to_s }.sort
813
  end
814

815
  def test_extra_keys
816
    set.draw { get ':controller/:action/:id' }
817
    extras = set.extra_keys(:controller => "foo", :action => "bar", :id => 15, :this => "hello", :that => "world")
818
    assert_equal %w(that this), extras.map { |e| e.to_s }.sort
819
  end
820

821
  def test_generate_extras_not_first
822
    set.draw do
823 824
      get ':controller/:action/:id.:format'
      get ':controller/:action/:id'
825
    end
826 827
    path, extras = set.generate_extras(:controller => "foo", :action => "bar", :id => 15, :this => "hello", :that => "world")
    assert_equal "/foo/bar/15", path
828
    assert_equal %w(that this), extras.map { |e| e.to_s }.sort
829
  end
830

831
  def test_generate_not_first
832
    set.draw do
833 834
      get ':controller/:action/:id.:format'
      get ':controller/:action/:id'
835
    end
836 837
    assert_equal "/foo/bar/15?this=hello",
        url_for(set, { :controller => "foo", :action => "bar", :id => 15, :this => "hello" })
838
  end
839

840
  def test_extra_keys_not_first
841
    set.draw do
842 843
      get ':controller/:action/:id.:format'
      get ':controller/:action/:id'
844
    end
845
    extras = set.extra_keys(:controller => "foo", :action => "bar", :id => 15, :this => "hello", :that => "world")
846
    assert_equal %w(that this), extras.map { |e| e.to_s }.sort
847
  end
848

849 850
  def test_draw
    assert_equal 0, set.routes.size
851
    set.draw do
852
      get '/hello/world' => 'a#b'
853
    end
854 855
    assert_equal 1, set.routes.size
  end
856

857 858
  def test_draw_symbol_controller_name
    assert_equal 0, set.routes.size
859
    set.draw do
860
      get '/users/index' => 'users#index'
861
    end
862
    set.recognize_path('/users/index', :method => :get)
863 864 865
    assert_equal 1, set.routes.size
  end

866 867
  def test_named_draw
    assert_equal 0, set.routes.size
868
    set.draw do
869
      get '/hello/world' => 'a#b', :as => 'hello'
870
    end
871 872 873
    assert_equal 1, set.routes.size
    assert_equal set.routes.first, set.named_routes[:hello]
  end
874

875
  def test_earlier_named_routes_take_precedence
876
    set.draw do
877 878
      get '/hello/world' => 'a#b', :as => 'hello'
      get '/hello'       => 'a#b', :as => 'hello'
879
    end
880
    assert_equal set.routes.first, set.named_routes[:hello]
881
  end
882

883
  def setup_named_route_test
884
    set.draw do
885 886 887 888
      get '/people(/:id)' => 'people#show', :as => 'show'
      get '/people' => 'people#index', :as => 'index'
      get '/people/go/:foo/:bar/joe(/:id)' => 'people#multi', :as => 'multi'
      get '/admin/users' => 'admin/users#index', :as => "users"
889 890
    end

891
    MockController.build(set.url_helpers).new
892
  end
893

894 895
  def test_named_route_url_method
    controller = setup_named_route_test
896

897 898
    assert_equal "http://test.host/people/5", controller.send(:show_url, :id => 5)
    assert_equal "/people/5", controller.send(:show_path, :id => 5)
899

900 901
    assert_equal "http://test.host/people", controller.send(:index_url)
    assert_equal "/people", controller.send(:index_path)
902

903 904 905
    assert_equal "http://test.host/admin/users", controller.send(:users_url)
    assert_equal '/admin/users', controller.send(:users_path)
  end
906

907 908
  def test_named_route_url_method_with_anchor
    controller = setup_named_route_test
909

910 911
    assert_equal "http://test.host/people/5#location", controller.send(:show_url, :id => 5, :anchor => 'location')
    assert_equal "/people/5#location", controller.send(:show_path, :id => 5, :anchor => 'location')
912

913 914
    assert_equal "http://test.host/people#location", controller.send(:index_url, :anchor => 'location')
    assert_equal "/people#location", controller.send(:index_path, :anchor => 'location')
915

916 917
    assert_equal "http://test.host/admin/users#location", controller.send(:users_url, :anchor => 'location')
    assert_equal '/admin/users#location', controller.send(:users_path, :anchor => 'location')
918

919 920
    assert_equal "http://test.host/people/go/7/hello/joe/5#location",
      controller.send(:multi_url, 7, "hello", 5, :anchor => 'location')
921

922 923
    assert_equal "http://test.host/people/go/7/hello/joe/5?baz=bar#location",
      controller.send(:multi_url, 7, "hello", 5, :baz => "bar", :anchor => 'location')
924

925 926 927
    assert_equal "http://test.host/people?baz=bar#location",
      controller.send(:index_url, :baz => "bar", :anchor => 'location')
  end
928

929 930 931 932
  def test_named_route_url_method_with_port
    controller = setup_named_route_test
    assert_equal "http://test.host:8080/people/5", controller.send(:show_url, 5, :port=>8080)
  end
933

934 935 936 937
  def test_named_route_url_method_with_host
    controller = setup_named_route_test
    assert_equal "http://some.example.com/people/5", controller.send(:show_url, 5, :host=>"some.example.com")
  end
938

939 940 941 942
  def test_named_route_url_method_with_protocol
    controller = setup_named_route_test
    assert_equal "https://test.host/people/5", controller.send(:show_url, 5, :protocol => "https")
  end
943

944 945 946 947 948
  def test_named_route_url_method_with_ordered_parameters
    controller = setup_named_route_test
    assert_equal "http://test.host/people/go/7/hello/joe/5",
      controller.send(:multi_url, 7, "hello", 5)
  end
949

950 951 952 953 954
  def test_named_route_url_method_with_ordered_parameters_and_hash
    controller = setup_named_route_test
    assert_equal "http://test.host/people/go/7/hello/joe/5?baz=bar",
      controller.send(:multi_url, 7, "hello", 5, :baz => "bar")
  end
955

956 957 958 959 960
  def test_named_route_url_method_with_ordered_parameters_and_empty_hash
    controller = setup_named_route_test
    assert_equal "http://test.host/people/go/7/hello/joe/5",
      controller.send(:multi_url, 7, "hello", 5, {})
  end
961

962 963 964 965 966
  def test_named_route_url_method_with_no_positional_arguments
    controller = setup_named_route_test
    assert_equal "http://test.host/people?baz=bar",
      controller.send(:index_url, :baz => "bar")
  end
967

968
  def test_draw_default_route
969
    set.draw do
970
      get '/:controller/:action/:id'
J
Joshua Peek 已提交
971
    end
972

J
Joshua Peek 已提交
973
    assert_equal 1, set.routes.size
974

975 976
    assert_equal '/users/show/10',  url_for(set, { :controller => 'users', :action => 'show', :id => 10 })
    assert_equal '/users/index/10', url_for(set, { :controller => 'users', :id => 10 })
977

J
Joshua Peek 已提交
978 979
    assert_equal({:controller => 'users', :action => 'index', :id => '10'}, set.recognize_path('/users/index/10'))
    assert_equal({:controller => 'users', :action => 'index', :id => '10'}, set.recognize_path('/users/index/10/'))
980
  end
981

982
  def test_route_with_parameter_shell
983
    set.draw do
984 985
      get 'page/:id' => 'pages#show', :id => /\d+/
      get '/:controller(/:action(/:id))'
J
Joshua Peek 已提交
986
    end
987

J
Joshua Peek 已提交
988 989 990
    assert_equal({:controller => 'pages', :action => 'index'}, set.recognize_path('/pages'))
    assert_equal({:controller => 'pages', :action => 'index'}, set.recognize_path('/pages/index'))
    assert_equal({:controller => 'pages', :action => 'list'}, set.recognize_path('/pages/list'))
991

J
Joshua Peek 已提交
992 993
    assert_equal({:controller => 'pages', :action => 'show', :id => '10'}, set.recognize_path('/pages/show/10'))
    assert_equal({:controller => 'pages', :action => 'show', :id => '10'}, set.recognize_path('/page/10'))
994
  end
995

996 997 998
  def test_route_constraints_on_request_object_with_anchors_are_valid
    assert_nothing_raised do
      set.draw do
999
        get 'page/:id' => 'pages#show', :constraints => { :host => /^foo$/ }
1000 1001 1002 1003
      end
    end
  end

1004
  def test_route_constraints_with_anchor_chars_are_invalid
1005
    assert_raise ArgumentError do
1006
      set.draw do
1007
        get 'page/:id' => 'pages#show', :id => /^\d+/
1008
      end
1009
    end
1010
    assert_raise ArgumentError do
1011
      set.draw do
1012
        get 'page/:id' => 'pages#show', :id => /\A\d+/
1013 1014
      end
    end
1015
    assert_raise ArgumentError do
1016
      set.draw do
1017
        get 'page/:id' => 'pages#show', :id => /\d+$/
1018 1019
      end
    end
1020
    assert_raise ArgumentError do
1021
      set.draw do
1022
        get 'page/:id' => 'pages#show', :id => /\d+\Z/
1023 1024
      end
    end
1025
    assert_raise ArgumentError do
1026
      set.draw do
1027
        get 'page/:id' => 'pages#show', :id => /\d+\z/
1028
      end
1029 1030
    end
  end
1031

1032
  def test_route_constraints_with_options_method_condition_is_valid
1033
    assert_nothing_raised do
1034
      set.draw do
1035
        match 'valid/route' => 'pages#show', :via => :options
1036 1037 1038 1039
      end
    end
  end

1040
  def test_recognize_with_encoded_id_and_regex
1041
    set.draw do
1042
      get 'page/:id' => 'pages#show', :id => /[a-zA-Z0-9\+]+/
1043
    end
1044

1045 1046 1047 1048
    assert_equal({:controller => 'pages', :action => 'show', :id => '10'}, set.recognize_path('/page/10'))
    assert_equal({:controller => 'pages', :action => 'show', :id => 'hello+world'}, set.recognize_path('/page/hello+world'))
  end

1049 1050 1051 1052 1053 1054
  def test_recognize_with_http_methods
    set.draw do
      get    "/people"     => "people#index", :as => "people"
      post   "/people"     => "people#create"
      get    "/people/:id" => "people#show",  :as => "person"
      put    "/people/:id" => "people#update"
1055
      patch  "/people/:id" => "people#update"
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
      delete "/people/:id" => "people#destroy"
    end

    params = set.recognize_path("/people", :method => :get)
    assert_equal("index", params[:action])

    params = set.recognize_path("/people", :method => :post)
    assert_equal("create", params[:action])

    params = set.recognize_path("/people/5", :method => :put)
    assert_equal("update", params[:action])

1068 1069 1070
    params = set.recognize_path("/people/5", :method => :patch)
    assert_equal("update", params[:action])

1071
    assert_raise(ActionController::UnknownHttpMethod) {
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082
      set.recognize_path("/people", :method => :bacon)
    }

    params = set.recognize_path("/people/5", :method => :get)
    assert_equal("show", params[:action])
    assert_equal("5", params[:id])

    params = set.recognize_path("/people/5", :method => :put)
    assert_equal("update", params[:action])
    assert_equal("5", params[:id])

1083 1084 1085 1086
    params = set.recognize_path("/people/5", :method => :patch)
    assert_equal("update", params[:action])
    assert_equal("5", params[:id])

1087 1088 1089 1090 1091 1092 1093 1094 1095
    params = set.recognize_path("/people/5", :method => :delete)
    assert_equal("destroy", params[:action])
    assert_equal("5", params[:id])

    assert_raise(ActionController::RoutingError) {
      set.recognize_path("/people/5", :method => :post)
    }
  end

1096
  def test_recognize_with_alias_in_conditions
1097
    set.draw do
1098 1099
      match "/people" => 'people#index', :as => 'people', :via => :get
      root :to => "people#index"
1100
    end
1101

J
Joshua Peek 已提交
1102 1103 1104
    params = set.recognize_path("/people", :method => :get)
    assert_equal("people", params[:controller])
    assert_equal("index", params[:action])
1105

J
Joshua Peek 已提交
1106 1107 1108
    params = set.recognize_path("/", :method => :get)
    assert_equal("people", params[:controller])
    assert_equal("index", params[:action])
1109
  end
1110

1111
  def test_typo_recognition
1112
    set.draw do
1113
      get 'articles/:year/:month/:day/:title' => 'articles#permalink',
1114
             :year => /\d{4}/, :day => /\d{1,2}/, :month => /\d{1,2}/
1115
    end
1116

J
Joshua Peek 已提交
1117 1118 1119 1120 1121 1122
    params = set.recognize_path("/articles/2005/11/05/a-very-interesting-article", :method => :get)
    assert_equal("permalink", params[:action])
    assert_equal("2005", params[:year])
    assert_equal("11", params[:month])
    assert_equal("05", params[:day])
    assert_equal("a-very-interesting-article", params[:title])
1123
  end
1124

1125 1126
  def test_routing_traversal_does_not_load_extra_classes
    assert !Object.const_defined?("Profiler__"), "Profiler should not be loaded"
1127
    set.draw do
1128
      get '/profile' => 'profile#index'
1129 1130
    end

1131
    set.recognize_path("/profile") rescue nil
1132

1133 1134 1135 1136
    assert !Object.const_defined?("Profiler__"), "Profiler should not be loaded"
  end

  def test_recognize_with_conditions_and_format
1137
    set.draw do
1138 1139
      get "people/:id" => "people#show", :as => "person"
      put "people/:id" => "people#update"
1140
      patch "people/:id" => "people#update"
1141
      get "people/:id(.:format)" => "people#show"
1142 1143
    end

J
Joshua Peek 已提交
1144 1145 1146
    params = set.recognize_path("/people/5", :method => :get)
    assert_equal("show", params[:action])
    assert_equal("5", params[:id])
1147

J
Joshua Peek 已提交
1148 1149
    params = set.recognize_path("/people/5", :method => :put)
    assert_equal("update", params[:action])
1150

1151 1152 1153
    params = set.recognize_path("/people/5", :method => :patch)
    assert_equal("update", params[:action])

J
Joshua Peek 已提交
1154 1155 1156
    params = set.recognize_path("/people/5.png", :method => :get)
    assert_equal("show", params[:action])
    assert_equal("5", params[:id])
1157
    assert_equal("png", params[:format])
1158 1159 1160
  end

  def test_generate_with_default_action
1161
    set.draw do
1162 1163
      get "/people", :controller => "people", :action => "index"
      get "/people/list", :controller => "people", :action => "list"
1164 1165
    end

1166
    url = url_for(set, { :controller => "people", :action => "list" })
1167 1168
    assert_equal "/people/list", url
  end
1169

1170
  def test_root_map
1171
    set.draw { root :to => 'people#index' }
1172

J
Joshua Peek 已提交
1173 1174 1175
    params = set.recognize_path("", :method => :get)
    assert_equal("people", params[:controller])
    assert_equal("index", params[:action])
1176 1177 1178
  end

  def test_namespace
1179
    set.draw do
1180

1181
      namespace 'api' do
1182
        get 'inventory' => 'products#inventory'
1183
      end
1184

1185 1186
    end

J
Joshua Peek 已提交
1187 1188 1189
    params = set.recognize_path("/api/inventory", :method => :get)
    assert_equal("api/products", params[:controller])
    assert_equal("inventory", params[:action])
1190
  end
1191

1192
  def test_namespaced_root_map
1193 1194
    set.draw do
      namespace 'api' do
1195
        root :to => 'products#index'
1196 1197 1198
      end
    end

J
Joshua Peek 已提交
1199 1200 1201
    params = set.recognize_path("/api", :method => :get)
    assert_equal("api/products", params[:controller])
    assert_equal("index", params[:action])
1202
  end
1203

1204
  def test_namespace_with_path_prefix
1205
    set.draw do
1206
      scope :module => "api", :path => "prefix" do
1207
        get 'inventory' => 'products#inventory'
1208
      end
1209 1210
    end

J
Joshua Peek 已提交
1211 1212 1213
    params = set.recognize_path("/prefix/inventory", :method => :get)
    assert_equal("api/products", params[:controller])
    assert_equal("inventory", params[:action])
1214
  end
1215

1216
  def test_namespace_with_blank_path_prefix
1217
    set.draw do
1218
      scope :module => "api", :path => "" do
1219
        get 'inventory' => 'products#inventory'
1220 1221 1222
      end
    end

J
Joshua Peek 已提交
1223 1224 1225
    params = set.recognize_path("/inventory", :method => :get)
    assert_equal("api/products", params[:controller])
    assert_equal("inventory", params[:action])
1226 1227
  end

1228
  def test_generate_changes_controller_module
1229
    set.draw { get ':controller/:action/:id' }
1230
    current = { :controller => "bling/bloop", :action => "bap", :id => 9 }
1231 1232 1233

    assert_equal "/foo/bar/baz/7",
        url_for(set, { :controller => "foo/bar", :action => "baz", :id => 7 }, current)
1234 1235 1236
  end

  def test_id_is_sticky_when_it_ought_to_be
1237
    set.draw do
1238
      get ':controller/:id/:action'
1239
    end
1240

1241
    url = url_for(set, { :action => "destroy" }, { :controller => "people", :action => "show", :id => "7" })
1242 1243
    assert_equal "/people/7/destroy", url
  end
1244

1245
  def test_use_static_path_when_possible
1246
    set.draw do
1247 1248
      get 'about' => "welcome#about"
      get ':controller/:action/:id'
1249 1250
    end

1251 1252 1253
    url = url_for(set, { :controller => "welcome", :action => "about" },
      { :controller => "welcome", :action => "get", :id => "7" })

1254 1255
    assert_equal "/about", url
  end
1256

1257
  def test_generate
1258
    set.draw { get ':controller/:action/:id' }
1259

1260
    args = { :controller => "foo", :action => "bar", :id => "7", :x => "y" }
1261
    assert_equal "/foo/bar/7?x=y",     url_for(set, args)
1262 1263 1264
    assert_equal ["/foo/bar/7", [:x]], set.generate_extras(args)
    assert_equal [:x], set.extra_keys(args)
  end
1265

1266
  def test_generate_with_path_prefix
1267 1268
    set.draw do
      scope "my" do
1269
        get ':controller(/:action(/:id))'
1270 1271
      end
    end
1272

1273
    args = { :controller => "foo", :action => "bar", :id => "7", :x => "y" }
1274
    assert_equal "/my/foo/bar/7?x=y", url_for(set, args)
1275 1276
  end

1277
  def test_generate_with_blank_path_prefix
1278 1279
    set.draw do
      scope "" do
1280
        get ':controller(/:action(/:id))'
1281 1282
      end
    end
1283 1284

    args = { :controller => "foo", :action => "bar", :id => "7", :x => "y" }
1285
    assert_equal "/foo/bar/7?x=y", url_for(set, args)
1286 1287
  end

1288
  def test_named_routes_are_never_relative_to_modules
1289
    set.draw do
1290 1291 1292
      get "/connection/manage(/:action)" => 'connection/manage#index'
      get "/connection/connection" => "connection/connection#index"
      get '/connection' => 'connection#index', :as => 'family_connection'
1293
    end
1294

1295
    url = url_for(set, { :controller => "connection" }, { :controller => 'connection/manage' })
1296 1297
    assert_equal "/connection/connection", url

1298
    url = url_for(set, { :use_route => :family_connection, :controller => "connection" }, { :controller => 'connection/manage' })
1299 1300 1301 1302
    assert_equal "/connection", url
  end

  def test_action_left_off_when_id_is_recalled
1303
    set.draw do
1304
      get ':controller(/:action(/:id))'
1305
    end
1306
    assert_equal '/books', url_for(set,
1307 1308
      {:controller => 'books', :action => 'index'},
      {:controller => 'books', :action => 'show', :id => '10'}
1309 1310
    )
  end
1311

1312
  def test_query_params_will_be_shown_when_recalled
1313
    set.draw do
1314 1315
      get 'show_weblog/:parameter' => 'weblog#show'
      get ':controller(/:action(/:id))'
1316
    end
1317
    assert_equal '/weblog/edit?parameter=1', url_for(set,
1318
      {:action => 'edit', :parameter => 1},
1319
      {:controller => 'weblog', :action => 'show', :parameter => 1}
1320 1321
    )
  end
1322

1323
  def test_format_is_not_inherit
1324
    set.draw do
1325
      get '/posts(.:format)' => 'posts#index'
1326 1327
    end

1328
    assert_equal '/posts', url_for(set,
1329 1330 1331 1332
      {:controller => 'posts'},
      {:controller => 'posts', :action => 'index', :format => 'xml'}
    )

1333
    assert_equal '/posts.xml', url_for(set,
1334 1335 1336 1337 1338
      {:controller => 'posts', :format => 'xml'},
      {:controller => 'posts', :action => 'index', :format => 'xml'}
    )
  end

1339
  def test_expiry_determination_should_consider_values_with_to_param
1340
    set.draw { get 'projects/:project_id/:controller/:action' }
1341 1342 1343
    assert_equal '/projects/1/weblog/show', url_for(set,
      { :action => 'show', :project_id => 1 },
      { :controller => 'weblog', :action => 'show', :project_id => '1' })
1344
  end
1345

1346
  def test_named_route_in_nested_resource
1347 1348
    set.draw do
      resources :projects do
1349
        member do
1350
          get 'milestones' => 'milestones#index', :as => 'milestones'
1351
        end
1352 1353
      end
    end
1354

J
Joshua Peek 已提交
1355 1356 1357
    params = set.recognize_path("/projects/1/milestones", :method => :get)
    assert_equal("milestones", params[:controller])
    assert_equal("index", params[:action])
1358
  end
1359

1360 1361
  def test_setting_root_in_namespace_using_symbol
    assert_nothing_raised do
1362 1363
      set.draw do
        namespace :admin do
1364
          root :to => "home#index"
1365 1366 1367
        end
      end
    end
1368
  end
1369

1370 1371
  def test_setting_root_in_namespace_using_string
    assert_nothing_raised do
1372 1373
      set.draw do
        namespace 'admin' do
1374
          root :to => "home#index"
1375 1376 1377
        end
      end
    end
1378
  end
1379

1380
  def test_route_constraints_with_unsupported_regexp_options_must_error
1381
    assert_raise ArgumentError do
1382
      set.draw do
1383
        get 'page/:name' => 'pages#show',
1384
          :constraints => { :name => /(david|jamis)/m }
1385
      end
1386
    end
1387
  end
1388

1389
  def test_route_constraints_with_supported_options_must_not_error
1390
    assert_nothing_raised do
1391
      set.draw do
1392
        get 'page/:name' => 'pages#show',
1393
          :constraints => { :name => /(david|jamis)/i }
1394 1395
      end
    end
1396
    assert_nothing_raised do
1397
      set.draw do
1398
        get 'page/:name' => 'pages#show',
1399
          :constraints => { :name => / # Desperately overcommented regexp
1400 1401 1402 1403
                                      ( #Either
                                       david #The Creator
                                      | #Or
                                        jamis #The Deployer
1404
                                      )/x }
1405 1406
      end
    end
1407
  end
1408 1409 1410 1411
  
  def test_route_with_subdomain_and_constraints_must_receive_params
    name_param = nil
    set.draw do
1412
      get 'page/:name' => 'pages#show', :constraints => lambda {|request|
1413 1414 1415 1416 1417 1418 1419 1420 1421
        name_param = request.params[:name]
        return true
      }
    end
    assert_equal({:controller => 'pages', :action => 'show', :name => 'mypage'},
      set.recognize_path('http://subdomain.example.org/page/mypage'))
    assert_equal(name_param, 'mypage')
  end
  
1422
  def test_route_requirement_recognize_with_ignore_case
1423
    set.draw do
1424
      get 'page/:name' => 'pages#show',
1425
        :constraints => {:name => /(david|jamis)/i}
1426 1427
    end
    assert_equal({:controller => 'pages', :action => 'show', :name => 'jamis'}, set.recognize_path('/page/jamis'))
1428
    assert_raise ActionController::RoutingError do
1429
      set.recognize_path('/page/davidjamis')
1430
    end
1431 1432
    assert_equal({:controller => 'pages', :action => 'show', :name => 'DAVID'}, set.recognize_path('/page/DAVID'))
  end
1433

1434
  def test_route_requirement_generate_with_ignore_case
1435
    set.draw do
1436
      get 'page/:name' => 'pages#show',
1437
        :constraints => {:name => /(david|jamis)/i}
1438
    end
1439

1440
    url = url_for(set, { :controller => 'pages', :action => 'show', :name => 'david' })
J
Jeremy Kemper 已提交
1441 1442
    assert_equal "/page/david", url
    assert_raise ActionController::RoutingError do
1443
      url_for(set, { :controller => 'pages', :action => 'show', :name => 'davidjamis' })
J
Jeremy Kemper 已提交
1444
    end
1445
    url = url_for(set, { :controller => 'pages', :action => 'show', :name => 'JAMIS' })
J
Jeremy Kemper 已提交
1446
    assert_equal "/page/JAMIS", url
1447
  end
J
Jeremy Kemper 已提交
1448

1449
  def test_route_requirement_recognize_with_extended_syntax
1450
    set.draw do
1451
      get 'page/:name' => 'pages#show',
1452
        :constraints => {:name => / # Desperately overcommented regexp
1453 1454 1455 1456 1457 1458 1459 1460
                                    ( #Either
                                     david #The Creator
                                    | #Or
                                      jamis #The Deployer
                                    )/x}
    end
    assert_equal({:controller => 'pages', :action => 'show', :name => 'jamis'}, set.recognize_path('/page/jamis'))
    assert_equal({:controller => 'pages', :action => 'show', :name => 'david'}, set.recognize_path('/page/david'))
1461
    assert_raise ActionController::RoutingError do
1462 1463
      set.recognize_path('/page/david #The Creator')
    end
1464
    assert_raise ActionController::RoutingError do
1465
      set.recognize_path('/page/David')
1466 1467
    end
  end
1468

1469
  def test_route_requirement_with_xi_modifiers
1470
    set.draw do
1471
      get 'page/:name' => 'pages#show',
1472
        :constraints => {:name => / # Desperately overcommented regexp
1473 1474 1475 1476 1477
                                    ( #Either
                                     david #The Creator
                                    | #Or
                                      jamis #The Deployer
                                    )/xi}
1478
    end
1479

1480 1481
    assert_equal({:controller => 'pages', :action => 'show', :name => 'JAMIS'},
        set.recognize_path('/page/JAMIS'))
1482

1483 1484
    assert_equal "/page/JAMIS",
        url_for(set, { :controller => 'pages', :action => 'show', :name => 'JAMIS' })
1485
  end
1486 1487

  def test_routes_with_symbols
1488
    set.draw do
1489 1490
      get 'unnamed', :controller => :pages, :action => :show, :name => :as_symbol
      get 'named'  , :controller => :pages, :action => :show, :name => :as_symbol, :as => :named
1491 1492 1493 1494 1495
    end
    assert_equal({:controller => 'pages', :action => 'show', :name => :as_symbol}, set.recognize_path('/unnamed'))
    assert_equal({:controller => 'pages', :action => 'show', :name => :as_symbol}, set.recognize_path('/named'))
  end

1496
  def test_regexp_chunk_should_add_question_mark_for_optionals
1497
    set.draw do
1498 1499
      get '/' => 'foo#index'
      get '/hello' => 'bar#index'
J
Joshua Peek 已提交
1500
    end
1501

1502 1503
    assert_equal '/',      url_for(set, { :controller => 'foo' })
    assert_equal '/hello', url_for(set, { :controller => 'bar' })
1504

J
Joshua Peek 已提交
1505 1506
    assert_equal({:controller => "foo", :action => "index"}, set.recognize_path('/'))
    assert_equal({:controller => "bar", :action => "index"}, set.recognize_path('/hello'))
1507 1508 1509
  end

  def test_assign_route_options_with_anchor_chars
1510
    set.draw do
1511
      get '/cars/:action/:person/:car/', :controller => 'cars'
J
Joshua Peek 已提交
1512
    end
1513

1514
    assert_equal '/cars/buy/1/2', url_for(set, { :controller => 'cars', :action => 'buy', :person => '1', :car => '2' })
1515

J
Joshua Peek 已提交
1516
    assert_equal({:controller => "cars", :action => "buy", :person => "1", :car => "2"}, set.recognize_path('/cars/buy/1/2'))
1517 1518 1519
  end

  def test_segmentation_of_dot_path
1520
    set.draw do
1521
      get '/books/:action.rss', :controller => 'books'
J
Joshua Peek 已提交
1522
    end
1523

1524
    assert_equal '/books/list.rss', url_for(set, { :controller => 'books', :action => 'list' })
1525

J
Joshua Peek 已提交
1526
    assert_equal({:controller => "books", :action => "list"}, set.recognize_path('/books/list.rss'))
1527 1528 1529
  end

  def test_segmentation_of_dynamic_dot_path
1530
    set.draw do
1531
      get '/books(/:action(.:format))', :controller => 'books'
J
Joshua Peek 已提交
1532
    end
1533

1534 1535 1536 1537
    assert_equal '/books/list.rss', url_for(set, { :controller => 'books', :action => 'list', :format => 'rss' })
    assert_equal '/books/list.xml', url_for(set, { :controller => 'books', :action => 'list', :format => 'xml' })
    assert_equal '/books/list',     url_for(set, { :controller => 'books', :action => 'list' })
    assert_equal '/books',          url_for(set, { :controller => 'books', :action => 'index' })
1538

J
Joshua Peek 已提交
1539 1540
    assert_equal({:controller => "books", :action => "list", :format => "rss"}, set.recognize_path('/books/list.rss'))
    assert_equal({:controller => "books", :action => "list", :format => "xml"}, set.recognize_path('/books/list.xml'))
1541
    assert_equal({:controller => "books", :action => "list"},  set.recognize_path('/books/list'))
J
Joshua Peek 已提交
1542
    assert_equal({:controller => "books", :action => "index"}, set.recognize_path('/books'))
1543 1544 1545
  end

  def test_slashes_are_implied
1546
    @set = nil
1547
    set.draw { get("/:controller(/:action(/:id))") }
1548

1549 1550 1551
    assert_equal '/content',        url_for(set, { :controller => 'content', :action => 'index' })
    assert_equal '/content/list',   url_for(set, { :controller => 'content', :action => 'list' })
    assert_equal '/content/show/1', url_for(set, { :controller => 'content', :action => 'show', :id => '1' })
1552

1553 1554
    assert_equal({:controller => "content", :action => "index"}, set.recognize_path('/content'))
    assert_equal({:controller => "content", :action => "index"}, set.recognize_path('/content/index'))
1555
    assert_equal({:controller => "content", :action => "list"},  set.recognize_path('/content/list'))
1556
    assert_equal({:controller => "content", :action => "show", :id => "1"}, set.recognize_path('/content/show/1'))
1557 1558 1559
  end

  def test_default_route_recognition
J
Joshua Peek 已提交
1560 1561 1562
    expected = {:controller => 'pages', :action => 'show', :id => '10'}
    assert_equal expected, default_route_set.recognize_path('/pages/show/10')
    assert_equal expected, default_route_set.recognize_path('/pages/show/10/')
1563 1564

    expected[:id] = 'jamis'
J
Joshua Peek 已提交
1565
    assert_equal expected, default_route_set.recognize_path('/pages/show/jamis/')
1566 1567

    expected.delete :id
J
Joshua Peek 已提交
1568 1569
    assert_equal expected, default_route_set.recognize_path('/pages/show')
    assert_equal expected, default_route_set.recognize_path('/pages/show/')
1570 1571

    expected[:action] = 'index'
J
Joshua Peek 已提交
1572 1573
    assert_equal expected, default_route_set.recognize_path('/pages/')
    assert_equal expected, default_route_set.recognize_path('/pages')
1574 1575

    assert_raise(ActionController::RoutingError) { default_route_set.recognize_path('/') }
J
Joshua Peek 已提交
1576
    assert_raise(ActionController::RoutingError) { default_route_set.recognize_path('/pages/how/goood/it/is/to/be/free') }
1577 1578 1579
  end

  def test_default_route_should_omit_default_action
1580
    assert_equal '/accounts', url_for(default_route_set, { :controller => 'accounts', :action => 'index' })
1581 1582 1583
  end

  def test_default_route_should_include_default_action_when_id_present
1584
    assert_equal '/accounts/index/20', url_for(default_route_set, { :controller => 'accounts', :action => 'index', :id => '20' })
1585 1586 1587
  end

  def test_default_route_should_work_with_action_but_no_id
1588
    assert_equal '/accounts/list_all', url_for(default_route_set, { :controller => 'accounts', :action => 'list_all' })
1589 1590 1591
  end

  def test_default_route_should_uri_escape_pluses
J
Joshua Peek 已提交
1592 1593
    expected = { :controller => 'pages', :action => 'show', :id => 'hello world' }
    assert_equal expected, default_route_set.recognize_path('/pages/show/hello%20world')
1594
    assert_equal '/pages/show/hello%20world', url_for(default_route_set, expected)
1595 1596

    expected[:id] = 'hello+world'
J
Joshua Peek 已提交
1597 1598
    assert_equal expected, default_route_set.recognize_path('/pages/show/hello+world')
    assert_equal expected, default_route_set.recognize_path('/pages/show/hello%2Bworld')
1599
    assert_equal '/pages/show/hello+world', url_for(default_route_set, expected)
1600 1601 1602
  end

  def test_build_empty_query_string
1603
    assert_uri_equal '/foo', url_for(default_route_set, { :controller => 'foo' })
1604 1605 1606
  end

  def test_build_query_string_with_nil_value
1607
    assert_uri_equal '/foo', url_for(default_route_set, { :controller => 'foo', :x => nil })
1608 1609 1610
  end

  def test_simple_build_query_string
1611
    assert_uri_equal '/foo?x=1&y=2', url_for(default_route_set, { :controller => 'foo', :x => '1', :y => '2' })
1612 1613 1614
  end

  def test_convert_ints_build_query_string
1615
    assert_uri_equal '/foo?x=1&y=2', url_for(default_route_set, { :controller => 'foo', :x => 1, :y => 2 })
1616 1617 1618
  end

  def test_escape_spaces_build_query_string
1619
    assert_uri_equal '/foo?x=hello+world&y=goodbye+world', url_for(default_route_set, { :controller => 'foo', :x => 'hello world', :y => 'goodbye world' })
1620 1621 1622
  end

  def test_expand_array_build_query_string
1623
    assert_uri_equal '/foo?x%5B%5D=1&x%5B%5D=2', url_for(default_route_set, { :controller => 'foo', :x => [1, 2] })
1624 1625 1626
  end

  def test_escape_spaces_build_query_string_selected_keys
1627
    assert_uri_equal '/foo?x=hello+world', url_for(default_route_set, { :controller => 'foo', :x => 'hello world' })
1628
  end
J
Joshua Peek 已提交
1629

1630
  def test_generate_with_default_params
1631
    set.draw do
1632 1633 1634
      get 'dummy/page/:page' => 'dummy#show'
      get 'dummy/dots/page.:page' => 'dummy#dots'
      get 'ibocorp(/:page)' => 'ibocorp#show',
1635 1636
                             :constraints => { :page => /\d+/ },
                             :defaults => { :page => 1 }
1637

1638
      get ':controller/:action/:id'
1639 1640
    end

1641
    assert_equal '/ibocorp', url_for(set, { :controller => 'ibocorp', :action => "show", :page => 1 })
1642 1643
  end

1644
  def test_generate_with_optional_params_recalls_last_request
1645
    set.draw do
1646
      get "blog/", :controller => "blog", :action => "index"
1647

1648
      get "blog(/:year(/:month(/:day)))",
1649 1650 1651 1652
            :controller => "blog",
            :action => "show_date",
            :constraints => { :year => /(19|20)\d\d/, :month => /[01]?\d/, :day => /[0-3]?\d/ },
            :day => nil, :month => nil
1653

1654 1655 1656
      get "blog/show/:id", :controller => "blog", :action => "show", :id => /\d+/
      get "blog/:controller/:action(/:id)"
      get "*anything", :controller => "blog", :action => "unknown_request"
1657 1658 1659 1660
    end

    assert_equal({:controller => "blog", :action => "index"}, set.recognize_path("/blog"))
    assert_equal({:controller => "blog", :action => "show", :id => "123"}, set.recognize_path("/blog/show/123"))
1661 1662
    assert_equal({:controller => "blog", :action => "show_date", :year => "2004", :day => nil, :month => nil }, set.recognize_path("/blog/2004"))
    assert_equal({:controller => "blog", :action => "show_date", :year => "2004", :month => "12", :day => nil }, set.recognize_path("/blog/2004/12"))
1663 1664 1665
    assert_equal({:controller => "blog", :action => "show_date", :year => "2004", :month => "12", :day => "25"}, set.recognize_path("/blog/2004/12/25"))
    assert_equal({:controller => "articles", :action => "edit", :id => "123"}, set.recognize_path("/blog/articles/edit/123"))
    assert_equal({:controller => "articles", :action => "show_stats"}, set.recognize_path("/blog/articles/show_stats"))
1666 1667
    assert_equal({:controller => "blog", :action => "unknown_request", :anything => "blog/wibble"}, set.recognize_path("/blog/wibble"))
    assert_equal({:controller => "blog", :action => "unknown_request", :anything => "junk"}, set.recognize_path("/junk"))
1668 1669 1670

    last_request = set.recognize_path("/blog/2006/07/28").freeze
    assert_equal({:controller => "blog",  :action => "show_date", :year => "2006", :month => "07", :day => "28"}, last_request)
1671 1672 1673 1674 1675
    assert_equal("/blog/2006/07/25", url_for(set, { :day => 25 }, last_request))
    assert_equal("/blog/2005",       url_for(set, { :year => 2005 }, last_request))
    assert_equal("/blog/show/123",   url_for(set, { :action => "show" , :id => 123 }, last_request))
    assert_equal("/blog/2006",       url_for(set, { :year => 2006 }, last_request))
    assert_equal("/blog/2006",       url_for(set, { :year => 2006, :month => nil }, last_request))
1676 1677
  end

J
Joshua Peek 已提交
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687
  private
    def assert_uri_equal(expected, actual)
      assert_equal(sort_query_string_params(expected), sort_query_string_params(actual))
    end

    def sort_query_string_params(uri)
      path, qs = uri.split('?')
      qs = qs.split('&').sort.join('&') if qs
      qs ? "#{path}?#{qs}" : path
    end
1688
end
1689

1690
class RackMountIntegrationTests < ActiveSupport::TestCase
1691 1692
  include RoutingTestHelpers

1693 1694
  Model = Struct.new(:to_param)

1695 1696
  Mapping = lambda {
    namespace :admin do
1697
      resources :users, :posts
1698 1699
    end

1700
    namespace 'api' do
1701
      root :to => 'users#index'
1702 1703
    end

1704
    get '/blog(/:year(/:month(/:day)))' => 'posts#show_date',
1705
      :constraints => {
1706 1707 1708 1709 1710 1711
        :year => /(19|20)\d\d/,
        :month => /[01]?\d/,
        :day => /[0-3]?\d/
      },
      :day => nil,
      :month => nil
1712

1713
    get 'archive/:year', :controller => 'archive', :action => 'index',
1714
      :defaults => { :year => nil },
1715 1716
      :constraints => { :year => /\d{4}/ },
      :as => "blog"
1717

1718
    resources :people
1719
    get 'legacy/people' => "people#index", :legacy => "true"
1720

1721 1722
    get 'symbols', :controller => :symbols, :action => :show, :name => :as_symbol
    get 'id_default(/:id)' => "foo#id_default", :id => 1
1723
    match 'get_or_post' => "foo#get_or_post", :via => [:get, :post]
1724 1725 1726
    get 'optional/:optional' => "posts#index"
    get 'projects/:project_id' => "project#index", :as => "project"
    get 'clients' => "projects#index"
1727

1728 1729
    get 'ignorecase/geocode/:postalcode' => 'geocode#show', :postalcode => /hx\d\d-\d[a-z]{2}/i
    get 'extended/geocode/:postalcode' => 'geocode#show',:constraints => {
1730 1731 1732 1733
                  :postalcode => /# Postcode format
                                  \d{5} #Prefix
                                  (-\d{4})? #Suffix
                                  /x
1734
                  }, :as => "geocode"
1735

1736
    get 'news(.:format)' => "news#index"
1737

1738 1739 1740 1741 1742 1743
    get 'comment/:id(/:action)' => "comments#show"
    get 'ws/:controller(/:action(/:id))', :ws => true
    get 'account(/:action)' => "account#subscription"
    get 'pages/:page_id/:controller(/:action(/:id))'
    get ':controller/ping', :action => 'ping'
    match ':controller(/:action(/:id))(.:format)', :via => :all
1744
    root :to => "news#index"
1745 1746 1747
  }

  def setup
1748
    @routes = ActionDispatch::Routing::RouteSet.new
1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
    @routes.draw(&Mapping)
  end

  def test_recognize_path
    assert_equal({:controller => 'admin/users', :action => 'index'}, @routes.recognize_path('/admin/users', :method => :get))
    assert_equal({:controller => 'admin/users', :action => 'create'}, @routes.recognize_path('/admin/users', :method => :post))
    assert_equal({:controller => 'admin/users', :action => 'new'}, @routes.recognize_path('/admin/users/new', :method => :get))
    assert_equal({:controller => 'admin/users', :action => 'show', :id => '1'}, @routes.recognize_path('/admin/users/1', :method => :get))
    assert_equal({:controller => 'admin/users', :action => 'update', :id => '1'}, @routes.recognize_path('/admin/users/1', :method => :put))
    assert_equal({:controller => 'admin/users', :action => 'destroy', :id => '1'}, @routes.recognize_path('/admin/users/1', :method => :delete))
    assert_equal({:controller => 'admin/users', :action => 'edit', :id => '1'}, @routes.recognize_path('/admin/users/1/edit', :method => :get))

    assert_equal({:controller => 'admin/posts', :action => 'index'}, @routes.recognize_path('/admin/posts', :method => :get))
    assert_equal({:controller => 'admin/posts', :action => 'new'}, @routes.recognize_path('/admin/posts/new', :method => :get))

    assert_equal({:controller => 'api/users', :action => 'index'}, @routes.recognize_path('/api', :method => :get))
    assert_equal({:controller => 'api/users', :action => 'index'}, @routes.recognize_path('/api/', :method => :get))

1767 1768
    assert_equal({:controller => 'posts', :action => 'show_date', :year => '2009', :month => nil, :day => nil }, @routes.recognize_path('/blog/2009', :method => :get))
    assert_equal({:controller => 'posts', :action => 'show_date', :year => '2009', :month => '01', :day => nil }, @routes.recognize_path('/blog/2009/01', :method => :get))
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
    assert_equal({:controller => 'posts', :action => 'show_date', :year => '2009', :month => '01', :day => '01'}, @routes.recognize_path('/blog/2009/01/01', :method => :get))

    assert_equal({:controller => 'archive', :action => 'index', :year => '2010'}, @routes.recognize_path('/archive/2010'))
    assert_equal({:controller => 'archive', :action => 'index'}, @routes.recognize_path('/archive'))

    assert_equal({:controller => 'people', :action => 'index'}, @routes.recognize_path('/people', :method => :get))
    assert_equal({:controller => 'people', :action => 'index', :format => 'xml'}, @routes.recognize_path('/people.xml', :method => :get))
    assert_equal({:controller => 'people', :action => 'create'}, @routes.recognize_path('/people', :method => :post))
    assert_equal({:controller => 'people', :action => 'new'}, @routes.recognize_path('/people/new', :method => :get))
    assert_equal({:controller => 'people', :action => 'show', :id => '1'}, @routes.recognize_path('/people/1', :method => :get))
    assert_equal({:controller => 'people', :action => 'show', :id => '1', :format => 'xml'}, @routes.recognize_path('/people/1.xml', :method => :get))
    assert_equal({:controller => 'people', :action => 'update', :id => '1'}, @routes.recognize_path('/people/1', :method => :put))
    assert_equal({:controller => 'people', :action => 'destroy', :id => '1'}, @routes.recognize_path('/people/1', :method => :delete))
    assert_equal({:controller => 'people', :action => 'edit', :id => '1'}, @routes.recognize_path('/people/1/edit', :method => :get))
    assert_equal({:controller => 'people', :action => 'edit', :id => '1', :format => 'xml'}, @routes.recognize_path('/people/1/edit.xml', :method => :get))

    assert_equal({:controller => 'symbols', :action => 'show', :name => :as_symbol}, @routes.recognize_path('/symbols'))
    assert_equal({:controller => 'foo', :action => 'id_default', :id => '1'}, @routes.recognize_path('/id_default/1'))
    assert_equal({:controller => 'foo', :action => 'id_default', :id => '2'}, @routes.recognize_path('/id_default/2'))
1788
    assert_equal({:controller => 'foo', :action => 'id_default', :id => 1 }, @routes.recognize_path('/id_default'))
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
    assert_equal({:controller => 'foo', :action => 'get_or_post'}, @routes.recognize_path('/get_or_post', :method => :get))
    assert_equal({:controller => 'foo', :action => 'get_or_post'}, @routes.recognize_path('/get_or_post', :method => :post))
    assert_raise(ActionController::ActionControllerError) { @routes.recognize_path('/get_or_post', :method => :put) }
    assert_raise(ActionController::ActionControllerError) { @routes.recognize_path('/get_or_post', :method => :delete) }

    assert_equal({:controller => 'posts', :action => 'index', :optional => 'bar'}, @routes.recognize_path('/optional/bar'))
    assert_raise(ActionController::ActionControllerError) { @routes.recognize_path('/optional') }

    assert_equal({:controller => 'posts', :action => 'show', :id => '1', :ws => true}, @routes.recognize_path('/ws/posts/show/1', :method => :get))
    assert_equal({:controller => 'posts', :action => 'list', :ws => true}, @routes.recognize_path('/ws/posts/list', :method => :get))
    assert_equal({:controller => 'posts', :action => 'index', :ws => true}, @routes.recognize_path('/ws/posts', :method => :get))

    assert_equal({:controller => 'account', :action => 'subscription'}, @routes.recognize_path('/account', :method => :get))
    assert_equal({:controller => 'account', :action => 'subscription'}, @routes.recognize_path('/account/subscription', :method => :get))
    assert_equal({:controller => 'account', :action => 'billing'}, @routes.recognize_path('/account/billing', :method => :get))

    assert_equal({:page_id => '1', :controller => 'notes', :action => 'index'}, @routes.recognize_path('/pages/1/notes', :method => :get))
    assert_equal({:page_id => '1', :controller => 'notes', :action => 'list'}, @routes.recognize_path('/pages/1/notes/list', :method => :get))
    assert_equal({:page_id => '1', :controller => 'notes', :action => 'show', :id => '2'}, @routes.recognize_path('/pages/1/notes/show/2', :method => :get))

    assert_equal({:controller => 'posts', :action => 'ping'}, @routes.recognize_path('/posts/ping', :method => :get))
    assert_equal({:controller => 'posts', :action => 'index'}, @routes.recognize_path('/posts', :method => :get))
    assert_equal({:controller => 'posts', :action => 'index'}, @routes.recognize_path('/posts/index', :method => :get))
    assert_equal({:controller => 'posts', :action => 'show'}, @routes.recognize_path('/posts/show', :method => :get))
    assert_equal({:controller => 'posts', :action => 'show', :id => '1'}, @routes.recognize_path('/posts/show/1', :method => :get))
    assert_equal({:controller => 'posts', :action => 'create'}, @routes.recognize_path('/posts/create', :method => :post))

    assert_equal({:controller => 'geocode', :action => 'show', :postalcode => 'hx12-1az'}, @routes.recognize_path('/ignorecase/geocode/hx12-1az'))
    assert_equal({:controller => 'geocode', :action => 'show', :postalcode => 'hx12-1AZ'}, @routes.recognize_path('/ignorecase/geocode/hx12-1AZ'))
    assert_equal({:controller => 'geocode', :action => 'show', :postalcode => '12345-1234'}, @routes.recognize_path('/extended/geocode/12345-1234'))
    assert_equal({:controller => 'geocode', :action => 'show', :postalcode => '12345'}, @routes.recognize_path('/extended/geocode/12345'))

1821
    assert_equal({:controller => 'news', :action => 'index' }, @routes.recognize_path('/', :method => :get))
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
    assert_equal({:controller => 'news', :action => 'index', :format => 'rss'}, @routes.recognize_path('/news.rss', :method => :get))

    assert_raise(ActionController::RoutingError) { @routes.recognize_path('/none', :method => :get) }
  end

  def test_generate_extras
    assert_equal ['/people', []], @routes.generate_extras(:controller => 'people')
    assert_equal ['/people', [:foo]], @routes.generate_extras(:controller => 'people', :foo => 'bar')
    assert_equal ['/people', []], @routes.generate_extras(:controller => 'people', :action => 'index')
    assert_equal ['/people', [:foo]], @routes.generate_extras(:controller => 'people', :action => 'index', :foo => 'bar')
    assert_equal ['/people/new', []], @routes.generate_extras(:controller => 'people', :action => 'new')
    assert_equal ['/people/new', [:foo]], @routes.generate_extras(:controller => 'people', :action => 'new', :foo => 'bar')
    assert_equal ['/people/1', []], @routes.generate_extras(:controller => 'people', :action => 'show', :id => '1')
    assert_equal ['/people/1', [:bar, :foo]], sort_extras!(@routes.generate_extras(:controller => 'people', :action => 'show', :id => '1', :foo => '2', :bar => '3'))
    assert_equal ['/people', [:person]], @routes.generate_extras(:controller => 'people', :action => 'create', :person => { :first_name => 'Josh', :last_name => 'Peek' })
    assert_equal ['/people', [:people]], @routes.generate_extras(:controller => 'people', :action => 'create', :people => ['Josh', 'Dave'])

    assert_equal ['/posts/show/1', []], @routes.generate_extras(:controller => 'posts', :action => 'show', :id => '1')
    assert_equal ['/posts/show/1', [:bar, :foo]], sort_extras!(@routes.generate_extras(:controller => 'posts', :action => 'show', :id => '1', :foo => '2', :bar => '3'))
    assert_equal ['/posts', []], @routes.generate_extras(:controller => 'posts', :action => 'index')
    assert_equal ['/posts', [:foo]], @routes.generate_extras(:controller => 'posts', :action => 'index', :foo => 'bar')
  end

  def test_extras
    params = {:controller => 'people'}
    assert_equal [], @routes.extra_keys(params)
    assert_equal({:controller => 'people'}, params)

    params = {:controller => 'people', :foo => 'bar'}
    assert_equal [:foo], @routes.extra_keys(params)
    assert_equal({:controller => 'people', :foo => 'bar'}, params)

    params = {:controller => 'people', :action => 'create', :person => { :name => 'Josh'}}
    assert_equal [:person], @routes.extra_keys(params)
    assert_equal({:controller => 'people', :action => 'create', :person => { :name => 'Josh'}}, params)
  end

  private
    def sort_extras!(extras)
      if extras.length == 2
        extras[1].sort! { |a, b| a.to_s <=> b.to_s }
      end
      extras
    end

    def assert_raise(e)
      result = yield
      flunk "Did not raise #{e}, but returned #{result.inspect}"
    rescue e
      assert true
    end
end