|
| 1 | +# Copyright 2025-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 that the asynchronous API detects event loop changes and fails correctly.""" |
| 16 | +from __future__ import annotations |
| 17 | + |
| 18 | +import asyncio |
| 19 | +import unittest |
| 20 | + |
| 21 | +from pymongo import AsyncMongoClient |
| 22 | + |
| 23 | + |
| 24 | +class TestClientLoopSafety(unittest.TestCase): |
| 25 | + def test_client_errors_on_different_loop(self): |
| 26 | + client = AsyncMongoClient() |
| 27 | + loop1 = asyncio.new_event_loop() |
| 28 | + loop1.run_until_complete(client.aconnect()) |
| 29 | + loop2 = asyncio.new_event_loop() |
| 30 | + with self.assertRaisesRegex( |
| 31 | + RuntimeError, "Cannot use AsyncMongoClient in different event loop" |
| 32 | + ): |
| 33 | + loop2.run_until_complete(client.aconnect()) |
| 34 | + loop1.run_until_complete(client.close()) |
| 35 | + loop1.close() |
| 36 | + loop2.close() |
0 commit comments