aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/route_inspect_test.rb
blob: fcfa87e395725f1457070d82574c066d17f62950 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
require 'minitest/autorun'
require 'rails/application/route_inspector'
require 'action_controller'
require 'rails/engine'

module ApplicationTests
  class RouteInspectTest < ActiveSupport::TestCase
    def setup
      @set = ActionDispatch::Routing::RouteSet.new
      @inspector = Rails::Application::RouteInspector.new
    end

    def test_displaying_routes_for_engines
      engine = Class.new(Rails::Engine) do
        def self.to_s
          "Blog::Engine"
        end
      end
      engine.routes.draw do
        get '/cart', :to => 'cart#show'
      end

      @set.draw do
        get '/custom/assets', :to => 'custom_assets#show'
        mount engine => "/blog", :as => "blog"
      end

      output = @inspector.format @set.routes
      expected = [
        "custom_assets GET /custom/assets(.:format) custom_assets#show",
        "         blog     /blog                    Blog::Engine",
        "\nRoutes for Blog::Engine:",
        "cart GET /cart(.:format) cart#show"
      ]
      assert_equal expected, output
    end

    def test_cart_inspect
      @set.draw do
        get '/cart', :to => 'cart#show'
      end
      output = @inspector.format @set.routes
      assert_equal ["cart GET /cart(.:format) cart#show"], output
    end

    def test_inspect_shows_custom_assets
      @set.draw do
        get '/custom/assets', :to => 'custom_assets#show'
      end
      output = @inspector.format @set.routes
      assert_equal ["custom_assets GET /custom/assets(.:format) custom_assets#show"], output
    end

    def test_inspect_routes_shows_resources_route
      @set.draw do
        resources :articles
      end
      output = @inspector.format @set.routes
      expected = [
        "    articles GET    /articles(.:format)          articles#index",
        "             POST   /articles(.:format)          articles#create",
        " new_article GET    /articles/new(.:format)      articles#new",
        "edit_article GET    /articles/:id/edit(.:format) articles#edit",
        "     article GET    /articles/:id(.:format)      articles#show",
        "             PUT    /articles/:id(.:format)      articles#update",
        "             DELETE /articles/:id(.:format)      articles#destroy" ]
      assert_equal expected, output
    end

    def test_inspect_routes_shows_root_route
      @set.draw do
        root :to => 'pages#main'
      end
      output = @inspector.format @set.routes
      assert_equal ["root  / pages#main"], output
    end

    def test_inspect_routes_shows_dynamic_action_route
      @set.draw do
        match 'api/:action' => 'api'
      end
      output = @inspector.format @set.routes
      assert_equal ["  /api/:action(.:format) api#:action"], output
    end

    def test_inspect_routes_shows_controller_and_action_only_route
      @set.draw do
        match ':controller/:action'
      end
      output = @inspector.format @set.routes
      assert_equal ["  /:controller/:action(.:format) :controller#:action"], output
    end

    def test_inspect_routes_shows_controller_and_action_route_with_constraints
      @set.draw do
        match ':controller(/:action(/:id))', :id => /\d+/
      end
      output = @inspector.format @set.routes
      assert_equal ["  /:controller(/:action(/:id))(.:format) :controller#:action {:id=>/\\d+/}"], output
    end

    def test_rake_routes_shows_route_with_defaults
      @set.draw do
        match 'photos/:id' => 'photos#show', :defaults => {:format => 'jpg'}
      end
      output = @inspector.format @set.routes
      assert_equal [%Q[  /photos/:id(.:format) photos#show {:format=>"jpg"}]], output
    end

    def test_rake_routes_shows_route_with_constraints
      @set.draw do
        match 'photos/:id' => 'photos#show', :id => /[A-Z]\d{5}/
      end
      output = @inspector.format @set.routes
      assert_equal ["  /photos/:id(.:format) photos#show {:id=>/[A-Z]\\d{5}/}"], output
    end

    class RackApp
      def self.call(env)
      end
    end

    def test_rake_routes_shows_route_with_rack_app
      @set.draw do
        match 'foo/:id' => RackApp, :id => /[A-Z]\d{5}/
      end
      output = @inspector.format @set.routes
      assert_equal ["  /foo/:id(.:format) #{RackApp.name} {:id=>/[A-Z]\\d{5}/}"], output
    end

    def test_rake_routes_shows_route_with_rack_app_nested_with_dynamic_constraints
      constraint = Class.new do
        def to_s
          "( my custom constraint )"
        end
      end

      @set.draw do
        scope :constraint => constraint.new do
          mount RackApp => '/foo'
        end
      end

      output = @inspector.format @set.routes
      assert_equal ["  /foo #{RackApp.name} {:constraint=>( my custom constraint )}"], output
    end
  end
end