Sha256: 3cde49e5fdc674d1003ab9c426f8390c4bc87d325117c333b3c79622b5eab9d9
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 KB
Contents
require 'helper' class TwitterOutputTest < Test::Unit::TestCase def setup Fluent::Test.setup end CONFIG = %[ consumer_key CONSUMER_KEY consumer_secret CONSUMER_SECRET oauth_token OAUTH_TOKEN oauth_token_secret OAUTH_TOKEN_SECRET ] def create_driver(conf=CONFIG,tag='test') Fluent::Test::OutputTestDriver.new(Fluent::TwitterOutput, tag).configure(conf) end def test_configure assert_raise(Fluent::ConfigError) { d = create_driver('') } d = create_driver %[ consumer_key CONSUMER_KEY consumer_secret CONSUMER_SECRET oauth_token OAUTH_TOKEN oauth_token_secret OAUTH_TOKEN_SECRET ] d.instance.inspect assert_equal 'CONSUMER_KEY', d.instance.consumer_key assert_equal 'CONSUMER_SECRET', d.instance.consumer_secret assert_equal 'OAUTH_TOKEN', d.instance.oauth_token assert_equal 'OAUTH_TOKEN_SECRET', d.instance.oauth_token_secret end def test_emit d1 = create_driver(CONFIG, 'input.access') time = Time.parse("2012-01-02 13:14:15").to_i d1.run do d1.emit({'message' => 'sample message'}) end emits = d1.emits assert_equal 0, emits.length end end
Version data entries
4 entries across 4 versions & 1 rubygems