Change at test_RO for test vimconnector
Change-Id: Id6b9b674b4286380080f09676bed6e751cfa2164
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/test/test_RO.py b/test/test_RO.py
index 8dddc6f..e9eca0f 100755
--- a/test/test_RO.py
+++ b/test/test_RO.py
@@ -37,7 +37,6 @@
import sys
import time
import uuid
-import json
from argparse import ArgumentParser
__author__ = "Pablo Montes, Alfonso Tierno"
@@ -696,7 +695,7 @@
with self.assertRaises(Exception) as context:
test_config["vim_conn"].delete_network(Non_exist_id)
- self.assertEqual((context.exception).http_code, 400)
+ self.assertEqual((context.exception).http_code, 404)
class test_vimconn_get_flavor(test_base):
@@ -1542,7 +1541,7 @@
tenant_name = args.tenant_name
test_config['tenant'] = tenant_name
- config_params = json.loads(args.config_param)
+ config_params = yaml.load(args.config_param)
org_name = config_params.get('orgname')
org_user = config_params.get('user')
org_passwd = config_params.get('passwd')
@@ -1562,7 +1561,7 @@
tenant_name = args.tenant_name
test_config['tenant'] = tenant_name
- config_params = json.loads(args.config_param)
+ config_params = yaml.load(args.config_param)
os_user = config_params.get('user')
os_passwd = config_params.get('passwd')
vim_url = args.endpoint_url
@@ -1615,7 +1614,7 @@
# include all tests
for cls in clsmembers:
# We exclude 'test_VIM_tenant_operations' unless it is specifically requested by the user
- if cls[0].startswith('test_vimconnector'):
+ if cls[0].startswith('test_vimconn'):
code_based_tests.append(cls[1])
logger.debug("tests to be executed: {}".format(code_based_tests))