Sha256: 74896a75f43a2e7f684675bedd87cf70857017928f888d8c8fa37cd7ec87946a
Contents?: true
Size: 1.13 KB
Versions: 1
Compression:
Stored size: 1.13 KB
Contents
# coding: utf-8 require 'helper' class TypetalkOutputTest < Test::Unit::TestCase def setup Fluent::Test.setup end CONFIG = %[ type typetalk client_id 123456 client_secret secret topic_id 1 message notice : %s out_keys message ] def create_driver(conf = CONFIG, tag = 'test') Fluent::Test::BufferedOutputTestDriver.new(Fluent::TypetalkOutput, tag).configure(conf) end def test_configure d = create_driver() assert_equal d.instance.typetalk.instance_variable_get(:@client_id), '123456' assert_equal d.instance.typetalk.instance_variable_get(:@client_secret), 'secret' end def test_write d = create_driver() stub(d.instance.typetalk).post(1, 'notice : test1') d.emit({'message' => 'test1'}) d.run() end def test_template d = create_driver(CONFIG, 'warn') d.instance.message = "notice : %s [%s]" d.instance.out_keys = ["message", "time"] stub(d.instance.typetalk).post(1, "notice : test1 [1399910738]") ENV["TZ"]="Asia/Tokyo" t = Time.strptime('2014-05-13 01:05:38', '%Y-%m-%d %T') d.emit({'message' => 'test1'}, t) d.run() end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-typetalk-0.0.2 | test/plugin/test_out_typetalk.rb |