summaryrefslogtreecommitdiffstats
path: root/opnfv_testapi/tests/unit/executor.py
diff options
context:
space:
mode:
authorStamatis Katsaounis <mokats@intracom-telecom.com>2018-10-04 12:42:16 +0300
committerStamatis Katsaounis <mokats@intracom-telecom.com>2018-10-04 12:42:16 +0300
commitc05e2986e658d9892c9d65203a1e2a785c68bf27 (patch)
tree329e16bee025b4db9f9f43ad143b1aca776d7bd8 /opnfv_testapi/tests/unit/executor.py
parent19724cbcef2508f97ddcc7fdef7e7bb44288634c (diff)
Revive unit tests and flake8 of webportal
JIRA: DOVETAIL-742 This patch revives unit test and flake8 tests of webportal. In addition, it fixes errors and enables handling of some uris which were forgotten. Change-Id: I8225c7ca08a3c97b6e77f00490defc91046a2dd6 Signed-off-by: Stamatis Katsaounis <mokats@intracom-telecom.com>
Diffstat (limited to 'opnfv_testapi/tests/unit/executor.py')
-rw-r--r--opnfv_testapi/tests/unit/executor.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/opnfv_testapi/tests/unit/executor.py b/opnfv_testapi/tests/unit/executor.py
index b8f696c..72d9d33 100644
--- a/opnfv_testapi/tests/unit/executor.py
+++ b/opnfv_testapi/tests/unit/executor.py
@@ -18,6 +18,8 @@ def upload(excepted_status, excepted_response):
status, body = self.upload(request)
if excepted_status == httplib.OK:
getattr(self, excepted_response)(body)
+ elif excepted_status == httplib.BAD_REQUEST:
+ self.assertEqual(excepted_response, body.msg)
else:
self.assertIn(excepted_response, body)
return wrap