aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/rails_info_controller_test.rb
blob: c51503c2b7e022435eee450d6fb994d353eeb044 (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
require 'abstract_unit'

module ActionController
  class Base
    include ActionController::Testing
  end
end

class InfoControllerTest < ActionController::TestCase
  tests Rails::InfoController

  def setup
    Rails.application.routes.draw do
      get '/rails/info/properties' => "rails/info#properties"
      get '/rails/info/routes'     => "rails/info#routes"
    end
    @routes = Rails.application.routes

    Rails::InfoController.include(@routes.url_helpers)

    @request.env["REMOTE_ADDR"] = "127.0.0.1"
  end

  test "info controller does not allow remote requests" do
    @request.env["REMOTE_ADDR"] = "example.org"
    get :properties
    assert_response :forbidden
  end

  test "info controller renders an error message when request was forbidden" do
    @request.env["REMOTE_ADDR"] = "example.org"
    get :properties
    assert_select 'p'
  end

  test "info controller allows requests when all requests are considered local" do
    get :properties
    assert_response :success
  end

  test "info controller allows local requests" do
    get :properties
    assert_response :success
  end

  test "info controller renders a table with properties" do
    get :properties
    assert_select 'table'
  end

  test "info controller renders with routes" do
    get :routes
    assert_response :success
  end

  test "info controller returns exact matches" do
    exact_count = -> { JSON(response.body)['exact'].size }

    get :routes, params: { path: 'rails/info/route' }
    assert exact_count.call == 0, 'should not match incomplete routes'

    get :routes, params: { path: 'rails/info/routes' }
    assert exact_count.call == 1, 'should match complete routes'

    get :routes, params: { path: 'rails/info/routes.html' }
    assert exact_count.call == 1, 'should match complete routes with optional parts'
  end

  test "info controller returns fuzzy matches" do
    fuzzy_count = -> { JSON(response.body)['fuzzy'].size }

    get :routes, params: { path: 'rails/info' }
    assert fuzzy_count.call == 2, 'should match incomplete routes'

    get :routes, params: { path: 'rails/info/routes' }
    assert fuzzy_count.call == 1, 'should match complete routes'

    get :routes, params: { path: 'rails/info/routes.html' }
    assert fuzzy_count.call == 0, 'should match optional parts of route literally'
  end
end