70 lines
2.2 KiB
Python
70 lines
2.2 KiB
Python
# Copyright 2011-2014 MongoDB, 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 that pymongo is thread safe."""
|
|
|
|
import unittest
|
|
|
|
from pymongo.mongo_replica_set_client import MongoReplicaSetClient
|
|
|
|
from test.test_threads import BaseTestThreads, BaseTestThreadsAuth
|
|
from test.test_replica_set_client import TestReplicaSetClientBase, pair
|
|
|
|
|
|
class TestThreadsReplicaSet(TestReplicaSetClientBase, BaseTestThreads):
|
|
def setUp(self):
|
|
"""
|
|
Prepare to test all the same things that TestThreads tests, but do it
|
|
with a replica-set client
|
|
"""
|
|
TestReplicaSetClientBase.setUp(self)
|
|
BaseTestThreads.setUp(self)
|
|
|
|
def tearDown(self):
|
|
TestReplicaSetClientBase.tearDown(self)
|
|
BaseTestThreads.tearDown(self)
|
|
|
|
def _get_client(self, **kwargs):
|
|
return TestReplicaSetClientBase._get_client(self, **kwargs)
|
|
|
|
|
|
class TestThreadsAuthReplicaSet(TestReplicaSetClientBase, BaseTestThreadsAuth):
|
|
|
|
def setUp(self):
|
|
"""
|
|
Prepare to test all the same things that TestThreads tests, but do it
|
|
with a replica-set client
|
|
"""
|
|
TestReplicaSetClientBase.setUp(self)
|
|
BaseTestThreadsAuth.setUp(self)
|
|
|
|
def tearDown(self):
|
|
TestReplicaSetClientBase.tearDown(self)
|
|
BaseTestThreadsAuth.tearDown(self)
|
|
|
|
def _get_client(self):
|
|
"""
|
|
Override TestThreadsAuth, so its tests run on a MongoReplicaSetClient
|
|
instead of a regular MongoClient.
|
|
"""
|
|
return MongoReplicaSetClient(pair, replicaSet=self.name)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
suite = unittest.TestSuite([
|
|
unittest.makeSuite(TestThreadsReplicaSet),
|
|
unittest.makeSuite(TestThreadsAuthReplicaSet)
|
|
])
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|