rails/railties/test/rails_info_controller_test.rb
Yoshiyuki Hirano b6e4305c3b Add JSON support to rails properties route (/rails/info/properties).
Added json format, like this:

    {
      "Rails version": "6.0.0.alpha",
      "Ruby version": "2.5.1-p57 (x86_64-darwin17)",
      "RubyGems version": "2.7.6",
      "Rack version": "2.0.6",
      "JavaScript Runtime": "Node.js (V8)",
      "Middleware": ["Rack::Sendfile", "ActionDispatch::Static", "ActionDispatch::Executor", "ActiveSupport::Cache::Strategy::LocalCache::Middleware", "Rack::Runtime", "Rack::MethodOverride", "ActionDispatch::RequestId", "ActionDispatch::RemoteIp", "Sprockets::Rails::QuietAssets", "Rails::Rack::Logger", "ActionDispatch::ShowExceptions", "WebConsole::Middleware", "ActionDispatch::DebugExceptions", "ActionDispatch::Reloader", "ActionDispatch::Callbacks", "ActiveRecord::Migration::CheckPending", "ActionDispatch::Cookies", "ActionDispatch::Session::CookieStore", "ActionDispatch::Flash", "ActionDispatch::ContentSecurityPolicy::Middleware", "Rack::Head", "Rack::ConditionalGet", "Rack::ETag", "Rack::TempfileReaper"],
      "Application root": "/path/to/app",
      "Environment": "development",
      "Database adapter": "sqlite3",
      "Database schema version": 0
    }
2018-11-07 08:14:09 +09:00

95 lines
2.6 KiB
Ruby

# frozen_string_literal: true
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 json with properties" do
get :properties, format: :json
assert_equal Rails::Info.to_json, response.body
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
test "internal routes do not have a default params[:internal] value" do
get :properties
assert_response :success
assert_nil @controller.params[:internal]
end
end