Skip to content

Commit 68237f7

Browse files
authored
PYTHON-5098 - Convert test.test_run_command to async (#2114)
1 parent b47143c commit 68237f7

File tree

3 files changed

+66
-2
lines changed

3 files changed

+66
-2
lines changed

test/asynchronous/test_run_command.py

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Copyright 2024-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+
"""Run Command unified tests."""
16+
from __future__ import annotations
17+
18+
import os
19+
import unittest
20+
from pathlib import Path
21+
from test.asynchronous.unified_format import generate_test_classes
22+
23+
_IS_SYNC = False
24+
25+
# Location of JSON test specifications.
26+
if _IS_SYNC:
27+
TEST_PATH = os.path.join(Path(__file__).resolve().parent, "run_command")
28+
else:
29+
TEST_PATH = os.path.join(Path(__file__).resolve().parent.parent, "run_command")
30+
31+
32+
globals().update(
33+
generate_test_classes(
34+
os.path.join(TEST_PATH, "unified"),
35+
module=__name__,
36+
)
37+
)
38+
39+
40+
if __name__ == "__main__":
41+
unittest.main()

test/test_run_command.py

+24-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,37 @@
1+
# Copyright 2024-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+
"""Run Command unified tests."""
116
from __future__ import annotations
217

318
import os
419
import unittest
20+
from pathlib import Path
521
from test.unified_format import generate_test_classes
622

7-
_TEST_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "run_command")
23+
_IS_SYNC = True
24+
25+
# Location of JSON test specifications.
26+
if _IS_SYNC:
27+
TEST_PATH = os.path.join(Path(__file__).resolve().parent, "run_command")
28+
else:
29+
TEST_PATH = os.path.join(Path(__file__).resolve().parent.parent, "run_command")
830

931

1032
globals().update(
1133
generate_test_classes(
12-
os.path.join(_TEST_PATH, "unified"),
34+
os.path.join(TEST_PATH, "unified"),
1335
module=__name__,
1436
)
1537
)

tools/synchro.py

+1
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,7 @@ def async_only_test(f: str) -> bool:
226226
"test_retryable_reads_unified.py",
227227
"test_retryable_writes.py",
228228
"test_retryable_writes_unified.py",
229+
"test_run_command.py",
229230
"test_session.py",
230231
"test_srv_polling.py",
231232
"test_transactions.py",

0 commit comments

Comments
 (0)