Sha256: c2634362d5d3627ac6a6c99ed8d77bff99c513900a95f61281fdbb8600ebdb5b

Contents?: true

Size: 1.91 KB

Versions: 17

Compression:

Stored size: 1.91 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 rescue_action(e) raise e end
  
  ActionController::Routing::Routes.draw do | map |
    map.connect ':controller/:action.:format'
  end
  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_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

17 entries across 17 versions & 1 rubygems

Version Path
newrelic_rpm-2.12.2.beta2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.12.2.beta test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.12.1 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.12.1.alpha test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.12.0 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.3 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.2.beta2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.2.beta test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.1 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.0.beta2 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.11.0.beta test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.10.8 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.10.6 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.10.5 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.10.4 test/new_relic/agent/agent_test_controller.rb
newrelic_rpm-2.10.3 test/new_relic/agent/agent_test_controller.rb