diff options
Diffstat (limited to 'test')
3 files changed, 27 insertions, 1 deletions
diff --git a/test/mocks/prov-mns-provider/src/tests/common.py b/test/mocks/prov-mns-provider/src/tests/common.py index 08075e999..2ffe8acba 100644 --- a/test/mocks/prov-mns-provider/src/tests/common.py +++ b/test/mocks/prov-mns-provider/src/tests/common.py @@ -13,6 +13,7 @@ MOI_DATA_TMPL = { 'data': ProvMnSProvider.Cretaed_MOIs_list[0] } MOI_DATA_PATCH = { "data": { "pLMNId": "xxx", "gNBId": "1234", "gNBIdLength": "4" }} URI_SCHEMA = 'http' AUTH_STRING = (ProvMnSProvider.username, ProvMnSProvider.password) +INVALID_AUTH_STRING = (str(uuid4()).split('-')[0], str(uuid4()).split('-')[0]) URI_BASE_STRING = URI_SCHEMA + '://' + ProvMnSProvider.ipAddress + ':' + \ str(ProvMnSProvider.portNumber) + ProvMnSProvider.prefix + \ '/' + MOI_CLASS + '/' + MOI_ID @@ -21,3 +22,4 @@ URI_GET_STRING = URI_BASE_STRING + '?scope=BASE_ONLY&filter=' + MOI_CLASS + \ '&fields=gNBId&fields=gNBIdLength' URI_PATCH_STRING = URI_BASE_STRING + '?scope=BASE_ONLY&filter=' + MOI_CLASS URI_DELETE_STRING = URI_PATCH_STRING +UNAUTHORIZED_MSG="not Authorized" diff --git a/test/mocks/prov-mns-provider/src/tests/test_invalid_requests.py b/test/mocks/prov-mns-provider/src/tests/test_invalid_requests.py new file mode 100644 index 000000000..660f26c64 --- /dev/null +++ b/test/mocks/prov-mns-provider/src/tests/test_invalid_requests.py @@ -0,0 +1,24 @@ +from common import * # pylint: disable=W0614 + +def test_unauthorized(): + '''Check service denies access if + invalid credentials provided''' + + req = requests.get('{0}'.format(URI_GET_STRING), auth=INVALID_AUTH_STRING) + assert req.status_code == requests.codes.unauthorized + assert UNAUTHORIZED_MSG in req.text + + req = requests.put('{0}'.format(URI_PUT_STRING), auth=INVALID_AUTH_STRING, + json=MOI_DATA_TMPL) + assert req.status_code == requests.codes.unauthorized + assert UNAUTHORIZED_MSG in req.text + + req = requests.patch('{0}'.format(URI_PATCH_STRING), + auth=INVALID_AUTH_STRING, json=MOI_DATA_PATCH) + assert req.status_code == requests.codes.unauthorized + assert UNAUTHORIZED_MSG in req.text + + req = requests.delete('{0}'.format(URI_DELETE_STRING), + auth=INVALID_AUTH_STRING) + assert req.status_code == requests.codes.unauthorized + assert UNAUTHORIZED_MSG in req.text diff --git a/test/mocks/prov-mns-provider/src/tests/test_rest_api_endpoints.py b/test/mocks/prov-mns-provider/src/tests/test_rest_api_endpoints.py index 0cc459195..69e66e302 100644 --- a/test/mocks/prov-mns-provider/src/tests/test_rest_api_endpoints.py +++ b/test/mocks/prov-mns-provider/src/tests/test_rest_api_endpoints.py @@ -1,4 +1,4 @@ -from common import * +from common import * # pylint: disable=W0614 def test_put(): '''Validate PUT request''' |