-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
require "helper" | ||
require "fluent/test/driver/input" | ||
|
||
class SqlInputStateFileTest < Test::Unit::TestCase | ||
def setup | ||
Fluent::Test.setup | ||
end | ||
|
||
def teardown | ||
end | ||
|
||
CONFIG = %[ | ||
adapter postgresql | ||
host localhost | ||
port 5432 | ||
database fluentd_test | ||
username fluentd | ||
password fluentd | ||
state_file /tmp/sql_state | ||
schema_search_path public | ||
tag_prefix db | ||
<table> | ||
table messages | ||
tag logs | ||
update_column updated_at | ||
time_column updated_at | ||
</table> | ||
] | ||
|
||
def create_driver(conf = CONFIG) | ||
Fluent::Test::Driver::Input.new(Fluent::Plugin::SQLInput).configure(conf) | ||
end | ||
|
||
def test_configure | ||
d = create_driver | ||
expected = { | ||
host: "localhost", | ||
port: 5432, | ||
adapter: "postgresql", | ||
database: "fluentd_test", | ||
username: "fluentd", | ||
password: "fluentd", | ||
schema_search_path: "public", | ||
tag_prefix: "db" | ||
} | ||
actual = { | ||
host: d.instance.host, | ||
port: d.instance.port, | ||
adapter: d.instance.adapter, | ||
database: d.instance.database, | ||
username: d.instance.username, | ||
password: d.instance.password, | ||
schema_search_path: d.instance.schema_search_path, | ||
tag_prefix: d.instance.tag_prefix | ||
} | ||
assert_equal(expected, actual) | ||
tables = d.instance.instance_variable_get(:@tables) | ||
assert_equal(1, tables.size) | ||
messages = tables.first | ||
assert_equal("messages", messages.table) | ||
assert_equal("logs", messages.tag) | ||
end | ||
|
||
def test_message | ||
d = create_driver(CONFIG + "select_interval 1") | ||
Message.create!(message: "message 1") | ||
Message.create!(message: "message 2") | ||
Message.create!(message: "message 3") | ||
|
||
d.end_if do | ||
d.record_count >= 3 | ||
end | ||
d.run | ||
|
||
assert_equal("db.logs", d.events[0][0]) | ||
expected = [ | ||
[d.events[0][1], "message 1"], | ||
[d.events[1][1], "message 2"], | ||
[d.events[2][1], "message 3"], | ||
] | ||
actual = [ | ||
[Fluent::EventTime.parse(d.events[0][2]["updated_at"]), d.events[0][2]["message"]], | ||
[Fluent::EventTime.parse(d.events[1][2]["updated_at"]), d.events[1][2]["message"]], | ||
[Fluent::EventTime.parse(d.events[2][2]["updated_at"]), d.events[2][2]["message"]], | ||
] | ||
assert_equal(expected, actual) | ||
end | ||
|
||
class Message < ActiveRecord::Base | ||
end | ||
end |