Sha256: dec42b5c72d5509794135bb80938440db1e1d338d777f7e011402dee1f19164b

Contents?: true

Size: 911 Bytes

Versions: 47

Compression:

Stored size: 911 Bytes

Contents

require_relative '../helper'
require 'fluent/test'

class ObjectSpaceInputTest < Test::Unit::TestCase
  class FailObject
    def self.class
      raise "error"
    end
  end

  def setup
    Fluent::Test.setup
  end

  TESTCONFIG = %[
    emit_interval 1
    tag t1
    top 2
  ]

  def create_driver(conf=TESTCONFIG)
    Fluent::Test::InputTestDriver.new(Fluent::ObjectSpaceInput).configure(conf)
  end

  def test_configure
    d = create_driver
    assert_equal 1, d.instance.emit_interval
    assert_equal "t1", d.instance.tag
    assert_equal 2, d.instance.top
  end

  def test_emit
    d = create_driver

    time = Time.parse("2011-01-02 13:14:15").to_i

    d.expected_emits_length = 2
    d.run

    emits = d.emits
    assert_equal true, emits.length > 0

    emits.each { |tag, time, record|
      assert_equal d.instance.tag, tag
      assert_equal d.instance.top, record.keys.size
    }
  end
end

Version data entries

47 entries across 47 versions & 2 rubygems

Version Path
fluentd-0.12.43 test/plugin/test_in_object_space.rb
fluentd-0.12.42 test/plugin/test_in_object_space.rb
fluentd-0.12.41 test/plugin/test_in_object_space.rb
fluentd-0.12.40 test/plugin/test_in_object_space.rb
fluentd-0.12.39 test/plugin/test_in_object_space.rb
fluentd-0.12.38 test/plugin/test_in_object_space.rb
fluentd-0.12.37 test/plugin/test_in_object_space.rb
fluentd-0.12.36 test/plugin/test_in_object_space.rb
fluent-plugin-detect-memb-exceptions-0.0.2 vendor/bundle/ruby/2.0.0/gems/fluentd-0.12.35/test/plugin/test_in_object_space.rb
fluent-plugin-detect-memb-exceptions-0.0.1 vendor/bundle/ruby/2.0.0/gems/fluentd-0.12.35/test/plugin/test_in_object_space.rb
fluentd-0.12.35 test/plugin/test_in_object_space.rb
fluentd-0.12.34 test/plugin/test_in_object_space.rb
fluentd-0.12.33 test/plugin/test_in_object_space.rb
fluentd-0.12.32 test/plugin/test_in_object_space.rb
fluentd-0.12.31 test/plugin/test_in_object_space.rb
fluentd-0.12.30 test/plugin/test_in_object_space.rb
fluentd-0.12.29 test/plugin/test_in_object_space.rb
fluentd-0.12.28 test/plugin/test_in_object_space.rb
fluentd-0.12.27 test/plugin/test_in_object_space.rb
fluentd-0.12.26 test/plugin/test_in_object_space.rb