Skip to content

Commit 931ff8a

Browse files
authored
fix: Re-add ModuleNotFoundError handler for pandas_backports (#319)
* fix: bring back ModuleNotFoundError handler in pandas_backports.py * add unit-test for import_default functions
1 parent d98c128 commit 931ff8a

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

db_dtypes/pandas_backports.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,10 @@ def import_default(module_name, force=False, default=None):
6262
return default
6363

6464
name = default.__name__
65-
module = __import__(module_name, {}, {}, [name])
65+
try:
66+
module = __import__(module_name, {}, {}, [name])
67+
except ModuleNotFoundError:
68+
return default
6669

6770
return getattr(module, name, default)
6871

tests/unit/test_pandas_backports.py

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

Comments
 (0)