2017-08-14 13:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
require "abstract_unit"
|
2005-11-07 23:26:34 -05:00
|
|
|
|
2009-06-15 19:14:45 -04:00
|
|
|
module ActionController
|
|
|
|
class Base
|
|
|
|
include ActionController::Testing
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-13 21:24:40 -05:00
|
|
|
class InfoControllerTest < ActionController::TestCase
|
2009-04-07 10:16:48 -04:00
|
|
|
tests Rails::InfoController
|
2019-03-13 16:41:29 -04:00
|
|
|
Rails.application.config.secret_key_base = "b3c631c314c0bbca50c1b2843150fe33"
|
2009-04-07 10:16:48 -04:00
|
|
|
|
2005-11-07 23:26:34 -05:00
|
|
|
def setup
|
2010-07-01 11:07:48 -04:00
|
|
|
Rails.application.routes.draw do
|
2016-08-06 13:16:09 -04:00
|
|
|
get "/rails/info/properties" => "rails/info#properties"
|
|
|
|
get "/rails/info/routes" => "rails/info#routes"
|
2009-10-18 12:13:57 -04:00
|
|
|
end
|
2010-03-30 15:18:08 -04:00
|
|
|
@routes = Rails.application.routes
|
2010-02-24 19:47:43 -05:00
|
|
|
|
2015-01-31 23:12:37 -05:00
|
|
|
Rails::InfoController.include(@routes.url_helpers)
|
2014-12-02 23:36:02 -05:00
|
|
|
|
|
|
|
@request.env["REMOTE_ADDR"] = "127.0.0.1"
|
2009-04-07 10:16:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "info controller does not allow remote requests" do
|
2014-12-02 23:36:02 -05:00
|
|
|
@request.env["REMOTE_ADDR"] = "example.org"
|
2009-04-07 10:16:48 -04:00
|
|
|
get :properties
|
|
|
|
assert_response :forbidden
|
|
|
|
end
|
2008-06-05 15:41:22 -04:00
|
|
|
|
2009-04-07 10:16:48 -04:00
|
|
|
test "info controller renders an error message when request was forbidden" do
|
2014-12-02 23:36:02 -05:00
|
|
|
@request.env["REMOTE_ADDR"] = "example.org"
|
2009-04-07 10:16:48 -04:00
|
|
|
get :properties
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_select "p"
|
2009-04-07 10:16:48 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "info controller allows requests when all requests are considered local" do
|
|
|
|
get :properties
|
|
|
|
assert_response :success
|
2005-11-07 23:26:34 -05:00
|
|
|
end
|
|
|
|
|
2009-04-07 10:16:48 -04:00
|
|
|
test "info controller allows local requests" do
|
2005-11-07 23:26:34 -05:00
|
|
|
get :properties
|
|
|
|
assert_response :success
|
|
|
|
end
|
2008-06-05 15:41:22 -04:00
|
|
|
|
2009-04-07 10:16:48 -04:00
|
|
|
test "info controller renders a table with properties" do
|
2005-11-07 23:26:34 -05:00
|
|
|
get :properties
|
2016-08-06 13:16:09 -04:00
|
|
|
assert_select "table"
|
2005-11-07 23:26:34 -05:00
|
|
|
end
|
2012-05-23 15:42:28 -04:00
|
|
|
|
|
|
|
test "info controller renders with routes" do
|
|
|
|
get :routes
|
2012-12-15 12:36:26 -05:00
|
|
|
assert_response :success
|
2012-05-23 15:42:28 -04:00
|
|
|
end
|
2012-12-14 15:51:12 -05:00
|
|
|
|
2015-02-23 11:51:30 -05:00
|
|
|
test "info controller returns exact matches" do
|
2016-08-06 13:16:09 -04:00
|
|
|
exact_count = -> { JSON(response.body)["exact"].size }
|
2015-02-23 11:51:30 -05:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
get :routes, params: { path: "rails/info/route" }
|
|
|
|
assert exact_count.call == 0, "should not match incomplete routes"
|
2015-02-23 11:51:30 -05:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
get :routes, params: { path: "rails/info/routes" }
|
|
|
|
assert exact_count.call == 1, "should match complete routes"
|
2015-03-17 02:45:14 -04:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
get :routes, params: { path: "rails/info/routes.html" }
|
|
|
|
assert exact_count.call == 1, "should match complete routes with optional parts"
|
2015-02-23 11:51:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test "info controller returns fuzzy matches" do
|
2016-08-06 13:16:09 -04:00
|
|
|
fuzzy_count = -> { JSON(response.body)["fuzzy"].size }
|
2015-02-23 11:51:30 -05:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
get :routes, params: { path: "rails/info" }
|
|
|
|
assert fuzzy_count.call == 2, "should match incomplete routes"
|
2015-02-23 11:51:30 -05:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
get :routes, params: { path: "rails/info/routes" }
|
|
|
|
assert fuzzy_count.call == 1, "should match complete routes"
|
2015-03-17 02:45:14 -04:00
|
|
|
|
2016-08-06 13:16:09 -04:00
|
|
|
get :routes, params: { path: "rails/info/routes.html" }
|
|
|
|
assert fuzzy_count.call == 0, "should match optional parts of route literally"
|
2015-02-23 11:51:30 -05:00
|
|
|
end
|
2016-06-04 11:40:11 -04:00
|
|
|
|
|
|
|
test "internal routes do not have a default params[:internal] value" do
|
|
|
|
get :properties
|
|
|
|
assert_response :success
|
|
|
|
assert_nil @controller.params[:internal]
|
|
|
|
end
|
2005-11-07 23:26:34 -05:00
|
|
|
end
|