Sha256: 53c23dc1adde5b5963947f260c5c6e2c8c79dfab4da085cfbbcce5944711f57c

Contents?: true

Size: 780 Bytes

Versions: 17

Compression:

Stored size: 780 Bytes

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

class MarshalConfigTest < Minitest::Test
  include MultiverseHelpers

  JSON_MISSING_MESSAGE = "JSON marshaller requested, but the 'json' gem was not available."

  def setup
    NewRelic::Agent.stubs(:logger).returns(NewRelic::Agent::MemoryLogger.new)
  end

  def test_agent_does_not_start_with_no_json_marshaller
    assert_equal false, NewRelic::Agent.instance.agent_should_start?
    assert logger_whined_about_json?, "Log should've contained: #{JSON_MISSING_MESSAGE}"
  end

  def logger_whined_about_json?
    NewRelic::Agent.logger.messages.flatten.any? { |msg| msg.to_s.include? JSON_MISSING_MESSAGE }
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
newrelic_rpm-3.18.1.330 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.18.0.329 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.17.2.327 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.17.1.326 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.17.0.325 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.16.3.323 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.16.2.321 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.16.1.320 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.16.0.318 test/multiverse/suites/no_json/marshal_config_test.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/newrelic_rpm-3.15.2.317/test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.15.2.317 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.15.1.316 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.15.0.314 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.14.3.313 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.14.2.312 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.14.1.311 test/multiverse/suites/no_json/marshal_config_test.rb
newrelic_rpm-3.14.0.305 test/multiverse/suites/no_json/marshal_config_test.rb