From 718a435563798cbbbedd1e799aa6b7ab181638bd Mon Sep 17 00:00:00 2001 From: Noah Stapp Date: Fri, 31 Jan 2025 12:31:37 -0500 Subject: [PATCH] PYTHON-5098 - Convert test.test_run_command to async --- test/asynchronous/test_run_command.py | 41 +++++++++++++++++++++++++++ test/asynchronous/unified_format.py | 2 +- test/test_run_command.py | 26 +++++++++++++++-- test/unified_format.py | 2 +- tools/synchro.py | 1 + 5 files changed, 68 insertions(+), 4 deletions(-) create mode 100644 test/asynchronous/test_run_command.py diff --git a/test/asynchronous/test_run_command.py b/test/asynchronous/test_run_command.py new file mode 100644 index 0000000000..3ac8c32706 --- /dev/null +++ b/test/asynchronous/test_run_command.py @@ -0,0 +1,41 @@ +# Copyright 2024-Present 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. + +"""Run Command unified tests.""" +from __future__ import annotations + +import os +import unittest +from pathlib import Path +from test.asynchronous.unified_format import generate_test_classes + +_IS_SYNC = False + +# Location of JSON test specifications. +if _IS_SYNC: + TEST_PATH = os.path.join(Path(__file__).resolve().parent, "run_command") +else: + TEST_PATH = os.path.join(Path(__file__).resolve().parent.parent, "run_command") + + +globals().update( + generate_test_classes( + os.path.join(TEST_PATH, "unified"), + module=__name__, + ) +) + + +if __name__ == "__main__": + unittest.main() diff --git a/test/asynchronous/unified_format.py b/test/asynchronous/unified_format.py index 52d964eb3e..37248e9ad8 100644 --- a/test/asynchronous/unified_format.py +++ b/test/asynchronous/unified_format.py @@ -711,7 +711,7 @@ async def _databaseOperation_runCommand(self, target, **kwargs): return await target.command(**kwargs) async def _databaseOperation_runCursorCommand(self, target, **kwargs): - return list(await self._databaseOperation_createCommandCursor(target, **kwargs)) + return await (await self._databaseOperation_createCommandCursor(target, **kwargs)).to_list() async def _databaseOperation_createCommandCursor(self, target, **kwargs): self.__raise_if_unsupported("createCommandCursor", target, AsyncDatabase) diff --git a/test/test_run_command.py b/test/test_run_command.py index 486a4c7e39..d2ef43b97e 100644 --- a/test/test_run_command.py +++ b/test/test_run_command.py @@ -1,15 +1,37 @@ +# Copyright 2024-Present 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. + +"""Run Command unified tests.""" from __future__ import annotations import os import unittest +from pathlib import Path from test.unified_format import generate_test_classes -_TEST_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "run_command") +_IS_SYNC = True + +# Location of JSON test specifications. +if _IS_SYNC: + TEST_PATH = os.path.join(Path(__file__).resolve().parent, "run_command") +else: + TEST_PATH = os.path.join(Path(__file__).resolve().parent.parent, "run_command") globals().update( generate_test_classes( - os.path.join(_TEST_PATH, "unified"), + os.path.join(TEST_PATH, "unified"), module=__name__, ) ) diff --git a/test/unified_format.py b/test/unified_format.py index 372eb8abba..e66b57f9db 100644 --- a/test/unified_format.py +++ b/test/unified_format.py @@ -708,7 +708,7 @@ def _databaseOperation_runCommand(self, target, **kwargs): return target.command(**kwargs) def _databaseOperation_runCursorCommand(self, target, **kwargs): - return list(self._databaseOperation_createCommandCursor(target, **kwargs)) + return (self._databaseOperation_createCommandCursor(target, **kwargs)).to_list() def _databaseOperation_createCommandCursor(self, target, **kwargs): self.__raise_if_unsupported("createCommandCursor", target, Database) diff --git a/tools/synchro.py b/tools/synchro.py index ef82db756d..f94ecaa97c 100644 --- a/tools/synchro.py +++ b/tools/synchro.py @@ -221,6 +221,7 @@ def async_only_test(f: str) -> bool: "test_read_concern.py", "test_retryable_reads.py", "test_retryable_writes.py", + "test_run_command.py", "test_session.py", "test_transactions.py", "unified_format.py",