2008-01-05 08:33:00 -05: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
|
|
|
|
|
2009-04-07 10:16:48 -04:00
|
|
|
class InfoControllerTest < ActionController::TestCase
|
|
|
|
tests Rails::InfoController
|
|
|
|
|
2005-11-07 23:26:34 -05:00
|
|
|
def setup
|
2010-07-01 11:07:48 -04:00
|
|
|
Rails.application.routes.draw do
|
2012-04-24 23:32:09 -04:00
|
|
|
get '/rails/info/properties' => "rails/info#properties"
|
2012-05-23 15:42:28 -04:00
|
|
|
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
|
|
|
|
assert_select 'p'
|
|
|
|
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
|
2009-04-07 10:16:48 -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
|
|
|
|
exact_count = -> { JSON(response.body)['exact'].size }
|
|
|
|
|
2015-03-17 02:45:14 -04:00
|
|
|
get :routes, params: { path: 'rails/info/route' }
|
2015-02-23 11:51:30 -05:00
|
|
|
assert exact_count.call == 0, 'should not match incomplete routes'
|
|
|
|
|
2015-03-17 02:45:14 -04:00
|
|
|
get :routes, params: { path: 'rails/info/routes' }
|
2015-02-23 11:51:30 -05:00
|
|
|
assert exact_count.call == 1, 'should match complete routes'
|
2015-03-17 02:45:14 -04:00
|
|
|
|
|
|
|
get :routes, params: { path: 'rails/info/routes.html' }
|
2015-02-23 11:51:30 -05:00
|
|
|
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 }
|
|
|
|
|
2015-03-17 02:45:14 -04:00
|
|
|
get :routes, params: { path: 'rails/info' }
|
2015-02-23 11:51:30 -05:00
|
|
|
assert fuzzy_count.call == 2, 'should match incomplete routes'
|
|
|
|
|
2015-03-17 02:45:14 -04:00
|
|
|
get :routes, params: { path: 'rails/info/routes' }
|
2015-02-23 11:51:30 -05:00
|
|
|
assert fuzzy_count.call == 1, 'should match complete routes'
|
2015-03-17 02:45:14 -04:00
|
|
|
|
|
|
|
get :routes, params: { path: 'rails/info/routes.html' }
|
2015-02-23 11:51:30 -05:00
|
|
|
assert fuzzy_count.call == 0, 'should match optional parts of route literally'
|
|
|
|
end
|
2005-11-07 23:26:34 -05:00
|
|
|
end
|