Sha256: 59ad8e79a717f02508c572ded283015495c1b6394bf109bb921b64b53a8a15c7

Contents?: true

Size: 1.72 KB

Versions: 4

Compression:

Stored size: 1.72 KB

Contents

require 'test_helper'

class MongoTailInputTest < Test::Unit::TestCase
  def setup
    Fluent::Test.setup
    require 'fluent/plugin/in_mongo_tail'
  end

  CONFIG = %[
    type mongo_tail
    database test
    collection log
    tag_key tag
    time_key time
    id_store_file /tmp/fluent_mongo_last_id
  ]

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

  def test_configure
    d = create_driver
    assert_equal('localhost', d.instance.host)
    assert_equal(27017, d.instance.port)
    assert_equal('test', d.instance.database)
    assert_equal('log', d.instance.collection)
    assert_equal('tag', d.instance.tag_key)
    assert_equal('time', d.instance.time_key)
    assert_equal('/tmp/fluent_mongo_last_id', d.instance.id_store_file)
  end
  
  def test_url_configration
    config = %[
    type mongo_tail
    url mongodb://localhost:27017/test
    collection log
    tag_key tag
    time_key time
    id_store_file /tmp/fluent_mongo_last_id
    ]
    
    d = create_driver(config)
    assert_equal("mongodb://localhost:27017/test", d.instance.url)
    assert_nil(d.instance.database)
    assert_equal('log', d.instance.collection)
    assert_equal('tag', d.instance.tag_key)
    assert_equal('time', d.instance.time_key)
    assert_equal('/tmp/fluent_mongo_last_id', d.instance.id_store_file)
  end

  def test_url_and_database_can_not_exist
    config = %[
    type mongo_tail
    url mongodb://localhost:27017/test
    database test2
    collection log
    tag_key tag
    time_key time
    id_store_file /tmp/fluent_mongo_last_id
    ]

    assert_raises Fluent::ConfigError do
      create_driver(config)
    end
  end

  def test_emit
    # TODO: write actual code
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fluent-plugin-mongo-0.7.11 test/plugin/in_mongo_tail.rb
fluent-plugin-mongo-0.7.10 test/plugin/in_mongo_tail.rb
fluent-plugin-mongo-0.7.9 test/plugin/in_mongo_tail.rb
fluent-plugin-mongo-0.7.8 test/plugin/in_mongo_tail.rb