Sha256: 06e7eb83d8f52b7ad07589ca507d12978aae3f1ec0339af1172c917b14ee92db

Contents?: true

Size: 928 Bytes

Versions: 78

Compression:

Stored size: 928 Bytes

Contents

require 'test_helper'

class CassandraObject::ConnectionTest < CassandraObject::TestCase
  class TestObject < CassandraObject::Base
  end

  test 'establish_connection' do
    TestObject.establish_connection(
      keyspace: 'place_directory_development',
      servers: '192.168.0.100:9160',
      thrift: {'timeout' => 10}
    )

    assert_not_equal CassandraObject::Base.connection, TestObject.connection
    assert_equal 'place_directory_development', TestObject.connection.keyspace
    assert_equal ["192.168.0.100:9160"], TestObject.connection.servers
    assert_equal 10, TestObject.connection.thrift_client_options[:timeout]
  end

  test 'establish_connection defaults' do
    TestObject.establish_connection(
      keyspace: 'place_directory_development'
    )

    assert_equal 'place_directory_development', TestObject.connection.keyspace
    assert_equal ["127.0.0.1:9160"], TestObject.connection.servers
  end
end

Version data entries

78 entries across 78 versions & 2 rubygems

Version Path
gotime-cassandra_object-2.8.4 test/connection_test.rb
gotime-cassandra_object-2.8.3 test/connection_test.rb
gotime-cassandra_object-2.8.2 test/connection_test.rb
gotime-cassandra_object-2.8.1 test/connection_test.rb
gotime-cassandra_object-2.8.0 test/connection_test.rb
gotime-cassandra_object-2.7.12 test/connection_test.rb
gotime-cassandra_object-2.7.11 test/connection_test.rb
gotime-cassandra_object-2.7.10 test/connection_test.rb
gotime-cassandra_object-2.7.9 test/connection_test.rb
gotime-cassandra_object-2.7.8 test/connection_test.rb
gotime-cassandra_object-2.7.7 test/connection_test.rb
gotime-cassandra_object-2.7.6 test/connection_test.rb
gotime-cassandra_object-2.7.5 test/connection_test.rb
gotime-cassandra_object-2.7.4 test/connection_test.rb
gotime-cassandra_object-2.7.3 test/connection_test.rb
gotime-cassandra_object-2.7.2 test/connection_test.rb
gotime-cassandra_object-2.7.1 test/connection_test.rb
gotime-cassandra_object-2.7.0 test/connection_test.rb
gotime-cassandra_object-2.6.4 test/connection_test.rb
gotime-cassandra_object-2.6.3 test/connection_test.rb