From 503041fb7ec395fe57e418d584c4a5d06f4c9877 Mon Sep 17 00:00:00 2001 From: "stark, steven" Date: Mon, 13 May 2019 14:41:55 -0700 Subject: [VVP] Adding tests for new reqs from VNFRQTS-630 Added tests for reqs: R-100010, R-100030, R-100050, R-100070, R-100090, R-100110, R-100130, R-100150, R-100200, R-100220, R-100240, R-100310, R-100330, R-100360, R-100370, R-100260, R-100000, R-100190, R-100350 Updated neutron param tests to re-use validation code for contrail tests Change-Id: I84af725ca9de176dc690fffda01ffcad453213ea Issue-ID: VVP-211 Signed-off-by: stark, steven --- ...test_allowed_address_pairs_include_vm_type_network_role.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'ice_validator/tests/test_allowed_address_pairs_include_vm_type_network_role.py') diff --git a/ice_validator/tests/test_allowed_address_pairs_include_vm_type_network_role.py b/ice_validator/tests/test_allowed_address_pairs_include_vm_type_network_role.py index 4654333..76e5f18 100644 --- a/ice_validator/tests/test_allowed_address_pairs_include_vm_type_network_role.py +++ b/ice_validator/tests/test_allowed_address_pairs_include_vm_type_network_role.py @@ -39,7 +39,8 @@ import re from .helpers import validates -from .utils.ports import check_ip_format +from .utils.ports import check_parameter_format +from tests.structures import NeutronPortProcessor VERSION = "1.0.0" @@ -80,13 +81,13 @@ aap_regx_dict = { @validates("R-41492", "R-35735", "R-159016") def test_external_aap_format(yaml_file): - check_ip_format( - yaml_file, aap_regx_dict, "external", "allowed_address_pairs", "ip_address" + check_parameter_format( + yaml_file, aap_regx_dict, "external", NeutronPortProcessor, "allowed_address_pairs", "ip_address" ) @validates("R-717227", "R-805572") def test_internal_aap_format(yaml_file): - check_ip_format( - yaml_file, aap_regx_dict, "internal", "allowed_address_pairs", "ip_address" + check_parameter_format( + yaml_file, aap_regx_dict, "internal", NeutronPortProcessor, "allowed_address_pairs", "ip_address" ) -- cgit 1.2.3-korg