mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
80c7038bbc
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 commit8eaffe7e89
, reversing changes made to133e0ba33d
.
60 lines
1.5 KiB
Ruby
60 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
|