|
| 1 | +# Copyright 2024 Google LLC |
| 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 | +import unittest.mock as mock |
| 16 | + |
| 17 | +import db_dtypes.pandas_backports as pandas_backports |
| 18 | + |
| 19 | + |
| 20 | +@mock.patch("builtins.__import__") |
| 21 | +def test_import_default_module_found(mock_import): |
| 22 | + mock_module = mock.MagicMock() |
| 23 | + mock_module.OpsMixin = "OpsMixin_from_module" # Simulate successful import |
| 24 | + mock_import.return_value = mock_module |
| 25 | + |
| 26 | + default_class = type("OpsMixin", (), {}) # Dummy class |
| 27 | + result = pandas_backports.import_default("module_name", default=default_class) |
| 28 | + assert result == "OpsMixin_from_module" |
| 29 | + |
| 30 | + |
| 31 | +@mock.patch("builtins.__import__") |
| 32 | +def test_import_default_module_not_found(mock_import): |
| 33 | + mock_import.side_effect = ModuleNotFoundError |
| 34 | + |
| 35 | + default_class = type("OpsMixin", (), {}) # Dummy class |
| 36 | + result = pandas_backports.import_default("module_name", default=default_class) |
| 37 | + assert result == default_class |
0 commit comments