1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
import platform
import time
import unittest
from unittest import mock
import mongomock
try:
import pymongo
_HAVE_PYMONGO = True
except ImportError:
_HAVE_PYMONGO = False
_USING_PYPY = platform.python_implementation() == 'PyPy'
@unittest.skipIf(not _HAVE_PYMONGO, 'pymongo not installed')
@unittest.skipIf(_USING_PYPY, 'PyPy does not handle mocking time sleep properly')
class PatchTest(unittest.TestCase):
"""Test the use of the patch function.
Test functions in this test are embedded in inner function so that the
patch decorator are only called at testing time.
"""
@mongomock.patch()
def test__decorator(self):
client1 = pymongo.MongoClient()
client1.db.coll.insert_one({'name': 'Pascal'})
client2 = pymongo.MongoClient()
self.assertEqual(['db'], client2.list_database_names())
self.assertEqual('Pascal', client2.db.coll.find_one()['name'])
client2.db.coll.drop()
self.assertEqual(None, client1.db.coll.find_one())
@mongomock.patch(on_new='create')
def test__create_new(self):
client1 = pymongo.MongoClient('myserver.example.com', port=12345)
client1.db.coll.insert_one({'name': 'Pascal'})
client2 = pymongo.MongoClient(host='myserver.example.com', port=12345)
self.assertEqual('Pascal', client2.db.coll.find_one()['name'])
@mongomock.patch()
def test__error_new(self):
# Valid because using the default server which was whitelisted by default.
pymongo.MongoClient()
with self.assertRaises(ValueError):
pymongo.MongoClient('myserver.example.com', port=12345)
@mongomock.patch((
'mongodb://myserver.example.com:12345',
'mongodb://otherserver.example.com:27017/default-db',
'mongodb://[2001:67c:2e8:22::c100:68b]',
'mongodb://[2001:67c:2e8:22::c100:68b]:1234',
'mongodb://r1.example.net:27017,r2.example.net:27017/',
'/var/lib/mongo.sock',
))
def test__create_servers(self):
pymongo.MongoClient('myserver.example.com', port=12345)
pymongo.MongoClient('otherserver.example.com')
pymongo.MongoClient('[2001:67c:2e8:22::c100:68b]')
pymongo.MongoClient('mongodb://[2001:67c:2e8:22::c100:68b]:27017/base')
pymongo.MongoClient('[2001:67c:2e8:22::c100:68b]', port=1234)
pymongo.MongoClient('r1.example.net')
pymongo.MongoClient('/var/lib/mongo.sock')
with self.assertRaises(ValueError):
pymongo.MongoClient()
@mongomock.patch(on_new='timeout')
@mock.patch(time.__name__ + '.sleep')
def test__create_timeout(self, mock_sleep):
pymongo.MongoClient()
mock_sleep.reset_mock()
with self.assertRaises(pymongo.errors.ServerSelectionTimeoutError):
client = pymongo.MongoClient('myserver.example.com', port=12345)
client.db.coll.insert_one({'name': 'Pascal'})
mock_sleep.assert_called_once_with(30000)
@mongomock.patch('example.com')
def test__different_default_db(self):
client_1 = pymongo.MongoClient('mongodb://example.com/db1')
client_2 = pymongo.MongoClient('mongodb://example.com/db2')
# Access the same data from different clients, despite the different DB.
client_1.test_db.collection.insert_one({'name': 'Pascal'})
self.assertEqual(['Pascal'], [d['name'] for d in client_2.test_db.collection.find()])
# Access the data from "default DB" of client 1 but by its name from client 2.
client_1.get_default_database().collection.insert_one({'name': 'Lascap'})
self.assertEqual(['Lascap'], [d['name'] for d in client_2.db1.collection.find()])
# Access the data from "default DB" of client 2 but by its name from client 1.
client_2.get_default_database().collection.insert_one({'name': 'Caribou'})
self.assertEqual(['Caribou'], [d['name'] for d in client_1.db2.collection.find()])
@mongomock.patch(('my-db_client-url',))
def test__rename_through_another_client(self):
client1 = pymongo.MongoClient('mongodb://my-db_client-url/test')
client1.test.my_collec.insert_one({'_id': 'Previous data'})
client2 = pymongo.MongoClient('mongodb://my-db_client-url/test')
client2.test.drop_collection('my_collec')
client2.test.other_collec.insert_one({'_id': 'New data'})
client2.test.other_collec.rename('my_collec')
self.assertEqual(['New data'], [d['_id'] for d in client1.test.my_collec.find()])
@mongomock.patch(servers=(('server.example.com', 27017),))
def test__tuple_server_host_and_port(self):
objects = [dict(votes=1), dict(votes=2)]
client = pymongo.MongoClient('server.example.com')
client.db.collection.insert_many(objects)
collection = pymongo.MongoClient('server.example.com').db.collection
for document in collection.find():
collection.update_one(document, {'$set': {'votes': document['votes'] + 1}})
self.assertEqual([2, 3], sorted(d.get('votes') for d in client.db.collection.find()))
if __name__ == '__main__':
unittest.main()
|