Skip to content

Commit f32e2bc

Browse files
PYTHON-5075 Convert test.test_csot to async (#2088)
Co-authored-by: Noah Stapp <[email protected]> Co-authored-by: Noah Stapp <[email protected]>
1 parent 4e672bd commit f32e2bc

File tree

5 files changed

+136
-5
lines changed

5 files changed

+136
-5
lines changed

test/asynchronous/test_csot.py

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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()

test/asynchronous/unified_format.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1387,15 +1387,18 @@ async def run_scenario(self, spec, uri=None):
13871387
# transaction (from a test failure) from blocking collection/database
13881388
# operations during test set up and tear down.
13891389
await self.kill_all_sessions()
1390-
self.addAsyncCleanup(self.kill_all_sessions)
13911390

13921391
if "csot" in self.id().lower():
13931392
# Retry CSOT tests up to 2 times to deal with flakey tests.
13941393
attempts = 3
13951394
for i in range(attempts):
13961395
try:
13971396
return await self._run_scenario(spec, uri)
1398-
except AssertionError:
1397+
except (AssertionError, OperationFailure) as exc:
1398+
if isinstance(exc, OperationFailure) and (
1399+
_IS_SYNC or "failpoint" not in exc._message
1400+
):
1401+
raise
13991402
if i < attempts - 1:
14001403
print(
14011404
f"Retrying after attempt {i+1} of {self.id()} failed with:\n"

test/test_csot.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import os
1919
import sys
20+
from pathlib import Path
2021

2122
sys.path[0:0] = [""]
2223

@@ -27,8 +28,13 @@
2728
from pymongo import _csot
2829
from pymongo.errors import PyMongoError
2930

31+
_IS_SYNC = True
32+
3033
# Location of JSON test specifications.
31-
TEST_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "csot")
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")
3238

3339
# Generate unified tests.
3440
globals().update(generate_test_classes(TEST_PATH, module=__name__))

test/unified_format.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1374,15 +1374,18 @@ def run_scenario(self, spec, uri=None):
13741374
# transaction (from a test failure) from blocking collection/database
13751375
# operations during test set up and tear down.
13761376
self.kill_all_sessions()
1377-
self.addCleanup(self.kill_all_sessions)
13781377

13791378
if "csot" in self.id().lower():
13801379
# Retry CSOT tests up to 2 times to deal with flakey tests.
13811380
attempts = 3
13821381
for i in range(attempts):
13831382
try:
13841383
return self._run_scenario(spec, uri)
1385-
except AssertionError:
1384+
except (AssertionError, OperationFailure) as exc:
1385+
if isinstance(exc, OperationFailure) and (
1386+
_IS_SYNC or "failpoint" not in exc._message
1387+
):
1388+
raise
13861389
if i < attempts - 1:
13871390
print(
13881391
f"Retrying after attempt {i+1} of {self.id()} failed with:\n"

tools/synchro.py

+1
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ def async_only_test(f: str) -> bool:
208208
"test_connections_survive_primary_stepdown_spec.py",
209209
"test_create_entities.py",
210210
"test_crud_unified.py",
211+
"test_csot.py",
211212
"test_cursor.py",
212213
"test_custom_types.py",
213214
"test_database.py",

0 commit comments

Comments
 (0)