Sha256: 62860140d5bbd2125c7dc5ee190f32a88c6111909a784eef8be651d452a5b0cd
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 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. # These tests are intended to exercise the basic marshalling functionality of # the agent in it's different permutations (Ruby and JSON) module MarshallingTestCases def test_sends_metrics NewRelic::Agent.record_metric('Boo', 42) transmit_data result = $collector.calls_for('metric_data') assert_equal 1, result.length assert_includes result.first.metric_names, 'Boo' end def test_sends_errors NewRelic::Agent.notice_error(StandardError.new("Boom")) transmit_data result = $collector.calls_for('error_data') assert_equal 1, result.length assert_equal 1, result.first.errors.length assert_equal "StandardError", result.first.errors.first.exception_class_name end def test_sends_transaction_traces with_config(:'transaction_tracer.transaction_threshold' => -1.0) do Transactioner.new.do_it end transmit_data result = $collector.calls_for('transaction_sample_data') assert_equal 1, result.length assert_equal "Controller/MarshallingTestCases::Transactioner/do_it", result.first.metric_name end class Transactioner include NewRelic::Agent::Instrumentation::ControllerInstrumentation def do_it end add_transaction_tracer :do_it end def transmit_data NewRelic::Agent.instance.send(:transmit_data) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
newrelic_rpm-3.9.7.266 | test/new_relic/marshalling_test_cases.rb |
newrelic_rpm-3.9.6.257 | test/new_relic/marshalling_test_cases.rb |