Sha256: 9578834faa3733b0cfb3f8cec552ca13831d62c978f8ff9480cc06f46bd67125

Contents?: true

Size: 992 Bytes

Versions: 7

Compression:

Stored size: 992 Bytes

Contents

$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require './test/replica_sets/rs_test_helper'

# NOTE: This test expects a replica set of three nodes to be running on RS.host,
# on ports TEST_PORT, RS.ports[1], and TEST + 2.
class ConnectionStringTest < Test::Unit::TestCase
  include Mongo

  def teardown
    RS.restart_killed_nodes
    @conn.close if @conn
  end

  def test_connect_with_connection_string
    @conn = Connection.from_uri("mongodb://#{RS.host}:#{RS.ports[0]},#{RS.host}:#{RS.ports[1]}?replicaset=#{RS.name}")
    assert @conn.is_a?(ReplSetConnection)
    assert @conn.connected?
  end

  def test_connect_with_full_connection_string
    @conn = Connection.from_uri("mongodb://#{RS.host}:#{RS.ports[0]},#{RS.host}:#{RS.ports[1]}?replicaset=#{RS.name};safe=true;w=2;fsync=true;slaveok=true")
    assert @conn.is_a?(ReplSetConnection)
    assert @conn.connected?
    assert_equal 2, @conn.safe[:w]
    assert @conn.safe[:fsync]
    assert @conn.read_pool
  end

end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
jmongo-1.1.5 test/replica_sets/connection_string_test.rb
jmongo-1.1.4 test/replica_sets/connection_string_test.rb
jmongo-1.1.3 test/replica_sets/connection_string_test.rb
jmongo-1.1.2 test/replica_sets/connection_string_test.rb
jmongo-1.1.1 test/replica_sets/connection_string_test.rb
jmongo-1.1.0 test/replica_sets/connection_string_test.rb
mongo-1.4.0 test/replica_sets/connection_string_test.rb