rails/railties/test/rails_info_test.rb
Kasper Timm Hansen 80c7038bbc
Revert "Merge pull request #34387 from yhirano55/rails_info_properties_json"
We had a discussion on the Core team and we don't want to expose this information
as a JSON endpoint and not by default.

It doesn't make sense to expose this JSON locally and this controller is only
accessible in dev, so the proposed access from a production app seems off.

This reverts commit 8eaffe7e89719ac62ff29c2e4208cfbeb1cd1c38, reversing
changes made to 133e0ba33db5887b047c9ac8233e5b414657bca5.
2019-01-08 22:21:20 +01:00

61 lines
1.5 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
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