-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1042 from BCDA-APS/1039-ad_creator-plugin-class-n…
…ames Prepare ad_creator() to handle plugin class names as text
- Loading branch information
Showing
6 changed files
with
121 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
"""Test parts of the utils.misc module.""" | ||
|
||
import ophyd | ||
import pytest | ||
|
||
from .._core import MAX_EPICS_STRINGOUT_LENGTH | ||
from ..misc import cleanupText | ||
from ..misc import dynamic_import | ||
|
||
|
||
class CustomClass: | ||
"""some local class""" | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"original, expected, replacement", | ||
[ | ||
["abcd12345", "abcd12345", None], | ||
["aBcd12345", "aBcd12345", None], | ||
["abcd 12345", "abcd_12345", None], | ||
["abcd-12345", "abcd_12345", None], | ||
[" abc ", "__abc__", None], | ||
[" abc ", "__abc__", None], | ||
[" abc ", "__abc__", "_"], | ||
[" abc ", "..abc..", "."], | ||
], | ||
) | ||
def test_cleaupText(original, expected, replacement): | ||
result = cleanupText(original, replace=replacement) | ||
assert result == expected, f"{original=!r} {result=!r} {expected=!r}" | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"specified, expected, error", | ||
[ | ||
["ophyd.EpicsMotor", ophyd.EpicsMotor, None], | ||
["apstools.utils.dynamic_import", dynamic_import, None], | ||
["apstools.utils.misc.cleanupText", cleanupText, None], | ||
[ | ||
"apstools.utils._core.MAX_EPICS_STRINGOUT_LENGTH", | ||
MAX_EPICS_STRINGOUT_LENGTH, | ||
None, | ||
], | ||
["CustomClass", None, ValueError], | ||
[".test_utils.CATALOG", None, ValueError], | ||
], | ||
) | ||
def test_dynamic_import(specified, expected, error): | ||
if error is None: | ||
obj = dynamic_import(specified) | ||
assert obj == expected, f"{specified=!r} {obj=} {expected=}" | ||
else: | ||
with pytest.raises(error): | ||
obj = dynamic_import(specified) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters