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 ...@@ -11,7 +11,7 @@ from orchestrator.workflows.utils import wrap_modify_initial_input_form
from gso.products.product_types.iptrunk import Iptrunk from gso.products.product_types.iptrunk import Iptrunk
from gso.services import infoblox 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") @step("Validate IP trunk configuration")
...@@ -76,7 +76,7 @@ def validate_iptrunk() -> StepList: ...@@ -76,7 +76,7 @@ def validate_iptrunk() -> StepList:
init init
>> store_process_subscription(Target.SYSTEM) >> store_process_subscription(Target.SYSTEM)
>> unsync >> unsync
>> pp_interaction(validate_router_config) >> lso_interaction(validate_router_config)
>> verify_ipam_loopback >> verify_ipam_loopback
>> resync >> resync
>> done >> done
......
...@@ -11,7 +11,7 @@ from orchestrator.workflows.utils import wrap_modify_initial_input_form ...@@ -11,7 +11,7 @@ from orchestrator.workflows.utils import wrap_modify_initial_input_form
from gso.products.product_types.router import Router from gso.products.product_types.router import Router
from gso.services import infoblox 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") @step("Validate router configuration")
...@@ -54,7 +54,7 @@ def validate_router() -> StepList: ...@@ -54,7 +54,7 @@ def validate_router() -> StepList:
init init
>> store_process_subscription(Target.SYSTEM) >> store_process_subscription(Target.SYSTEM)
>> unsync >> unsync
>> pp_interaction(validate_router_config) >> lso_interaction(validate_router_config)
>> verify_ipam_loopback >> verify_ipam_loopback
>> resync >> resync
>> done >> done
......
...@@ -6,7 +6,7 @@ from infoblox_client import objects ...@@ -6,7 +6,7 @@ from infoblox_client import objects
from gso.products.product_types.iptrunk import Iptrunk from gso.products.product_types.iptrunk import Iptrunk
from test.workflows import ( from test.workflows import (
assert_complete, assert_complete,
assert_pp_interaction_success, assert_lso_interaction_success,
extract_state, extract_state,
run_workflow, run_workflow,
) )
...@@ -106,7 +106,7 @@ def test_validate_router_success( ...@@ -106,7 +106,7 @@ def test_validate_router_success(
state = extract_state(result) state = extract_state(result)
subscription_id = state["subscription_id"] 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) assert_complete(result)
......
...@@ -6,7 +6,7 @@ from infoblox_client import objects ...@@ -6,7 +6,7 @@ from infoblox_client import objects
from gso.products.product_types.router import Router from gso.products.product_types.router import Router
from test.workflows import ( from test.workflows import (
assert_complete, assert_complete,
assert_pp_interaction_success, assert_lso_interaction_success,
extract_state, extract_state,
run_workflow, run_workflow,
) )
...@@ -50,7 +50,7 @@ def test_validate_router_success( ...@@ -50,7 +50,7 @@ def test_validate_router_success(
state = extract_state(result) state = extract_state(result)
subscription_id = state["subscription_id"] 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) assert_complete(result)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment