Sha256: 5ea7ec33e8630fc8af8cbc69f3532bfcddc5de82494c95d0b00abdf4cd9546ff

Contents?: true

Size: 805 Bytes

Versions: 3

Compression:

Stored size: 805 Bytes

Contents

require_relative '../jdbc_spec_helper'

describe 'logstash-output-jdbc: derby', if: ENV['JDBC_DERBY_JAR'] do
  include_context 'rspec setup'
  include_context 'when initializing'
  include_context 'when outputting messages'

  let(:jdbc_jar_env) do
    'JDBC_DERBY_JAR'
  end

  let(:jdbc_create_table) do
    "CREATE table #{jdbc_test_table} (created_at timestamp not null, message varchar(512) not null, message_sprintf varchar(512) not null, static_int int not null, static_bit boolean not null)"
  end
 
  let(:jdbc_settings) do
    {
      'driver_class' => 'org.apache.derby.jdbc.EmbeddedDriver',
      'connection_string' => 'jdbc:derby:memory:testdb;create=true',
      'driver_jar_path' => ENV[jdbc_jar_env],
      'statement' => jdbc_statement,
      'max_flush_exceptions' => 1
    }
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
logstash-output-jdbc-0.3.1-java spec/outputs/jdbc_derby_spec.rb
logstash-output-jdbc-0.3.0-java spec/outputs/jdbc_derby_spec.rb
logstash-output-jdbc-0.3.0.pre-java spec/outputs/jdbc_derby_spec.rb