1165 lines
42 KiB
Python
1165 lines
42 KiB
Python
# Copyright 2011-2012 10gen, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""Test the replica_set_connection module."""
|
|
|
|
# TODO: anywhere we wait for refresh in tests, consider just refreshing w/ sync
|
|
|
|
import copy
|
|
import datetime
|
|
import os
|
|
import signal
|
|
import socket
|
|
import sys
|
|
import time
|
|
import thread
|
|
import threading
|
|
import traceback
|
|
import unittest
|
|
|
|
sys.path[0:0] = [""]
|
|
|
|
from nose.plugins.skip import SkipTest
|
|
|
|
from bson.son import SON
|
|
from bson.tz_util import utc
|
|
from pymongo.mongo_client import MongoClient
|
|
from pymongo.read_preferences import ReadPreference
|
|
from pymongo.mongo_replica_set_client import MongoReplicaSetClient
|
|
from pymongo.mongo_replica_set_client import PRIMARY, SECONDARY, OTHER
|
|
from pymongo.mongo_replica_set_client import _partition_node, have_gevent
|
|
from pymongo.database import Database
|
|
from pymongo.pool import SocketInfo
|
|
from pymongo.errors import (AutoReconnect,
|
|
ConfigurationError,
|
|
ConnectionFailure,
|
|
InvalidName,
|
|
OperationFailure, InvalidOperation)
|
|
from test import version, port, pair
|
|
from test.utils import (
|
|
delay, assertReadFrom, assertReadFromAll, read_from_which_host,
|
|
assertRaisesExactly, TestRequestMixin, one, server_started_with_auth,
|
|
pools_from_rs_client, get_pool)
|
|
|
|
|
|
class TestReplicaSetClientAgainstStandalone(unittest.TestCase):
|
|
"""This is a funny beast -- we want to run tests for MongoReplicaSetClient
|
|
but only if the database at DB_IP and DB_PORT is a standalone.
|
|
"""
|
|
def setUp(self):
|
|
client = MongoClient(pair)
|
|
response = client.admin.command('ismaster')
|
|
if 'setName' in response:
|
|
raise SkipTest("Connected to a replica set, not a standalone mongod")
|
|
|
|
def test_connect(self):
|
|
self.assertRaises(ConfigurationError, MongoReplicaSetClient,
|
|
pair, replicaSet='anything',
|
|
connectTimeoutMS=600)
|
|
|
|
|
|
class TestReplicaSetClientBase(unittest.TestCase):
|
|
def setUp(self):
|
|
client = MongoClient(pair)
|
|
response = client.admin.command('ismaster')
|
|
if 'setName' in response:
|
|
self.name = str(response['setName'])
|
|
self.w = len(response['hosts'])
|
|
self.hosts = set([_partition_node(h)
|
|
for h in response["hosts"]])
|
|
self.arbiters = set([_partition_node(h)
|
|
for h in response.get("arbiters", [])])
|
|
|
|
repl_set_status = client.admin.command('replSetGetStatus')
|
|
primary_info = [
|
|
m for m in repl_set_status['members']
|
|
if m['stateStr'] == 'PRIMARY'
|
|
][0]
|
|
|
|
self.primary = _partition_node(primary_info['name'])
|
|
self.secondaries = [
|
|
_partition_node(m['name']) for m in repl_set_status['members']
|
|
if m['stateStr'] == 'SECONDARY'
|
|
]
|
|
else:
|
|
raise SkipTest("Not connected to a replica set")
|
|
|
|
def _get_client(self, **kwargs):
|
|
return MongoReplicaSetClient(pair,
|
|
replicaSet=self.name,
|
|
**kwargs)
|
|
|
|
|
|
class TestReplicaSetClient(TestReplicaSetClientBase, TestRequestMixin):
|
|
def test_init_disconnected(self):
|
|
c = self._get_client(_connect=False)
|
|
|
|
# No errors
|
|
c.seeds
|
|
c.hosts
|
|
c.arbiters
|
|
c.is_mongos
|
|
c.max_pool_size
|
|
c.use_greenlets
|
|
c.get_document_class
|
|
c.tz_aware
|
|
c.max_bson_size
|
|
c.auto_start_request
|
|
self.assertFalse(c.primary)
|
|
self.assertFalse(c.secondaries)
|
|
|
|
c.pymongo_test.test.find_one() # Auto-connect for read.
|
|
self.assertTrue(c.primary)
|
|
self.assertTrue(c.secondaries)
|
|
|
|
c = self._get_client(_connect=False)
|
|
c.pymongo_test.test.update({}, {}) # Auto-connect for write.
|
|
self.assertTrue(c.primary)
|
|
|
|
c = self._get_client(_connect=False)
|
|
c.pymongo_test.test.insert({}) # Auto-connect for write.
|
|
self.assertTrue(c.primary)
|
|
|
|
c = self._get_client(_connect=False)
|
|
c.pymongo_test.test.remove({}) # Auto-connect for write.
|
|
self.assertTrue(c.primary)
|
|
|
|
c = MongoReplicaSetClient(
|
|
"somedomainthatdoesntexist.org", replicaSet="rs",
|
|
connectTimeoutMS=1, _connect=False)
|
|
|
|
self.assertRaises(ConnectionFailure, c.pymongo_test.test.find_one)
|
|
|
|
def test_init_disconnected_with_auth_failure(self):
|
|
c = MongoReplicaSetClient(
|
|
"mongodb://user:pass@somedomainthatdoesntexist", replicaSet="rs",
|
|
connectTimeoutMS=1, _connect=False)
|
|
|
|
self.assertRaises(ConnectionFailure, c.pymongo_test.test.find_one)
|
|
|
|
def test_init_disconnected_with_auth(self):
|
|
c = self._get_client()
|
|
c.admin.system.users.remove({})
|
|
c.pymongo_test.system.users.remove({})
|
|
|
|
try:
|
|
c.admin.add_user("admin", "pass")
|
|
c.admin.authenticate("admin", "pass")
|
|
c.pymongo_test.add_user("user", "pass")
|
|
|
|
# Auth with lazy connection.
|
|
host = one(self.hosts)
|
|
uri = "mongodb://user:pass@%s:%d/pymongo_test?replicaSet=%s" % (
|
|
host[0], host[1], self.name)
|
|
|
|
authenticated_client = MongoReplicaSetClient(uri, _connect=False)
|
|
authenticated_client.pymongo_test.test.find_one()
|
|
|
|
# Wrong password.
|
|
bad_uri = "mongodb://user:wrong@%s:%d/pymongo_test?replicaSet=%s" % (
|
|
host[0], host[1], self.name)
|
|
|
|
bad_client = MongoReplicaSetClient(bad_uri, _connect=False)
|
|
self.assertRaises(
|
|
OperationFailure, bad_client.pymongo_test.test.find_one)
|
|
|
|
finally:
|
|
# Clean up.
|
|
c.admin.system.users.remove({})
|
|
c.pymongo_test.system.users.remove({})
|
|
|
|
def test_connect(self):
|
|
assertRaisesExactly(ConnectionFailure, MongoReplicaSetClient,
|
|
"somedomainthatdoesntexist.org:27017",
|
|
replicaSet=self.name,
|
|
connectTimeoutMS=600)
|
|
self.assertRaises(ConfigurationError, MongoReplicaSetClient,
|
|
pair, replicaSet='fdlksjfdslkjfd')
|
|
self.assertTrue(MongoReplicaSetClient(pair, replicaSet=self.name))
|
|
|
|
def test_repr(self):
|
|
client = self._get_client()
|
|
|
|
# Quirk: the RS client makes a frozenset of hosts from a dict's keys,
|
|
# so we must do the same to achieve the same order.
|
|
host_dict = dict([(host, 1) for host in self.hosts])
|
|
hosts_set = frozenset(host_dict)
|
|
hosts_repr = ', '.join([
|
|
repr(unicode('%s:%s' % host)) for host in hosts_set])
|
|
|
|
self.assertEqual(repr(client),
|
|
"MongoReplicaSetClient([%s])" % hosts_repr)
|
|
|
|
def test_properties(self):
|
|
c = MongoReplicaSetClient(pair, replicaSet=self.name)
|
|
c.admin.command('ping')
|
|
self.assertEqual(c.primary, self.primary)
|
|
self.assertEqual(c.hosts, self.hosts)
|
|
self.assertEqual(c.arbiters, self.arbiters)
|
|
self.assertEqual(c.max_pool_size, 100)
|
|
self.assertEqual(c.document_class, dict)
|
|
self.assertEqual(c.tz_aware, False)
|
|
|
|
# Make sure MRSC's properties are copied to Database and Collection
|
|
for obj in c, c.pymongo_test, c.pymongo_test.test:
|
|
self.assertEqual(obj.read_preference, ReadPreference.PRIMARY)
|
|
self.assertEqual(obj.tag_sets, [{}])
|
|
self.assertEqual(obj.secondary_acceptable_latency_ms, 15)
|
|
self.assertEqual(obj.slave_okay, False)
|
|
self.assertEqual(obj.write_concern, {})
|
|
|
|
cursor = c.pymongo_test.test.find()
|
|
self.assertEqual(
|
|
ReadPreference.PRIMARY, cursor._Cursor__read_preference)
|
|
self.assertEqual([{}], cursor._Cursor__tag_sets)
|
|
self.assertEqual(15, cursor._Cursor__secondary_acceptable_latency_ms)
|
|
self.assertEqual(False, cursor._Cursor__slave_okay)
|
|
c.close()
|
|
|
|
tag_sets = [{'dc': 'la', 'rack': '2'}, {'foo': 'bar'}]
|
|
c = MongoReplicaSetClient(pair, replicaSet=self.name, max_pool_size=25,
|
|
document_class=SON, tz_aware=True,
|
|
slaveOk=False,
|
|
read_preference=ReadPreference.SECONDARY,
|
|
tag_sets=copy.deepcopy(tag_sets),
|
|
secondary_acceptable_latency_ms=77)
|
|
c.admin.command('ping')
|
|
self.assertEqual(c.primary, self.primary)
|
|
self.assertEqual(c.hosts, self.hosts)
|
|
self.assertEqual(c.arbiters, self.arbiters)
|
|
self.assertEqual(c.max_pool_size, 25)
|
|
self.assertEqual(c.document_class, SON)
|
|
self.assertEqual(c.tz_aware, True)
|
|
|
|
for obj in c, c.pymongo_test, c.pymongo_test.test:
|
|
self.assertEqual(obj.read_preference, ReadPreference.SECONDARY)
|
|
self.assertEqual(obj.tag_sets, tag_sets)
|
|
self.assertEqual(obj.secondary_acceptable_latency_ms, 77)
|
|
self.assertEqual(obj.slave_okay, False)
|
|
self.assertEqual(obj.safe, True)
|
|
|
|
cursor = c.pymongo_test.test.find()
|
|
self.assertEqual(
|
|
ReadPreference.SECONDARY, cursor._Cursor__read_preference)
|
|
self.assertEqual(tag_sets, cursor._Cursor__tag_sets)
|
|
self.assertEqual(77, cursor._Cursor__secondary_acceptable_latency_ms)
|
|
self.assertEqual(False, cursor._Cursor__slave_okay)
|
|
|
|
cursor = c.pymongo_test.test.find(
|
|
read_preference=ReadPreference.NEAREST,
|
|
tag_sets=[{'dc':'ny'}, {}],
|
|
secondary_acceptable_latency_ms=123)
|
|
|
|
self.assertEqual(
|
|
ReadPreference.NEAREST, cursor._Cursor__read_preference)
|
|
self.assertEqual([{'dc':'ny'}, {}], cursor._Cursor__tag_sets)
|
|
self.assertEqual(123, cursor._Cursor__secondary_acceptable_latency_ms)
|
|
self.assertEqual(False, cursor._Cursor__slave_okay)
|
|
|
|
if version.at_least(c, (1, 7, 4)):
|
|
self.assertEqual(c.max_bson_size, 16777216)
|
|
else:
|
|
self.assertEqual(c.max_bson_size, 4194304)
|
|
c.close()
|
|
|
|
def test_use_greenlets(self):
|
|
self.assertFalse(
|
|
MongoReplicaSetClient(pair, replicaSet=self.name).use_greenlets)
|
|
|
|
if have_gevent:
|
|
self.assertTrue(MongoReplicaSetClient(
|
|
pair, replicaSet=self.name, use_greenlets=True).use_greenlets)
|
|
|
|
def test_get_db(self):
|
|
client = self._get_client()
|
|
|
|
def make_db(base, name):
|
|
return base[name]
|
|
|
|
self.assertRaises(InvalidName, make_db, client, "")
|
|
self.assertRaises(InvalidName, make_db, client, "te$t")
|
|
self.assertRaises(InvalidName, make_db, client, "te.t")
|
|
self.assertRaises(InvalidName, make_db, client, "te\\t")
|
|
self.assertRaises(InvalidName, make_db, client, "te/t")
|
|
self.assertRaises(InvalidName, make_db, client, "te st")
|
|
|
|
self.assertTrue(isinstance(client.test, Database))
|
|
self.assertEqual(client.test, client["test"])
|
|
self.assertEqual(client.test, Database(client, "test"))
|
|
client.close()
|
|
|
|
def test_auto_reconnect_exception_when_read_preference_is_secondary(self):
|
|
c = self._get_client()
|
|
db = c.pymongo_test
|
|
|
|
def raise_socket_error(*args, **kwargs):
|
|
raise socket.error
|
|
|
|
old_sendall = socket.socket.sendall
|
|
socket.socket.sendall = raise_socket_error
|
|
|
|
try:
|
|
cursor = db.test.find(read_preference=ReadPreference.SECONDARY)
|
|
self.assertRaises(AutoReconnect, cursor.next)
|
|
finally:
|
|
socket.socket.sendall = old_sendall
|
|
|
|
def test_lazy_auth_raises_operation_failure(self):
|
|
# Check if we have the prerequisites to run this test.
|
|
c = self._get_client()
|
|
if not server_started_with_auth(c):
|
|
raise SkipTest('Authentication is not enabled on server')
|
|
|
|
lazy_client = MongoReplicaSetClient(
|
|
"mongodb://user:wrong@%s/pymongo_test" % pair,
|
|
replicaSet=self.name,
|
|
_connect=False)
|
|
|
|
assertRaisesExactly(
|
|
OperationFailure, lazy_client.test.collection.find_one)
|
|
|
|
def test_operations(self):
|
|
c = self._get_client()
|
|
|
|
# Check explicitly for a case we've commonly hit in tests:
|
|
# a replica set is started with a tiny oplog, a previous
|
|
# test does a big insert that leaves the secondaries
|
|
# permanently "RECOVERING", and our insert(w=self.w) hangs
|
|
# forever.
|
|
rs_status = c.admin.command('replSetGetStatus')
|
|
members = rs_status['members']
|
|
self.assertFalse(
|
|
[m for m in members if m['stateStr'] == 'RECOVERING'],
|
|
"Replica set is recovering, try a larger oplogSize next time"
|
|
)
|
|
|
|
db = c.pymongo_test
|
|
db.test.remove({})
|
|
self.assertEqual(0, db.test.count())
|
|
db.test.insert({'foo': 'x'}, w=self.w, wtimeout=10000)
|
|
self.assertEqual(1, db.test.count())
|
|
|
|
cursor = db.test.find()
|
|
doc = cursor.next()
|
|
self.assertEqual('x', doc['foo'])
|
|
# Ensure we read from the primary
|
|
self.assertEqual(c.primary, cursor._Cursor__connection_id)
|
|
|
|
cursor = db.test.find(read_preference=ReadPreference.SECONDARY)
|
|
doc = cursor.next()
|
|
self.assertEqual('x', doc['foo'])
|
|
# Ensure we didn't read from the primary
|
|
self.assertTrue(cursor._Cursor__connection_id in c.secondaries)
|
|
|
|
self.assertEqual(1, db.test.count())
|
|
db.test.remove({})
|
|
self.assertEqual(0, db.test.count())
|
|
db.test.drop()
|
|
c.close()
|
|
|
|
def test_database_names(self):
|
|
client = self._get_client()
|
|
|
|
client.pymongo_test.test.save({"dummy": u"object"})
|
|
client.pymongo_test_mike.test.save({"dummy": u"object"})
|
|
|
|
dbs = client.database_names()
|
|
self.assertTrue("pymongo_test" in dbs)
|
|
self.assertTrue("pymongo_test_mike" in dbs)
|
|
client.close()
|
|
|
|
def test_drop_database(self):
|
|
client = self._get_client()
|
|
|
|
self.assertRaises(TypeError, client.drop_database, 5)
|
|
self.assertRaises(TypeError, client.drop_database, None)
|
|
|
|
client.pymongo_test.test.save({"dummy": u"object"})
|
|
dbs = client.database_names()
|
|
self.assertTrue("pymongo_test" in dbs)
|
|
client.drop_database("pymongo_test")
|
|
dbs = client.database_names()
|
|
self.assertTrue("pymongo_test" not in dbs)
|
|
|
|
client.pymongo_test.test.save({"dummy": u"object"})
|
|
dbs = client.database_names()
|
|
self.assertTrue("pymongo_test" in dbs)
|
|
client.drop_database(client.pymongo_test)
|
|
dbs = client.database_names()
|
|
self.assertTrue("pymongo_test" not in dbs)
|
|
client.close()
|
|
|
|
def test_copy_db(self):
|
|
c = self._get_client()
|
|
# We test copy twice; once starting in a request and once not. In
|
|
# either case the copy should succeed (because it starts a request
|
|
# internally) and should leave us in the same state as before the copy.
|
|
c.start_request()
|
|
|
|
self.assertRaises(TypeError, c.copy_database, 4, "foo")
|
|
self.assertRaises(TypeError, c.copy_database, "foo", 4)
|
|
|
|
self.assertRaises(InvalidName, c.copy_database, "foo", "$foo")
|
|
|
|
c.pymongo_test.test.drop()
|
|
c.drop_database("pymongo_test1")
|
|
c.drop_database("pymongo_test2")
|
|
|
|
c.pymongo_test.test.insert({"foo": "bar"})
|
|
|
|
self.assertFalse("pymongo_test1" in c.database_names())
|
|
self.assertFalse("pymongo_test2" in c.database_names())
|
|
|
|
c.copy_database("pymongo_test", "pymongo_test1")
|
|
# copy_database() didn't accidentally end the request
|
|
self.assertTrue(c.in_request())
|
|
|
|
self.assertTrue("pymongo_test1" in c.database_names())
|
|
self.assertEqual("bar", c.pymongo_test1.test.find_one()["foo"])
|
|
|
|
c.end_request()
|
|
|
|
self.assertFalse(c.in_request())
|
|
c.copy_database("pymongo_test", "pymongo_test2", pair)
|
|
# copy_database() didn't accidentally restart the request
|
|
self.assertFalse(c.in_request())
|
|
|
|
time.sleep(1)
|
|
|
|
self.assertTrue("pymongo_test2" in c.database_names())
|
|
self.assertEqual("bar", c.pymongo_test2.test.find_one()["foo"])
|
|
|
|
if version.at_least(c, (1, 3, 3, 1)):
|
|
c.drop_database("pymongo_test1")
|
|
|
|
c.pymongo_test.add_user("mike", "password")
|
|
|
|
self.assertRaises(OperationFailure, c.copy_database,
|
|
"pymongo_test", "pymongo_test1",
|
|
username="foo", password="bar")
|
|
self.assertFalse("pymongo_test1" in c.database_names())
|
|
|
|
self.assertRaises(OperationFailure, c.copy_database,
|
|
"pymongo_test", "pymongo_test1",
|
|
username="mike", password="bar")
|
|
self.assertFalse("pymongo_test1" in c.database_names())
|
|
|
|
c.copy_database("pymongo_test", "pymongo_test1",
|
|
username="mike", password="password")
|
|
self.assertTrue("pymongo_test1" in c.database_names())
|
|
time.sleep(2)
|
|
self.assertEqual("bar", c.pymongo_test1.test.find_one()["foo"])
|
|
c.close()
|
|
|
|
def test_get_default_database(self):
|
|
host = one(self.hosts)
|
|
uri = "mongodb://%s:%d/foo?replicaSet=%s" % (
|
|
host[0], host[1], self.name)
|
|
|
|
c = MongoReplicaSetClient(uri, _connect=False)
|
|
self.assertEqual(Database(c, 'foo'), c.get_default_database())
|
|
|
|
def test_get_default_database_error(self):
|
|
host = one(self.hosts)
|
|
# URI with no database.
|
|
uri = "mongodb://%s:%d/?replicaSet=%s" % (
|
|
host[0], host[1], self.name)
|
|
|
|
c = MongoReplicaSetClient(uri, _connect=False)
|
|
self.assertRaises(ConfigurationError, c.get_default_database)
|
|
|
|
def test_get_default_database_with_authsource(self):
|
|
# Ensure we distinguish database name from authSource.
|
|
host = one(self.hosts)
|
|
uri = "mongodb://%s:%d/foo?replicaSet=%s&authSource=src" % (
|
|
host[0], host[1], self.name)
|
|
|
|
c = MongoReplicaSetClient(uri, _connect=False)
|
|
self.assertEqual(Database(c, 'foo'), c.get_default_database())
|
|
|
|
def test_iteration(self):
|
|
client = self._get_client()
|
|
|
|
def iterate():
|
|
[a for a in client]
|
|
|
|
self.assertRaises(TypeError, iterate)
|
|
client.close()
|
|
|
|
def test_disconnect(self):
|
|
c = self._get_client()
|
|
coll = c.pymongo_test.bar
|
|
|
|
c.disconnect()
|
|
c.disconnect()
|
|
|
|
coll.count()
|
|
|
|
c.disconnect()
|
|
c.disconnect()
|
|
|
|
coll.count()
|
|
|
|
def test_fork(self):
|
|
# Test using a client before and after a fork.
|
|
if sys.platform == "win32":
|
|
raise SkipTest("Can't fork on Windows")
|
|
|
|
try:
|
|
from multiprocessing import Process, Pipe
|
|
except ImportError:
|
|
raise SkipTest("No multiprocessing module")
|
|
|
|
db = self._get_client().pymongo_test
|
|
|
|
# Failure occurs if the client is used before the fork
|
|
db.test.find_one()
|
|
|
|
def loop(pipe):
|
|
while True:
|
|
try:
|
|
db.test.insert({"a": "b"})
|
|
for _ in db.test.find():
|
|
pass
|
|
except:
|
|
traceback.print_exc()
|
|
pipe.send(True)
|
|
os._exit(1)
|
|
|
|
cp1, cc1 = Pipe()
|
|
cp2, cc2 = Pipe()
|
|
|
|
p1 = Process(target=loop, args=(cc1,))
|
|
p2 = Process(target=loop, args=(cc2,))
|
|
|
|
p1.start()
|
|
p2.start()
|
|
|
|
p1.join(1)
|
|
p2.join(1)
|
|
|
|
p1.terminate()
|
|
p2.terminate()
|
|
|
|
p1.join()
|
|
p2.join()
|
|
|
|
cc1.close()
|
|
cc2.close()
|
|
|
|
# recv will only have data if the subprocess failed
|
|
try:
|
|
cp1.recv()
|
|
self.fail()
|
|
except EOFError:
|
|
pass
|
|
try:
|
|
cp2.recv()
|
|
self.fail()
|
|
except EOFError:
|
|
pass
|
|
|
|
db.connection.close()
|
|
|
|
def test_fork_and_schedule_refresh(self):
|
|
# After a fork the monitor thread is gone.
|
|
# Verify that schedule_refresh throws InvalidOperation.
|
|
if sys.platform == "win32":
|
|
raise SkipTest("Can't fork on Windows")
|
|
|
|
try:
|
|
from multiprocessing import Process, Pipe
|
|
except ImportError:
|
|
raise SkipTest("No multiprocessing module")
|
|
|
|
client = self._get_client()
|
|
db = client.pymongo_test
|
|
|
|
def f(pipe):
|
|
try:
|
|
# Trigger a refresh.
|
|
self.assertRaises(InvalidOperation, client.disconnect)
|
|
except:
|
|
traceback.print_exc()
|
|
pipe.send(True)
|
|
os._exit(1)
|
|
|
|
cp, cc = Pipe()
|
|
p = Process(target=f, args=(cc,))
|
|
p.start()
|
|
p.join(10)
|
|
p.terminate()
|
|
p.join()
|
|
cc.close()
|
|
|
|
# recv will only have data if the subprocess failed
|
|
try:
|
|
cp.recv()
|
|
self.fail()
|
|
except EOFError:
|
|
pass
|
|
|
|
db.connection.close()
|
|
|
|
def test_document_class(self):
|
|
c = self._get_client()
|
|
db = c.pymongo_test
|
|
db.test.insert({"x": 1})
|
|
|
|
self.assertEqual(dict, c.document_class)
|
|
self.assertTrue(isinstance(db.test.find_one(), dict))
|
|
self.assertFalse(isinstance(db.test.find_one(), SON))
|
|
|
|
c.document_class = SON
|
|
|
|
self.assertEqual(SON, c.document_class)
|
|
self.assertTrue(isinstance(db.test.find_one(), SON))
|
|
self.assertFalse(isinstance(db.test.find_one(as_class=dict), SON))
|
|
c.close()
|
|
|
|
c = self._get_client(document_class=SON)
|
|
db = c.pymongo_test
|
|
|
|
self.assertEqual(SON, c.document_class)
|
|
self.assertTrue(isinstance(db.test.find_one(), SON))
|
|
self.assertFalse(isinstance(db.test.find_one(as_class=dict), SON))
|
|
|
|
c.document_class = dict
|
|
|
|
self.assertEqual(dict, c.document_class)
|
|
self.assertTrue(isinstance(db.test.find_one(), dict))
|
|
self.assertFalse(isinstance(db.test.find_one(), SON))
|
|
c.close()
|
|
|
|
def test_network_timeout_validation(self):
|
|
c = self._get_client(socketTimeoutMS=10 * 1000)
|
|
self.assertEqual(10, c._MongoReplicaSetClient__net_timeout)
|
|
|
|
c = self._get_client(socketTimeoutMS=None)
|
|
self.assertEqual(None, c._MongoReplicaSetClient__net_timeout)
|
|
|
|
self.assertRaises(ConfigurationError,
|
|
self._get_client, socketTimeoutMS=0)
|
|
|
|
self.assertRaises(ConfigurationError,
|
|
self._get_client, socketTimeoutMS=-1)
|
|
|
|
self.assertRaises(ConfigurationError,
|
|
self._get_client, socketTimeoutMS=1e10)
|
|
|
|
self.assertRaises(ConfigurationError,
|
|
self._get_client, socketTimeoutMS='foo')
|
|
|
|
# network_timeout is gone from MongoReplicaSetClient, remains in
|
|
# deprecated ReplicaSetConnection
|
|
self.assertRaises(ConfigurationError,
|
|
self._get_client, network_timeout=10)
|
|
|
|
def test_network_timeout(self):
|
|
no_timeout = self._get_client()
|
|
timeout_sec = 1
|
|
timeout = self._get_client(socketTimeoutMS=timeout_sec*1000)
|
|
|
|
no_timeout.pymongo_test.drop_collection("test")
|
|
no_timeout.pymongo_test.test.insert({"x": 1})
|
|
|
|
# A $where clause that takes a second longer than the timeout
|
|
where_func = delay(1 + timeout_sec)
|
|
|
|
def get_x(db):
|
|
doc = db.test.find().where(where_func).next()
|
|
return doc["x"]
|
|
self.assertEqual(1, get_x(no_timeout.pymongo_test))
|
|
self.assertRaises(ConnectionFailure, get_x, timeout.pymongo_test)
|
|
|
|
def get_x_timeout(db, t):
|
|
doc = db.test.find(network_timeout=t).where(where_func).next()
|
|
return doc["x"]
|
|
self.assertEqual(1, get_x_timeout(timeout.pymongo_test, None))
|
|
self.assertRaises(ConnectionFailure, get_x_timeout,
|
|
no_timeout.pymongo_test, 0.1)
|
|
no_timeout.close()
|
|
timeout.close()
|
|
|
|
def test_socket_error_marks_member_down(self):
|
|
# A socket error (besides timeout) changes a member's state to "down".
|
|
c = self._get_client()
|
|
collection = c.pymongo_test.test
|
|
collection.insert({}, w=self.w)
|
|
previous_writer = c._MongoReplicaSetClient__rs_state.writer
|
|
|
|
def kill_sockets():
|
|
for pool in pools_from_rs_client(c):
|
|
for socket_info in pool.sockets:
|
|
socket_info.sock.close()
|
|
|
|
kill_sockets()
|
|
|
|
# Query the primary.
|
|
self.assertRaises(ConnectionFailure, collection.find_one)
|
|
|
|
# primary_member returns None if primary is marked "down".
|
|
rs_state = c._MongoReplicaSetClient__rs_state
|
|
|
|
self.assertEqual(None, rs_state.writer)
|
|
self.assertFalse(rs_state.get(previous_writer).up)
|
|
|
|
collection.find_one() # No error, we recovered.
|
|
rs_state = c._MongoReplicaSetClient__rs_state
|
|
self.assertTrue(rs_state.get(rs_state.writer).up)
|
|
|
|
kill_sockets()
|
|
|
|
# Query secondaries. Client marks them "down" as they fail, and tries
|
|
# up to 3 of them before raising.
|
|
self.assertRaises(
|
|
ConnectionFailure,
|
|
collection.find_one,
|
|
read_preference=SECONDARY)
|
|
|
|
# Secondaries were either removed from state or marked "down".
|
|
rs_state = c._MongoReplicaSetClient__rs_state
|
|
for secondary_host in rs_state.secondaries:
|
|
self.assertFalse(rs_state.get(secondary_host).up)
|
|
|
|
def test_timeout_does_not_mark_member_down(self):
|
|
# If a query times out, the RS client shouldn't mark the member "down".
|
|
c = self._get_client(socketTimeoutMS=3000)
|
|
collection = c.pymongo_test.test
|
|
collection.insert({}, w=self.w)
|
|
|
|
# Query the primary.
|
|
self.assertRaises(
|
|
ConnectionFailure,
|
|
collection.find_one,
|
|
{'$where': delay(5)})
|
|
|
|
# primary_member returns None if primary is marked "down".
|
|
rs_state = c._MongoReplicaSetClient__rs_state
|
|
self.assertTrue(rs_state.primary_member)
|
|
|
|
collection.find_one() # No error.
|
|
|
|
# Query the secondary.
|
|
self.assertRaises(
|
|
ConnectionFailure,
|
|
collection.find_one,
|
|
{'$where': delay(5)},
|
|
read_preference=SECONDARY)
|
|
|
|
rs_state = c._MongoReplicaSetClient__rs_state
|
|
secondary_host = one(rs_state.secondaries)
|
|
self.assertTrue(rs_state.get(secondary_host).up)
|
|
collection.find_one(read_preference=SECONDARY) # No error.
|
|
|
|
def test_waitQueueTimeoutMS(self):
|
|
client = self._get_client(waitQueueTimeoutMS=2000)
|
|
pool = get_pool(client)
|
|
self.assertEqual(pool.wait_queue_timeout, 2)
|
|
|
|
def test_waitQueueMultiple(self):
|
|
client = self._get_client(max_pool_size=3, waitQueueMultiple=2)
|
|
pool = get_pool(client)
|
|
self.assertEqual(pool.wait_queue_multiple, 2)
|
|
self.assertEqual(pool._socket_semaphore.waiter_semaphore.counter, 6)
|
|
|
|
def test_tz_aware(self):
|
|
self.assertRaises(ConfigurationError, MongoReplicaSetClient,
|
|
tz_aware='foo', replicaSet=self.name)
|
|
|
|
aware = self._get_client(tz_aware=True)
|
|
naive = self._get_client()
|
|
aware.pymongo_test.drop_collection("test")
|
|
|
|
now = datetime.datetime.utcnow()
|
|
aware.pymongo_test.test.insert({"x": now})
|
|
time.sleep(1)
|
|
|
|
self.assertEqual(None, naive.pymongo_test.test.find_one()["x"].tzinfo)
|
|
self.assertEqual(utc, aware.pymongo_test.test.find_one()["x"].tzinfo)
|
|
self.assertEqual(
|
|
aware.pymongo_test.test.find_one()["x"].replace(tzinfo=None),
|
|
naive.pymongo_test.test.find_one()["x"])
|
|
|
|
def test_ipv6(self):
|
|
try:
|
|
client = MongoReplicaSetClient("[::1]:%d" % (port,),
|
|
replicaSet=self.name)
|
|
except:
|
|
# Either mongod was started without --ipv6
|
|
# or the OS doesn't support it (or both).
|
|
raise SkipTest("No IPv6")
|
|
|
|
# Try a few simple things
|
|
client = MongoReplicaSetClient("mongodb://[::1]:%d" % (port,),
|
|
replicaSet=self.name)
|
|
client = MongoReplicaSetClient("mongodb://[::1]:%d/?safe=true;"
|
|
"replicaSet=%s" % (port, self.name))
|
|
client = MongoReplicaSetClient("[::1]:%d,localhost:"
|
|
"%d" % (port, port),
|
|
replicaSet=self.name)
|
|
client = MongoReplicaSetClient("localhost:%d,[::1]:"
|
|
"%d" % (port, port),
|
|
replicaSet=self.name)
|
|
client.pymongo_test.test.save({"dummy": u"object"})
|
|
client.pymongo_test_bernie.test.save({"dummy": u"object"})
|
|
|
|
dbs = client.database_names()
|
|
self.assertTrue("pymongo_test" in dbs)
|
|
self.assertTrue("pymongo_test_bernie" in dbs)
|
|
client.close()
|
|
|
|
def _test_kill_cursor_explicit(self, read_pref):
|
|
c = self._get_client(read_preference=read_pref)
|
|
db = c.pymongo_test
|
|
db.drop_collection("test")
|
|
|
|
test = db.test
|
|
test.insert([{"i": i} for i in range(20)], w=1 + len(c.secondaries))
|
|
|
|
# Partially evaluate cursor so it's left alive, then kill it
|
|
cursor = test.find().batch_size(10)
|
|
cursor.next()
|
|
self.assertNotEqual(0, cursor.cursor_id)
|
|
|
|
connection_id = cursor._Cursor__connection_id
|
|
writer = c._MongoReplicaSetClient__rs_state.writer
|
|
if read_pref == ReadPreference.PRIMARY:
|
|
msg = "Expected cursor's connection_id to be %s, got %s" % (
|
|
writer, connection_id)
|
|
|
|
self.assertEqual(connection_id, writer, msg)
|
|
else:
|
|
self.assertNotEqual(connection_id, writer,
|
|
"Expected cursor's connection_id not to be primary")
|
|
|
|
cursor_id = cursor.cursor_id
|
|
|
|
# Cursor dead on server - trigger a getMore on the same cursor_id and
|
|
# check that the server returns an error.
|
|
cursor2 = cursor.clone()
|
|
cursor2._Cursor__id = cursor_id
|
|
|
|
if (sys.platform.startswith('java') or
|
|
'PyPy' in sys.version):
|
|
# Explicitly kill cursor.
|
|
cursor.close()
|
|
else:
|
|
# Implicitly kill it in CPython.
|
|
del cursor
|
|
|
|
self.assertRaises(OperationFailure, lambda: list(cursor2))
|
|
|
|
def test_kill_cursor_explicit_primary(self):
|
|
self._test_kill_cursor_explicit(ReadPreference.PRIMARY)
|
|
|
|
def test_kill_cursor_explicit_secondary(self):
|
|
self._test_kill_cursor_explicit(ReadPreference.SECONDARY)
|
|
|
|
def test_interrupt_signal(self):
|
|
if sys.platform.startswith('java'):
|
|
raise SkipTest("Can't test interrupts in Jython")
|
|
|
|
# Test fix for PYTHON-294 -- make sure client closes its socket if it
|
|
# gets an interrupt while waiting to recv() from it.
|
|
c = self._get_client()
|
|
db = c.pymongo_test
|
|
|
|
# A $where clause which takes 1.5 sec to execute
|
|
where = delay(1.5)
|
|
|
|
# Need exactly 1 document so find() will execute its $where clause once
|
|
db.drop_collection('foo')
|
|
db.foo.insert({'_id': 1})
|
|
|
|
old_signal_handler = None
|
|
|
|
try:
|
|
# Platform-specific hacks for raising a KeyboardInterrupt on the main
|
|
# thread while find() is in-progress: On Windows, SIGALRM is unavailable
|
|
# so we use second thread. In our Bamboo setup on Linux, the thread
|
|
# technique causes an error in the test at sock.recv():
|
|
# TypeError: 'int' object is not callable
|
|
# We don't know what causes this in Bamboo, so we hack around it.
|
|
if sys.platform == 'win32':
|
|
def interrupter():
|
|
time.sleep(0.25)
|
|
|
|
# Raises KeyboardInterrupt in the main thread
|
|
thread.interrupt_main()
|
|
|
|
thread.start_new_thread(interrupter, ())
|
|
else:
|
|
# Convert SIGALRM to SIGINT -- it's hard to schedule a SIGINT for one
|
|
# second in the future, but easy to schedule SIGALRM.
|
|
def sigalarm(num, frame):
|
|
raise KeyboardInterrupt
|
|
|
|
old_signal_handler = signal.signal(signal.SIGALRM, sigalarm)
|
|
signal.alarm(1)
|
|
|
|
raised = False
|
|
try:
|
|
# Will be interrupted by a KeyboardInterrupt.
|
|
db.foo.find({'$where': where}).next()
|
|
except KeyboardInterrupt:
|
|
raised = True
|
|
|
|
# Can't use self.assertRaises() because it doesn't catch system
|
|
# exceptions
|
|
self.assertTrue(raised, "Didn't raise expected ConnectionFailure")
|
|
|
|
# Raises AssertionError due to PYTHON-294 -- Mongo's response to the
|
|
# previous find() is still waiting to be read on the socket, so the
|
|
# request id's don't match.
|
|
self.assertEqual(
|
|
{'_id': 1},
|
|
db.foo.find().next()
|
|
)
|
|
finally:
|
|
if old_signal_handler:
|
|
signal.signal(signal.SIGALRM, old_signal_handler)
|
|
|
|
def test_operation_failure_without_request(self):
|
|
# Ensure MongoReplicaSetClient doesn't close socket after it gets an
|
|
# error response to getLastError. PYTHON-395.
|
|
c = self._get_client(auto_start_request=False)
|
|
pool = get_pool(c)
|
|
self.assertEqual(1, len(pool.sockets))
|
|
old_sock_info = iter(pool.sockets).next()
|
|
c.pymongo_test.test.drop()
|
|
c.pymongo_test.test.insert({'_id': 'foo'})
|
|
self.assertRaises(
|
|
OperationFailure,
|
|
c.pymongo_test.test.insert, {'_id': 'foo'})
|
|
|
|
self.assertEqual(1, len(pool.sockets))
|
|
new_sock_info = iter(pool.sockets).next()
|
|
|
|
self.assertEqual(old_sock_info, new_sock_info)
|
|
c.close()
|
|
|
|
def test_operation_failure_with_request(self):
|
|
# Ensure MongoReplicaSetClient doesn't close socket after it gets an
|
|
# error response to getLastError. PYTHON-395.
|
|
c = self._get_client(auto_start_request=True)
|
|
c.pymongo_test.test.find_one()
|
|
pool = get_pool(c)
|
|
|
|
# Client reserved a socket for this thread
|
|
self.assertTrue(isinstance(pool._get_request_state(), SocketInfo))
|
|
|
|
old_sock_info = pool._get_request_state()
|
|
c.pymongo_test.test.drop()
|
|
c.pymongo_test.test.insert({'_id': 'foo'})
|
|
self.assertRaises(
|
|
OperationFailure,
|
|
c.pymongo_test.test.insert, {'_id': 'foo'})
|
|
|
|
# OperationFailure doesn't affect the request socket
|
|
self.assertEqual(old_sock_info, pool._get_request_state())
|
|
c.close()
|
|
|
|
def test_auto_start_request(self):
|
|
for bad_horrible_value in (None, 5, 'hi!'):
|
|
self.assertRaises(
|
|
(TypeError, ConfigurationError),
|
|
lambda: self._get_client(auto_start_request=bad_horrible_value)
|
|
)
|
|
|
|
client = self._get_client(auto_start_request=True)
|
|
self.assertTrue(client.auto_start_request)
|
|
pools = pools_from_rs_client(client)
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
|
|
primary_pool = get_pool(client)
|
|
|
|
# Trigger the RSC to actually start a request on primary pool
|
|
client.pymongo_test.test.find_one()
|
|
self.assertTrue(primary_pool.in_request())
|
|
|
|
# Trigger the RSC to actually start a request on secondary pool
|
|
cursor = client.pymongo_test.test.find(
|
|
read_preference=ReadPreference.SECONDARY)
|
|
try:
|
|
cursor.next()
|
|
except StopIteration:
|
|
# No results, no problem
|
|
pass
|
|
|
|
secondary = cursor._Cursor__connection_id
|
|
rs_state = client._MongoReplicaSetClient__rs_state
|
|
secondary_pool = rs_state.get(secondary).pool
|
|
self.assertTrue(secondary_pool.in_request())
|
|
|
|
client.end_request()
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
for pool in pools:
|
|
self.assertFalse(pool.in_request())
|
|
client.start_request()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
client.close()
|
|
|
|
client = self._get_client()
|
|
pools = pools_from_rs_client(client)
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
client.start_request()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
client.end_request()
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
client.close()
|
|
|
|
def test_nested_request(self):
|
|
client = self._get_client(auto_start_request=True)
|
|
try:
|
|
pools = pools_from_rs_client(client)
|
|
self.assertTrue(client.in_request())
|
|
|
|
# Start and end request - we're still in "outer" original request
|
|
client.start_request()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
client.end_request()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
|
|
# Double-nesting
|
|
client.start_request()
|
|
client.start_request()
|
|
self.assertEqual(
|
|
3, client._MongoReplicaSetClient__request_counter.get())
|
|
|
|
for pool in pools:
|
|
# MRSC only called start_request() once per pool, although its
|
|
# own counter is 2.
|
|
self.assertEqual(1, pool._request_counter.get())
|
|
|
|
client.end_request()
|
|
client.end_request()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
|
|
self.assertEqual(
|
|
1, client._MongoReplicaSetClient__request_counter.get())
|
|
|
|
for pool in pools:
|
|
self.assertEqual(1, pool._request_counter.get())
|
|
|
|
# Finally, end original request
|
|
client.end_request()
|
|
for pool in pools:
|
|
self.assertFalse(pool.in_request())
|
|
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
finally:
|
|
client.close()
|
|
|
|
def test_request_threads(self):
|
|
client = self._get_client()
|
|
try:
|
|
pools = pools_from_rs_client(client)
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
|
|
started_request, ended_request = threading.Event(), threading.Event()
|
|
checked_request = threading.Event()
|
|
thread_done = [False]
|
|
|
|
# Starting a request in one thread doesn't put the other thread in a
|
|
# request
|
|
def f():
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
client.start_request()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
started_request.set()
|
|
checked_request.wait()
|
|
checked_request.clear()
|
|
self.assertInRequestAndSameSock(client, pools)
|
|
client.end_request()
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
ended_request.set()
|
|
checked_request.wait()
|
|
thread_done[0] = True
|
|
|
|
t = threading.Thread(target=f)
|
|
t.setDaemon(True)
|
|
t.start()
|
|
started_request.wait()
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
checked_request.set()
|
|
ended_request.wait()
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
checked_request.set()
|
|
t.join()
|
|
self.assertNotInRequestAndDifferentSock(client, pools)
|
|
self.assertTrue(thread_done[0], "Thread didn't complete")
|
|
finally:
|
|
client.close()
|
|
|
|
def test_schedule_refresh(self):
|
|
client = self._get_client()
|
|
new_rs_state = rs_state = client._MongoReplicaSetClient__rs_state
|
|
for host in rs_state.hosts:
|
|
new_rs_state = new_rs_state.clone_with_host_down(host, 'error!')
|
|
|
|
client._MongoReplicaSetClient__rs_state = new_rs_state
|
|
client._MongoReplicaSetClient__schedule_refresh(sync=True)
|
|
rs_state = client._MongoReplicaSetClient__rs_state
|
|
for member in rs_state.members:
|
|
self.assertTrue(
|
|
member.up, "MongoReplicaSetClient didn't detect member is up")
|
|
|
|
client.close()
|
|
|
|
def test_pinned_member(self):
|
|
latency = 1000 * 1000
|
|
client = self._get_client(secondary_acceptable_latency_ms=latency)
|
|
|
|
host = read_from_which_host(client, ReadPreference.SECONDARY)
|
|
self.assertTrue(host in client.secondaries)
|
|
|
|
# No pinning since we're not in a request
|
|
assertReadFromAll(
|
|
self, client, client.secondaries,
|
|
ReadPreference.SECONDARY, None, latency)
|
|
|
|
assertReadFromAll(
|
|
self, client, list(client.secondaries) + [client.primary],
|
|
ReadPreference.NEAREST, None, latency)
|
|
|
|
client.start_request()
|
|
host = read_from_which_host(client, ReadPreference.SECONDARY)
|
|
self.assertTrue(host in client.secondaries)
|
|
assertReadFrom(self, client, host, ReadPreference.SECONDARY)
|
|
|
|
# Changing any part of read preference (mode, tag_sets, latency)
|
|
# unpins the current host and pins to a new one
|
|
primary = client.primary
|
|
assertReadFrom(self, client, primary, ReadPreference.PRIMARY_PREFERRED)
|
|
|
|
host = read_from_which_host(client, ReadPreference.NEAREST)
|
|
assertReadFrom(self, client, host, ReadPreference.NEAREST)
|
|
|
|
assertReadFrom(self, client, primary, ReadPreference.PRIMARY_PREFERRED)
|
|
|
|
host = read_from_which_host(client, ReadPreference.SECONDARY_PREFERRED)
|
|
self.assertTrue(host in client.secondaries)
|
|
assertReadFrom(self, client, host, ReadPreference.SECONDARY_PREFERRED)
|
|
|
|
# Unpin
|
|
client.end_request()
|
|
assertReadFromAll(
|
|
self, client, list(client.secondaries) + [client.primary],
|
|
ReadPreference.NEAREST, None, latency)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|