aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtestcases/features/sfc/sfc.py8
-rwxr-xr-xtestcases/features/sfc/sfc_colorado1.py8
-rwxr-xr-xtestcases/features/sfc/tacker_client_install.sh2
3 files changed, 17 insertions, 1 deletions
diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py
index 96ea3ab3..92d7d849 100755
--- a/testcases/features/sfc/sfc.py
+++ b/testcases/features/sfc/sfc.py
@@ -175,6 +175,14 @@ def main():
for sg in secgroups:
os_utils.create_secgroup_rule(neutron_client, sg['id'],
+ 'ingress', 'udp',
+ port_range_min=67,
+ port_range_max=68)
+ os_utils.create_secgroup_rule(neutron_client, sg['id'],
+ 'egress', 'udp',
+ port_range_min=67,
+ port_range_max=68)
+ os_utils.create_secgroup_rule(neutron_client, sg['id'],
'ingress', 'tcp',
port_range_min=22,
port_range_max=22)
diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py
index 8dd6c808..d99c7135 100755
--- a/testcases/features/sfc/sfc_colorado1.py
+++ b/testcases/features/sfc/sfc_colorado1.py
@@ -175,6 +175,14 @@ def main():
for sg in secgroups:
os_utils.create_secgroup_rule(neutron_client, sg['id'],
+ 'ingress', 'udp',
+ port_range_min=67,
+ port_range_max=68)
+ os_utils.create_secgroup_rule(neutron_client, sg['id'],
+ 'egress', 'udp',
+ port_range_min=67,
+ port_range_max=68)
+ os_utils.create_secgroup_rule(neutron_client, sg['id'],
'ingress', 'tcp',
port_range_min=22,
port_range_max=22)
diff --git a/testcases/features/sfc/tacker_client_install.sh b/testcases/features/sfc/tacker_client_install.sh
index a3073177..adb9a44b 100755
--- a/testcases/features/sfc/tacker_client_install.sh
+++ b/testcases/features/sfc/tacker_client_install.sh
@@ -21,7 +21,7 @@ ____EOF
function envSetup() {
apt-get install -y python-all debhelper fakeroot
- pip install --upgrade python-keystoneclient==1.7.4
+ #pip install --upgrade python-keystoneclient==1.7.4
chkPPkg stdeb
}