1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/rails_info_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

72 lines
1.8 KiB
Ruby

# frozen_string_literal: true
require "abstract_unit"
class InfoTest < ActiveSupport::TestCase
def test_property_with_block_swallows_exceptions_and_ignores_property
assert_nothing_raised do
Rails::Info.module_eval do
property("Bogus") { raise }
end
end
assert_not property_defined?("Bogus")
end
def test_property_with_string
Rails::Info.module_eval do
property "Hello", "World"
end
assert_property "Hello", "World"
end
def test_property_with_block
Rails::Info.module_eval do
property("Goodbye") { "World" }
end
assert_property "Goodbye", "World"
end
def test_rails_version
assert_property "Rails version",
File.read(File.realpath("../../RAILS_VERSION", __dir__)).chomp
end
def test_html_includes_middleware
Rails::Info.module_eval do
property "Middleware", ["Rack::Lock", "Rack::Static"]
end
html = Rails::Info.to_html
assert_includes html, '<tr><td class="name">Middleware</td>'
properties.value_for("Middleware").each do |value|
assert_includes html, "<li>#{CGI.escapeHTML(value)}</li>"
end
end
def test_json_includes_middleware
Rails::Info.module_eval do
property "Middleware", ["Rack::Lock", "Rack::Static"]
end
hash = JSON.parse(Rails::Info.to_json)
assert_includes hash.keys, "Middleware"
properties.value_for("Middleware").each do |value|
assert_includes hash["Middleware"], value
end
end
private
def properties
Rails::Info.properties
end
def property_defined?(property_name)
properties.names.include? property_name
end
def assert_property(property_name, value)
raise "Property #{property_name.inspect} not defined" unless
property_defined? property_name
assert_equal value, properties.value_for(property_name)
end
end