| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | from core.app.entities.app_invoke_entities import InvokeFromfrom core.workflow.entities.variable_pool import VariablePoolfrom core.workflow.nodes.tool.tool_node import ToolNodefrom models.workflow import WorkflowNodeExecutionStatusdef test_tool_variable_invoke():    pool = VariablePool(system_variables={}, user_inputs={})    pool.append_variable(node_id='1', variable_key_list=['123', 'args1'], value='1+1')    node = ToolNode(        tenant_id='1',        app_id='1',        workflow_id='1',        user_id='1',        user_from=InvokeFrom.WEB_APP,        config={            'id': '1',            'data': {                'title': 'a',                'desc': 'a',                'provider_id': 'maths',                'provider_type': 'builtin',                'provider_name': 'maths',                'tool_name': 'eval_expression',                'tool_label': 'eval_expression',                'tool_configurations': {},                'tool_parameters': {                    'expression': {                        'type': 'variable',                        'value': ['1', '123', 'args1'],                    }                }            }        }    )    # execute node    result = node.run(pool)        assert result.status == WorkflowNodeExecutionStatus.SUCCEEDED    assert '2' in result.outputs['text']    assert result.outputs['files'] == []def test_tool_mixed_invoke():    pool = VariablePool(system_variables={}, user_inputs={})    pool.append_variable(node_id='1', variable_key_list=['args1'], value='1+1')    node = ToolNode(        tenant_id='1',        app_id='1',        workflow_id='1',        user_id='1',        user_from=InvokeFrom.WEB_APP,        config={            'id': '1',            'data': {                'title': 'a',                'desc': 'a',                'provider_id': 'maths',                'provider_type': 'builtin',                'provider_name': 'maths',                'tool_name': 'eval_expression',                'tool_label': 'eval_expression',                'tool_configurations': {},                'tool_parameters': {                    'expression': {                        'type': 'mixed',                        'value': '{{#1.args1#}}',                    }                }            }        }    )    # execute node    result = node.run(pool)        assert result.status == WorkflowNodeExecutionStatus.SUCCEEDED    assert '2' in result.outputs['text']    assert result.outputs['files'] == []
 |