Skip to content
Snippets Groups Projects
Commit 0ef28120 authored by Karel van Klink's avatar Karel van Klink :smiley_cat: Committed by Neda Moeini
Browse files

rename stray pp_interaction references

parent f944b960
No related branches found
No related tags found
1 merge request!139Feature/add validation workflows
......@@ -11,7 +11,7 @@ from orchestrator.workflows.utils import wrap_modify_initial_input_form
from gso.products.product_types.iptrunk import Iptrunk
from gso.services import infoblox
from gso.services.provisioning_proxy import execute_playbook, pp_interaction
from gso.services.lso_client import execute_playbook, lso_interaction
@step("Validate IP trunk configuration")
......@@ -76,7 +76,7 @@ def validate_iptrunk() -> StepList:
init
>> store_process_subscription(Target.SYSTEM)
>> unsync
>> pp_interaction(validate_router_config)
>> lso_interaction(validate_router_config)
>> verify_ipam_loopback
>> resync
>> done
......
......@@ -11,7 +11,7 @@ from orchestrator.workflows.utils import wrap_modify_initial_input_form
from gso.products.product_types.router import Router
from gso.services import infoblox
from gso.services.provisioning_proxy import execute_playbook, pp_interaction
from gso.services.lso_client import execute_playbook, lso_interaction
@step("Validate router configuration")
......@@ -54,7 +54,7 @@ def validate_router() -> StepList:
init
>> store_process_subscription(Target.SYSTEM)
>> unsync
>> pp_interaction(validate_router_config)
>> lso_interaction(validate_router_config)
>> verify_ipam_loopback
>> resync
>> done
......
......@@ -6,7 +6,7 @@ from infoblox_client import objects
from gso.products.product_types.iptrunk import Iptrunk
from test.workflows import (
assert_complete,
assert_pp_interaction_success,
assert_lso_interaction_success,
extract_state,
run_workflow,
)
......@@ -106,7 +106,7 @@ def test_validate_router_success(
state = extract_state(result)
subscription_id = state["subscription_id"]
result, step_log = assert_pp_interaction_success(result, process_stat, step_log)
result, step_log = assert_lso_interaction_success(result, process_stat, step_log)
assert_complete(result)
......
......@@ -6,7 +6,7 @@ from infoblox_client import objects
from gso.products.product_types.router import Router
from test.workflows import (
assert_complete,
assert_pp_interaction_success,
assert_lso_interaction_success,
extract_state,
run_workflow,
)
......@@ -50,7 +50,7 @@ def test_validate_router_success(
state = extract_state(result)
subscription_id = state["subscription_id"]
result, step_log = assert_pp_interaction_success(result, process_stat, step_log)
result, step_log = assert_lso_interaction_success(result, process_stat, step_log)
assert_complete(result)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment