require 'helper' class MysqlReplicatorInputTest < Test::Unit::TestCase def setup Fluent::Test.setup end CONFIG = %[ host localhost port 3306 interval 30 tag input.mysql query SELECT id, text from search_text record_hostname yes ] def create_driver(conf=CONFIG,tag='test') Fluent::Test::OutputTestDriver.new(Fluent::MysqlReplicatorInput, tag).configure(conf) end def test_configure assert_raise(Fluent::ConfigError) { d = create_driver('') } d = create_driver %[ host localhost port 3306 interval 30 tag input.mysql query SELECT id, text from search_text ] d.instance.inspect assert_equal 'localhost', d.instance.host assert_equal 3306, d.instance.port assert_equal 30, d.instance.interval assert_equal 'input.mysql', d.instance.tag end end