summaryrefslogtreecommitdiffstats
path: root/utils/test/testapi/opnfv_testapi/common
diff options
context:
space:
mode:
authorSerena Feng <feng.xiaowei@zte.com.cn>2017-10-23 01:27:12 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-10-23 01:27:12 +0000
commit5ec8f63f0d6c2980f3ebe27572e1a3ad7e16a824 (patch)
treeabc11252f5ad7baf497bf638e3400a2f776a95c2 /utils/test/testapi/opnfv_testapi/common
parentca745dbf6dd3dbc5642fae6b6397e878b6eb8aca (diff)
parent410025769a5f59469722704cdb1d53bfe1d20ba0 (diff)
Merge "allow authentication to be disabled"
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/common')
-rw-r--r--utils/test/testapi/opnfv_testapi/common/check.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/test/testapi/opnfv_testapi/common/check.py b/utils/test/testapi/opnfv_testapi/common/check.py
index 1dff37a67..667578fed 100644
--- a/utils/test/testapi/opnfv_testapi/common/check.py
+++ b/utils/test/testapi/opnfv_testapi/common/check.py
@@ -14,13 +14,14 @@ from tornado import gen
from opnfv_testapi.common import constants
from opnfv_testapi.common import message
from opnfv_testapi.common import raises
+from opnfv_testapi.common.config import CONF
from opnfv_testapi.db import api as dbapi
def is_authorized(method):
@functools.wraps(method)
def wrapper(self, *args, **kwargs):
- if self.table in ['pods']:
+ if CONF.api_authenticate and self.table in ['pods']:
testapi_id = self.get_secure_cookie(constants.TESTAPI_ID)
if not testapi_id:
raises.Unauthorized(message.not_login())