|
| 1 | +# Copyright 2022-present MongoDB, Inc. |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +"""Test the CSOT unified spec tests.""" |
| 16 | +from __future__ import annotations |
| 17 | + |
| 18 | +import os |
| 19 | +import sys |
| 20 | +from pathlib import Path |
| 21 | + |
| 22 | +sys.path[0:0] = [""] |
| 23 | + |
| 24 | +from test.asynchronous import AsyncIntegrationTest, async_client_context, unittest |
| 25 | +from test.asynchronous.unified_format import generate_test_classes |
| 26 | + |
| 27 | +import pymongo |
| 28 | +from pymongo import _csot |
| 29 | +from pymongo.errors import PyMongoError |
| 30 | + |
| 31 | +_IS_SYNC = False |
| 32 | + |
| 33 | +# Location of JSON test specifications. |
| 34 | +if _IS_SYNC: |
| 35 | + TEST_PATH = os.path.join(Path(__file__).resolve().parent, "csot") |
| 36 | +else: |
| 37 | + TEST_PATH = os.path.join(Path(__file__).resolve().parent.parent, "csot") |
| 38 | + |
| 39 | +# Generate unified tests. |
| 40 | +globals().update(generate_test_classes(TEST_PATH, module=__name__)) |
| 41 | + |
| 42 | + |
| 43 | +class TestCSOT(AsyncIntegrationTest): |
| 44 | + RUN_ON_SERVERLESS = True |
| 45 | + RUN_ON_LOAD_BALANCER = True |
| 46 | + |
| 47 | + async def test_timeout_nested(self): |
| 48 | + if os.environ.get("SKIP_CSOT_TESTS", ""): |
| 49 | + raise unittest.SkipTest("SKIP_CSOT_TESTS is set, skipping...") |
| 50 | + coll = self.db.coll |
| 51 | + self.assertEqual(_csot.get_timeout(), None) |
| 52 | + self.assertEqual(_csot.get_deadline(), float("inf")) |
| 53 | + self.assertEqual(_csot.get_rtt(), 0.0) |
| 54 | + with pymongo.timeout(10): |
| 55 | + await coll.find_one() |
| 56 | + self.assertEqual(_csot.get_timeout(), 10) |
| 57 | + deadline_10 = _csot.get_deadline() |
| 58 | + |
| 59 | + # Capped at the original 10 deadline. |
| 60 | + with pymongo.timeout(15): |
| 61 | + await coll.find_one() |
| 62 | + self.assertEqual(_csot.get_timeout(), 15) |
| 63 | + self.assertEqual(_csot.get_deadline(), deadline_10) |
| 64 | + |
| 65 | + # Should be reset to previous values |
| 66 | + self.assertEqual(_csot.get_timeout(), 10) |
| 67 | + self.assertEqual(_csot.get_deadline(), deadline_10) |
| 68 | + await coll.find_one() |
| 69 | + |
| 70 | + with pymongo.timeout(5): |
| 71 | + await coll.find_one() |
| 72 | + self.assertEqual(_csot.get_timeout(), 5) |
| 73 | + self.assertLess(_csot.get_deadline(), deadline_10) |
| 74 | + |
| 75 | + # Should be reset to previous values |
| 76 | + self.assertEqual(_csot.get_timeout(), 10) |
| 77 | + self.assertEqual(_csot.get_deadline(), deadline_10) |
| 78 | + await coll.find_one() |
| 79 | + |
| 80 | + # Should be reset to previous values |
| 81 | + self.assertEqual(_csot.get_timeout(), None) |
| 82 | + self.assertEqual(_csot.get_deadline(), float("inf")) |
| 83 | + self.assertEqual(_csot.get_rtt(), 0.0) |
| 84 | + |
| 85 | + @async_client_context.require_change_streams |
| 86 | + async def test_change_stream_can_resume_after_timeouts(self): |
| 87 | + if os.environ.get("SKIP_CSOT_TESTS", ""): |
| 88 | + raise unittest.SkipTest("SKIP_CSOT_TESTS is set, skipping...") |
| 89 | + coll = self.db.test |
| 90 | + await coll.insert_one({}) |
| 91 | + async with await coll.watch() as stream: |
| 92 | + with pymongo.timeout(0.1): |
| 93 | + with self.assertRaises(PyMongoError) as ctx: |
| 94 | + await stream.next() |
| 95 | + self.assertTrue(ctx.exception.timeout) |
| 96 | + self.assertTrue(stream.alive) |
| 97 | + with self.assertRaises(PyMongoError) as ctx: |
| 98 | + await stream.try_next() |
| 99 | + self.assertTrue(ctx.exception.timeout) |
| 100 | + self.assertTrue(stream.alive) |
| 101 | + # Resume before the insert on 3.6 because 4.0 is required to avoid skipping documents |
| 102 | + if async_client_context.version < (4, 0): |
| 103 | + await stream.try_next() |
| 104 | + await coll.insert_one({}) |
| 105 | + with pymongo.timeout(10): |
| 106 | + self.assertTrue(await stream.next()) |
| 107 | + self.assertTrue(stream.alive) |
| 108 | + # Timeout applies to entire next() call, not only individual commands. |
| 109 | + with pymongo.timeout(0.5): |
| 110 | + with self.assertRaises(PyMongoError) as ctx: |
| 111 | + await stream.next() |
| 112 | + self.assertTrue(ctx.exception.timeout) |
| 113 | + self.assertTrue(stream.alive) |
| 114 | + self.assertFalse(stream.alive) |
| 115 | + |
| 116 | + |
| 117 | +if __name__ == "__main__": |
| 118 | + unittest.main() |
0 commit comments