2016-05-17 15:21:37 +00:00
|
|
|
require_relative '../jdbc_spec_helper'
|
2016-05-03 14:28:01 +00:00
|
|
|
|
2016-05-17 15:21:37 +00:00
|
|
|
describe 'logstash-output-jdbc: mysql', if: ENV['JDBC_MYSQL_JAR'] do
|
|
|
|
include_context 'rspec setup'
|
|
|
|
include_context 'when initializing'
|
|
|
|
include_context 'when outputting messages'
|
2016-05-03 14:28:01 +00:00
|
|
|
|
|
|
|
let(:jdbc_jar_env) do
|
|
|
|
'JDBC_MYSQL_JAR'
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:jdbc_settings) do
|
2016-05-17 15:21:37 +00:00
|
|
|
{
|
|
|
|
'driver_class' => 'com.mysql.jdbc.Driver',
|
|
|
|
'connection_string' => 'jdbc:mysql://localhost/logstash_output_jdbc_test?user=root',
|
|
|
|
'driver_jar_path' => ENV[jdbc_jar_env],
|
|
|
|
'statement' => ["insert into #{jdbc_test_table} (created_at, message) values(?, ?)", '@timestamp', 'message']
|
2016-05-03 14:28:01 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|