aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/journey/routes_test.rb
blob: bbe3228bf2b2e3fbf9238f91b37fbd2e592d38b8 (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
require 'abstract_unit'

module ActionDispatch
  module Journey
    class TestRoutes < ActiveSupport::TestCase
      attr_reader :routes

      def setup
        @route_set  = ActionDispatch::Routing::RouteSet.new
        @routes = @route_set.router.routes
        @router = @route_set.router
        super
      end

      MyMapping = Struct.new(:application, :path, :conditions, :required_defaults, :defaults)

      def add_route(app, path, conditions, required_defaults, defaults, name = nil)
        @routes.add_route(name, MyMapping.new(app, path, conditions, required_defaults, defaults))
      end

      def test_clear
        path    = Path::Pattern.build '/foo(/:id)', {}, ['/.?'], true
        requirements = { :hello => /world/ }

        add_route nil, path, requirements, [], {:id => nil}, {}
        assert_not routes.empty?
        assert_equal 1, routes.length

        routes.clear
        assert routes.empty?
        assert_equal 0, routes.length
      end

      def test_ast
        path   = Path::Pattern.from_string '/hello'

        add_route nil, path, {}, [], {}, {}
        ast = routes.ast
        add_route nil, path, {}, [], {}, {}
        assert_not_equal ast, routes.ast
      end

      def test_simulator_changes
        path   = Path::Pattern.from_string '/hello'

        add_route nil, path, {}, [], {}, {}
        sim = routes.simulator
        add_route nil, path, {}, [], {}, {}
        assert_not_equal sim, routes.simulator
      end

      def test_partition_route
        path   = Path::Pattern.from_string '/hello'

        anchored_route = add_route nil, path, {}, [], {}, {}
        assert_equal [anchored_route], @routes.anchored_routes
        assert_equal [], @routes.custom_routes

        path = Path::Pattern.build(
          "/hello/:who", { who: /\d/ }, ['/', '.', '?'], false
        )

        custom_route = add_route nil, path, {}, [], {}, {}
        assert_equal [custom_route], @routes.custom_routes
        assert_equal [anchored_route], @routes.anchored_routes
      end

      def test_first_name_wins
        mapper = ActionDispatch::Routing::Mapper.new @route_set
        mapper.get "/hello", to: "foo#bar", as: 'aaron'
        assert_raise(ArgumentError) do
          mapper.get "/aaron", to: "foo#bar", as: 'aaron'
        end
      end
    end
  end
end