Sha256: db21402de4cb062763455b712089fab70cb0ded7d361f4b4bd59fadb8f975014

Contents?: true

Size: 1.44 KB

Versions: 9

Compression:

Stored size: 1.44 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.

class NewRelic::TransactionSample::SubTest < Test::Unit::TestCase
  def setup
    @t = NewRelic::TransactionSample.new

    @t.params[:test] = "hi"

    s1 = @t.create_segment(1.0, "controller")

    @t.root_segment.add_called_segment(s1)

    s2 = @t.create_segment(2.0, "AR1")

    s2.params[:test] = "test"

    s1.add_called_segment(s2)
    s2.end_trace 3.0
    s1.end_trace 4.0

    s3 = @t.create_segment(4.0, "post_filter")
    @t.root_segment.add_called_segment(s3)
    s3.end_trace 6.0

    s4 = @t.create_segment(6.0, "post_filter")
    @t.root_segment.add_called_segment(s4)
    s4.end_trace 7.0
  end

  def test_exclusive_duration
    s1 = @t.root_segment.called_segments.first
    assert_equal 3.0, s1.duration
    assert_equal 2.0, s1.exclusive_duration
  end

  def test_count_the_segments
    assert_equal 4, @t.count_segments
  end

  def test_truncate_long_samples
    @t.truncate(2)
    assert_equal 2, @t.count_segments

    @t = NewRelic::TransactionSample.new

    s1 = @t.create_segment(1.0, "controller")
    @t.root_segment.add_called_segment(s1)

    100.times do
      s1.add_called_segment(@t.create_segment(1.0, "segment"))
    end
    assert_equal 101, @t.count_segments
    @t.truncate(2)
    assert_equal 2, @t.count_segments
    assert_equal 101, @t.params[:segment_count]
  end

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
newrelic_rpm-3.6.2.96 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.2.90.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.1.88 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.1.87 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.1.86.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.1.85.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.0.83 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.0.78 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.0.74.beta test/new_relic/transaction_sample_subtest_test.rb