Sha256: c1df468bf3852019857bfab00b7ddeeb23f9c0266a6f45d38579c9542d4784b7

Contents?: true

Size: 1.44 KB

Versions: 15

Compression:

Stored size: 1.44 KB

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 the local host.
class ReplicaSetPooledInsertTest < Test::Unit::TestCase
  include Mongo

  def setup
    @conn = ReplSetConnection.new([RS.host, RS.ports[0]], [RS.host, RS.ports[1]],
      [RS.host, RS.ports[2]], :pool_size => 10, :timeout => 5)
    @db = @conn.db(MONGO_TEST_DB)
    @db.drop_collection("test-sets")
    @coll = @db.collection("test-sets")
  end

  def teardown
    RS.restart_killed_nodes
  end

  def test_insert
    expected_results = [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    @coll.save({:a => -1}, :safe => true)

    RS.kill_primary

    threads = []
    10.times do |i|
      threads[i] = Thread.new do
        rescue_connection_failure do
          @coll.save({:a => i}, :safe => true)
        end
      end
    end

    # Restart the old master and wait for sync
    RS.restart_killed_nodes
    sleep(1)
    results = []

    rescue_connection_failure do
      @coll.find.each {|r| results << r}
      expected_results.each do |a|
        assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a}"
      end
    end

    @coll.save({:a => 10}, :safe => true)
    @coll.find.each {|r| results << r}
    (expected_results + [10]).each do |a|
      assert results.any? {|r| r['a'] == a}, "Could not find record for a => #{a} on second find"
    end
  end

end

Version data entries

15 entries across 15 versions & 4 rubygems

Version Path
vanity-1.7.1 vendor/ruby/1.9.1/gems/mongo-1.3.1/test/replica_sets/pooled_insert_test.rb
jonbell-mongo-1.3.1.2 test/replica_sets/pooled_insert_test.rb
mongo-lyon-1.2.4 test/replica_sets/pooled_insert_test.rb
mongo-1.3.1 test/replica_sets/pooled_insert_test.rb
mongo-1.3.0 test/replica_sets/pooled_insert_test.rb
mongo-1.3.0.rc0 test/replica_sets/pooled_insert_test.rb
mongo-1.2.4 test/replica_sets/pooled_insert_test.rb
mongo-1.2.3 test/replica_sets/pooled_insert_test.rb
mongo-1.2.2 test/replica_sets/pooled_insert_test.rb
mongo-1.2.1 test/replica_sets/pooled_insert_test.rb
mongo-1.2.0 test/replica_sets/pooled_insert_test.rb
mongo-1.2.rc2 test/replica_sets/pooled_insert_test.rb
mongo-1.2.rc1 test/replica_sets/pooled_insert_test.rb
mongo-1.2.rc0 test/replica_sets/pooled_insert_test.rb
mongo-1.1.5 test/replica_sets/pooled_insert_test.rb