Skip to content
Snippets Groups Projects
Commit f2103370 authored by Rosen Matev's avatar Rosen Matev :sunny:
Browse files

Implicitly convert DataObjectHandleBase to str properties

This helps the transition to data handles whenever we have the pattern
`B.Input = A.Output` and `A.Output` is changed to a data handle and `B.Input`
is still a string.
parent b8e2f5e8
No related branches found
No related tags found
1 merge request!773Implicitly convert DataObjectHandleBase to str properties
......@@ -44,6 +44,10 @@ def _isCompatible(tp, value):
if (type(value) is str) or derives_from(value, 'Configurable'):
# we can set string properties only from strings or configurables
return value
elif isinstance(value, DataObjectHandleBase):
# Implicitly convert DataObjectHandleBase to str for backward
# compatiblity in cases like B.Input (str) = A.Output (handle)
return str(value)
else:
raise ValueError(errmsg)
elif (tp in [list, tuple, dict]):
......
......@@ -34,6 +34,12 @@ def test_correct():
'DataHandle': DataObjectHandleBase('/Event/X')}
def test_str_from_datahandle():
a = MyAlg()
a.Text = DataObjectHandleBase('value')
assert a.getProp('Text') == 'value'
def test_invalid_value():
a = MyAlg()
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment