Sha256: 36113a2392e46d686ca1db838bf848014ae325ca21fc552e43bf708d3fb554ee

Contents?: true

Size: 1.72 KB

Versions: 3

Compression:

Stored size: 1.72 KB

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.

require File.expand_path(File.join(File.dirname(__FILE__),'..', 'test_helper'))

# Test logic around detecting or configuring framework
class FrameworkTest < MiniTest::Unit::TestCase

  def setup

    # muck with this constant which forces the agent to load the
    # NewRelic::Control::Frameworks::Test control so we can test the logic used
    # to load the appropriate control object.
    @old_newrelic_test_const = ::NewRelic::TEST
    ::NewRelic.send(:remove_const, :TEST)

    NewRelic::Agent.shutdown
    NewRelic::Agent.reset_config

    # don't bomb out trying to load frameworks that don't exist.
    NewRelic::Control.stubs(:new_instance).returns(stub :init_plugin => nil)
  end

  def teardown
    # Put things back how we found them
    ::NewRelic.send(:const_set, :TEST,  @old_newrelic_test_const)
    NewRelic::Agent.reset_config
  end

  def test_detects_framework_via_loaded_libraries
    class << self
      module ::Merb
        module Plugins
        end
      end
    end
    assert_equal :merb, NewRelic::Agent.config[:framework]
  ensure
    Object.send(:remove_const, :Merb)
  end

  def test_detects_framework_via_ENV_NEW_RELIC_FRAMEWORK
    ENV['NEW_RELIC_FRAMEWORK'] = "foobared"
    NewRelic::Agent.reset_config
    assert_equal :foobared, NewRelic::Agent.config[:framework]
  ensure
    ENV['NEW_RELIC_FRAMEWORK'] = nil
  end

  def test_detects_framework_via_ENV_NEWRELIC_FRAMEWORK
    ENV['NEWRELIC_FRAMEWORK'] = "bazbang"
    NewRelic::Agent.reset_config
    assert_equal :bazbang, NewRelic::Agent.config[:framework]
  ensure
    ENV['NEWRELIC_FRAMEWORK'] = nil
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-3.7.2.195 test/new_relic/framework_test.rb
newrelic_rpm-3.7.2.192 test/new_relic/framework_test.rb
newrelic_rpm-3.7.2.190.beta test/new_relic/framework_test.rb