rails--rails/railties/test/rails_info_controller_test.rb

91 lines
2.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require "abstract_unit"
2009-06-15 23:14:45 +00:00
module ActionController
class Base
include ActionController::Testing
end
end
class InfoControllerTest < ActionController::TestCase
tests Rails::InfoController
Rails.application.config.secret_key_base = "b3c631c314c0bbca50c1b2843150fe33"
def setup
Rails.application.routes.draw do
get "/rails/info/properties" => "rails/info#properties"
get "/rails/info/routes" => "rails/info#routes"
2009-10-18 16:13:57 +00:00
end
2010-03-30 19:18:08 +00:00
@routes = Rails.application.routes
2010-02-25 00:47:43 +00:00
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
2008-06-05 19:41:22 +00:00
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
2008-06-05 19:41:22 +00:00
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
Prevent `{ internal: true }` from being stored in the router Forgotten followup to #23669 :grimacing: If you went to an internal route (e.g. `/rails/info/routes`), you would previously see the following in your logger: ```bash Processing by Rails::InfoController#routes as HTML Parameters: {"internal"=>true} Rendering /Users/jon/code/rails/rails/railties/lib/rails/templates/rails/info/routes.html.erb within layouts/application Rendered collection of /Users/jon/code/rails/rails/actionpack/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (10.5ms) Rendered /Users/jon/code/rails/rails/actionpack/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/jon/code/rails/rails/railties/lib/rails/templates/rails/info/routes.html.erb within layouts/application (23.5ms) Completed 200 OK in 50ms (Views: 35.1ms | ActiveRecord: 0.0ms) ``` Now, with this change, you would see: ```bash Processing by Rails::InfoController#routes as HTML Rendering /Users/jon/code/rails/rails/railties/lib/rails/templates/rails/info/routes.html.erb within layouts/application Rendered collection of /Users/jon/code/rails/rails/actionpack/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (1.6ms) Rendered /Users/jon/code/rails/rails/actionpack/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.2ms) Rendered /Users/jon/code/rails/rails/railties/lib/rails/templates/rails/info/routes.html.erb within layouts/application (17.4ms) Completed 200 OK in 44ms (Views: 28.0ms | ActiveRecord: 0.0ms) ```
2016-06-04 15:40:11 +00:00
test "internal routes do not have a default params[:internal] value" do
get :properties
assert_response :success
assert_nil @controller.params[:internal]
end
end