Sha256: 020ea4f84c6aac3159fa45147dae6251b45912d0cc407705dcc95a3f1a75a77f

Contents?: true

Size: 1.81 KB

Versions: 13

Compression:

Stored size: 1.81 KB

Contents

# Defining a test controller class with a superclass, used to
# verify correct attribute inheritence
class NewRelic::Agent::SuperclassController <  ActionController::Base
  def base_action
    render :text => 'none'
  end
end
# This is a controller class used in testing controller instrumentation
class NewRelic::Agent::AgentTestController < NewRelic::Agent::SuperclassController
  filter_parameter_logging :social_security_number

  @@headers_to_add = nil

  def index
    sleep params['wait'].to_i if params['wait']
    render :text => params.inspect
  end
  def _filter_parameters(params)
    filter_parameters params
  end
  def action_inline
    render(:inline => "<%= 'foo' %>fah")
  end

  def action_to_render
    render :text => params.inspect
  end
  def action_to_ignore
    render :text => 'unmeasured'
  end
  def action_to_ignore_apdex
    render :text => 'unmeasured'
  end
  before_filter :oops, :only => :action_with_before_filter_error
  def action_with_before_filter_error
    render :text => 'nothing'
  end
  def oops
    raise "error in before filter"
  end
  class TestException < RuntimeError
  end

  def rescue_action_locally(exception)
    if exception.is_a? TestException
      raise "error in the handler"
    end
  end
  def action_with_error
    raise "error in action"
  end
  def entry_action
    perform_action_with_newrelic_trace('internal_action') do
      internal_action
    end
  end

  def self.set_some_headers(hash_of_headers)
    @@headers_to_add ||= {}
    @@headers_to_add.merge!(hash_of_headers)
  end

  def self.clear_headers
    @@headers_to_add = nil
  end

  def newrelic_request_headers
    @@headers_to_add ||= {}
  end

  private
  def internal_action
    perform_action_with_newrelic_trace(:name => 'internal_traced_action', :force => true) do
      render :text => 'internal action'
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
ghazel-newrelic_rpm-3.1.0.1 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.beta5 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.beta4 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.djlogging2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.djlogging test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.beta3 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.beta2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.0.1 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.1.0.beta1 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.0.0 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.0.0.beta2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-3.0.0.beta1 test/new_relic/agent/agent_test_controller.rb