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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
# Copyright 2013-2015 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 Motor, an asynchronous driver for MongoDB and Tornado."""
import asyncio
import os
import test
import unittest
from abc import ABC
from multiprocessing import Pipe
from test.tornado_tests import MotorTest
from test.utils import ignore_deprecations
import pymongo
from pymongo import WriteConcern
from pymongo.read_preferences import Nearest, ReadPreference, Secondary
from tornado.ioloop import IOLoop
from tornado.testing import gen_test
import motor
class MotorTestBasic(MotorTest):
def test_repr(self):
self.assertTrue(repr(self.cx).startswith("MotorClient"))
self.assertTrue(repr(self.db).startswith("MotorDatabase"))
self.assertTrue(repr(self.collection).startswith("MotorCollection"))
cursor = self.collection.find()
self.assertTrue(repr(cursor).startswith("MotorCursor"))
@gen_test
async def test_write_concern(self):
# Default empty dict means "w=1"
self.assertEqual(WriteConcern(), self.cx.write_concern)
await self.collection.delete_many({})
await self.collection.insert_one({"_id": 0})
for wc_opts in [
{},
{"w": 0},
{"w": 1},
{"wTimeoutMS": 1000},
]:
cx = self.motor_client(test.env.uri, **wc_opts)
wtimeout = wc_opts.pop("wTimeoutMS", None)
if wtimeout:
wc_opts["wtimeout"] = wtimeout
wc = WriteConcern(**wc_opts)
self.assertEqual(wc, cx.write_concern)
db = cx.motor_test
self.assertEqual(wc, db.write_concern)
collection = db.test_collection
self.assertEqual(wc, collection.write_concern)
if wc.acknowledged:
with self.assertRaises(pymongo.errors.DuplicateKeyError):
await collection.insert_one({"_id": 0})
else:
await collection.insert_one({"_id": 0}) # No error
# No error
c = collection.with_options(write_concern=WriteConcern(w=0))
await c.insert_one({"_id": 0})
cx.close()
@ignore_deprecations
def test_read_preference(self):
# Check the default
cx = motor.MotorClient(test.env.uri, io_loop=self.io_loop)
self.assertEqual(ReadPreference.PRIMARY, cx.read_preference)
# We can set mode, tags, and latency.
cx = self.motor_client(
read_preference=Secondary(tag_sets=[{"foo": "bar"}]), localThresholdMS=42
)
self.assertEqual(ReadPreference.SECONDARY.mode, cx.read_preference.mode)
self.assertEqual([{"foo": "bar"}], cx.read_preference.tag_sets)
self.assertEqual(42, cx.options.local_threshold_ms)
# Make a MotorCursor and get its PyMongo Cursor
collection = cx.motor_test.test_collection.with_options(
read_preference=Nearest(tag_sets=[{"yay": "jesse"}])
)
motor_cursor = collection.find()
cursor = motor_cursor.delegate
self.assertEqual(Nearest(tag_sets=[{"yay": "jesse"}]), cursor._get_read_preference())
cx.close()
def test_underscore(self):
self.assertIsInstance(self.cx["_db"], motor.MotorDatabase)
self.assertIsInstance(self.db["_collection"], motor.MotorCollection)
self.assertIsInstance(self.collection["_collection"], motor.MotorCollection)
with self.assertRaises(AttributeError):
self.cx._db
with self.assertRaises(AttributeError):
self.db._collection
with self.assertRaises(AttributeError):
self.collection._collection
def test_abc(self):
class C(ABC):
db = self.db
collection = self.collection
subcollection = self.collection.subcollection
# MOTOR-104, TypeError: Can't instantiate abstract class C with abstract
# methods collection, db, subcollection.
C()
@gen_test
async def test_inheritance(self):
class CollectionSubclass(motor.MotorCollection):
pass
class DatabaseSubclass(motor.MotorDatabase):
def __getitem__(self, name):
return CollectionSubclass(self, name)
class ClientSubclass(motor.MotorClient):
def __getitem__(self, name):
return DatabaseSubclass(self, name)
cx = ClientSubclass(test.env.uri, **self.get_client_kwargs())
self.assertIsInstance(cx, ClientSubclass)
db = cx["testdb"]
self.assertIsInstance(db, DatabaseSubclass)
coll = db["testcoll"]
self.assertIsInstance(coll, CollectionSubclass)
self.assertIsNotNone(await coll.insert_one({}))
class ExecutorForkTest(MotorTest):
@unittest.skipUnless(hasattr(os, "fork"), "This test requires fork")
@gen_test()
async def test_executor_reset(self):
parent_conn, child_conn = Pipe()
lock_pid = os.fork()
if lock_pid == 0: # Child
asyncio.set_event_loop(asyncio.new_event_loop())
self.loop = IOLoop.current()
client = self.motor_client()
try:
self.loop.spawn_callback(client.db.command, "ping")
except Exception:
child_conn.send(False)
child_conn.send(True)
os._exit(0)
else: # Parent
self.assertTrue(parent_conn.recv(), "Child process did not complete.")
|