diff options
author | George Paraskevopoulos <geopar@intracom-telecom.com> | 2016-09-23 16:40:13 +0300 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-27 10:05:54 +0000 |
commit | e3fb755f81a297b484dbcb764e9f054afc30f85b (patch) | |
tree | e6b866ac95b1d4676cf218a70b5010ecea2cf6b1 /testcases/features | |
parent | bc8056383ce9154ecbe7a919ac10307ea7bd67ad (diff) |
Move sfc custom flavor creation
The custom flavor that is needed for the sfc test case is created in the
tacker deployment phase.
The result of this is that when we use alternative methods of deploying
tacker (i.e. the tacker fuel plugin) the test fails.
Changes:
- Move the flavor creation inside the test case code
- Add an optional public parameter in the [get_or_]create_flavor utility
functions.
Change-Id: Iea13f172076770dde3876b7e27edc9b7ca9b28db
Signed-off-by: George Paraskevopoulos <geopar@intracom-telecom.com>
(cherry picked from commit 40f68e35389cf19d3fb200d1655ecb055c85d1eb)
Diffstat (limited to 'testcases/features')
-rwxr-xr-x | testcases/features/sfc/sfc.py | 6 | ||||
-rwxr-xr-x | testcases/features/sfc/sfc_colorado1.py | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/testcases/features/sfc/sfc.py b/testcases/features/sfc/sfc.py index ec1720003..4ece7d0ad 100755 --- a/testcases/features/sfc/sfc.py +++ b/testcases/features/sfc/sfc.py @@ -161,6 +161,12 @@ def main(): port_range_min=22, port_range_max=22) + _, custom_flv_id = os_utils.get_or_create_flavor( + 'custom', 1500, 10, 1, public=True) + if not custom_flv_id: + logger.error("Failed to create custom flavor") + sys.exit(1) + # boot INSTANCE logger.info("Creating instance '%s'..." % INSTANCE_NAME) logger.debug( diff --git a/testcases/features/sfc/sfc_colorado1.py b/testcases/features/sfc/sfc_colorado1.py index 103d10b18..5b04c32a9 100755 --- a/testcases/features/sfc/sfc_colorado1.py +++ b/testcases/features/sfc/sfc_colorado1.py @@ -160,6 +160,12 @@ def main(): port_range_min=22, port_range_max=22) + _, custom_flv_id = os_utils.get_or_create_flavor( + 'custom', 1500, 10, 1, public=True) + if not custom_flv_id: + logger.error("Failed to create custom flavor") + sys.exit(1) + iterator = 0 while(iterator < 6): # boot INSTANCE |