Ejemplo n.º 1
0
def test_req_input_header_obj(test_endpoint):
    """Test that ValueError is raised if the header is missing any required keys"""

    with pytest.raises(ValueError):
        required_headers = {
            "X-CP-API-ID": str,
            "X-CP-API-KEY": str,
            "X-ECM-API-ID": str,
            "X-ECM-API-KEY": str,
            "Content-Type": str
        }
        req(endpoint=test_endpoint, headers=missingreq(required_headers))
Ejemplo n.º 2
0
def test_req_input_endpoint_obj():
    """Test that TypeError is raised if the passed endpoint is not a valid Endpoint object"""

    with pytest.raises(TypeError):
        headers = {
            "X-CP-API-ID": "test",
            "X-CP-API-KEY": "test",
            "X-ECM-API-ID": "test",
            "X-ECM-API-KEY": "test",
            "Content-Type": "application/json"
        }

        req(endpoint=randstr(12), headers=headers)
Ejemplo n.º 3
0
def test_call_response_json_obj(headers, accounts, adapter, session):
    """Test that the response object exists and is a dictionary"""

    match = re.compile("/api/v2/")

    adapter.register_uri("GET",
                         match,
                         status_code=200,
                         json={
                             "data": [{
                                 "id": 42,
                                 "is_disabled": False
                             }, {
                                 "id": 23098,
                                 "is_disabled": False
                             }, {
                                 "id": 24,
                                 "is_disabled": False
                             }],
                             "meta": {
                                 "limit": 20,
                                 "next": None,
                                 "offset": 0,
                                 "previous": None
                             }
                         })
    session.mount("https://www.cradlepointecm.com", adapter)

    accounts.method = "GET"
    accounts.params = {"account": 999}
    ep_req = req(endpoint=accounts, headers=headers)

    assert isinstance(call(ep_req, session=session), dict)
Ejemplo n.º 4
0
def test_call_response_no_next(headers, accounts, adapter, session):
    """Test that response objects without a 'next' element still return the response object"""

    match = re.compile("account=999")

    adapter.register_uri("GET",
                         match,
                         status_code=200,
                         json={
                             "data": [{
                                 "account": 999,
                                 "id": 12,
                                 "name": "testing"
                             }],
                             "meta": {
                                 "limit": 20,
                                 "next": None,
                                 "offset": 0,
                                 "previous": None
                             }
                         })

    session.mount("https://www.cradlepointecm.com", adapter)
    accounts.method = "GET"
    accounts.params = {"account": 999}
    ep_req = req(endpoint=accounts, headers=headers)

    assert call(ep_req, session=session)["meta"]["limit"] == 20
Ejemplo n.º 5
0
def test_call_response_with_next(headers, accounts, adapter, session):
    """Test that fetching 'next' URLs grows the response data object"""
    match = re.compile("account=999")
    match2 = re.compile("more=1")

    adapter.register_uri(
        "GET",
        match,
        status_code=200,
        json={
            "data": [{
                "account": 999,
                "id": 12,
                "name": "testing"
            }],
            "meta": {
                "limit":
                20,
                "next":
                "https://www.cradlepointecm.com/api/v2/accounts/?more=1",
                "offset":
                0,
                "previous":
                "https://www.cradlepointecm.com/api/v2/accounts/?account=999"
            }
        })

    adapter.register_uri(
        "GET",
        match2,
        status_code=200,
        json={
            "data": [{
                "account": 1000,
                "id": 21,
                "name": "testing2"
            }],
            "meta": {
                "limit":
                20,
                "next":
                None,
                "offset":
                0,
                "previous":
                "https://www.cradlepointecm.com/api/v2/accounts/?more=1"
            }
        })

    session.mount("https://www.cradlepointecm.com", adapter)
    accounts.method = "GET"
    accounts.params = {"account": 999}
    ep_req = req(endpoint=accounts, headers=headers)

    assert len(call(ep_req, session=session)["data"]) == 2
Ejemplo n.º 6
0
def test_req_output_obj():
    """Test that response for valid input is a PreparedRequest object"""

    headers = {
        "X-CP-API-ID": "test",
        "X-CP-API-KEY": "test",
        "X-ECM-API-ID": "test",
        "X-ECM-API-KEY": "test",
        "Content-Type": "application/json"
    }

    ep_filters = {"account__in": [1, 2, 3, 4]}

    endpoint = Accounts(method="GET", filters=ep_filters, expands=["account"])

    assert isinstance(req(endpoint=endpoint, headers=headers), PreparedRequest)
Ejemplo n.º 7
0
def test_call_response_to_error_codes(headers, accounts, adapter, session):
    """Test that response objects with status codes in the error code list return error details"""

    match = re.compile("account=999")

    adapter.register_uri("GET",
                         match,
                         status_code=random.choice([
                             302, 400, 401, 403, 404, 405, 409, 429, 500, 502
                         ]),
                         json={
                             "exception": {
                                 "message": "forbidden",
                                 "type": "error"
                             },
                             "errors": []
                         })

    session.mount("https://www.cradlepointecm.com", adapter)
    accounts.method = "GET"
    accounts.params = {"account": 999}
    ep_req = req(endpoint=accounts, headers=headers)

    assert call(ep_req, session=session)["NetCloudAPI Error"] is not None