aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/prov-mns-provider/src/tests/test_invalid_requests.py
blob: 08e0e329900f78d1daf95708c9600c04fb86b831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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

def test_bad_moi_class():
    '''Check service returns proper
    http code and error msg if MOI class
    is invalid'''

    req = requests.get('{0}'.format(BAD_CLASS_URI_BASE_STRING),
                       auth=AUTH_STRING)
    assert req.status_code == requests.codes.not_acceptable
    assert INVALID_CLASS_MSG in req.text

    req = requests.put('{0}'.format(BAD_CLASS_URI_BASE_STRING),
                       auth=AUTH_STRING, json=MOI_DATA_TMPL)
    assert req.status_code == requests.codes.not_acceptable
    assert INVALID_CLASS_MSG in req.text

    req = requests.patch('{0}'.format(BAD_CLASS_URI_BASE_STRING),
                         auth=AUTH_STRING, json=MOI_DATA_PATCH)
    assert req.status_code == requests.codes.not_acceptable
    assert INVALID_CLASS_MSG in req.text

    req = requests.delete('{0}'.format(BAD_CLASS_URI_BASE_STRING),
                          auth=AUTH_STRING)
    assert req.status_code == requests.codes.not_acceptable
    assert INVALID_CLASS_MSG in req.text