Sha256: fa16ed1af5ae3b6124f82f826486095c9345e4468b3b66d23d0d77c2b0ce70aa

Contents?: true

Size: 631 Bytes

Versions: 5

Compression:

Stored size: 631 Bytes

Contents

require 'fluent/test'

class ObjectSpaceInputTest < Test::Unit::TestCase
  def setup
    Fluent::Test.setup
  end

  CONFIG = %[
    emit_interval 1
    tag t1
  ]

  def create_driver(conf=CONFIG)
    Fluent::Test::InputTestDriver.new(Fluent::GCStatInput).configure(conf)
  end

  def test_configure
    d = create_driver
    assert_equal(1, d.instance.emit_interval)
    assert_equal("t1", d.instance.tag)
  end

  def test_emit
    stat = GC.stat
    stub(GC).stat { stat }

    d = create_driver
    d.run do
      sleep 2
    end

    emits = d.emits
    assert(emits.length > 0)
    assert_equal(stat, emits[0][2])
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fluentd-0.10.36 test/plugin/in_gc_stat.rb
fluentd-0.10.35 test/plugin/in_gc_stat.rb
fluentd-0.10.34 test/plugin/in_gc_stat.rb
fluentd-0.10.33 test/plugin/in_gc_stat.rb
fluentd-0.10.32 test/plugin/in_gc_stat.rb