How to use the mkmsdk.api.Api function in mkmsdk

To help you get started, we’ve selected a few mkmsdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github evonove / mkm-sdk / tests / tests_unit / test_api.py View on Github external
def test_request_with_auth_params(mocker):
    mocker.patch("mkmsdk.api.request")
    api = Api("https://sandbox.cardmarket.com/ws/v1.1/output.json")
    mocker.patch.object(api, 'create_auth')
    mocker.patch.object(api, 'handle_response')

    auth_params = {
        "app_token": "my_app_token",
        "app_secret": "my_app_secret",
        "access_token": "my_access_token",
        "access_token_secret": "my_access_token_secret"
    }

    api.request("/games", "get", auth_params=auth_params)

    api.create_auth.assert_called_with(
        "https://sandbox.cardmarket.com/ws/v1.1/output.json/games",
        app_token="my_app_token",
        app_secret="my_app_secret",
github evonove / mkm-sdk / tests / tests_unit / test_api.py View on Github external
def test_handle_request(mocked_response):
    api = Api("https://sandbox.cardmarket.com/ws/v1.1/output.json")

    mocked_response.status_code = 400
    with pytest.raises(exceptions.ConnectionError):
        api.handle_response(mocked_response)

    mocked_response.status_code = 401
    with pytest.raises(exceptions.ConnectionError):
        api.handle_response(mocked_response)

    mocked_response.status_code = 403
    with pytest.raises(exceptions.ConnectionError):
        api.handle_response(mocked_response)

    mocked_response.status_code = 404
    with pytest.raises(exceptions.ConnectionError):
        api.handle_response(mocked_response)
github evonove / mkm-sdk / tests / tests_unit / test_api.py View on Github external
def test_create_auth():
    """
    Verifies that the default Client is used
    when all the tokens are not empty strings.
    """
    api = Api("https://api.cardmarket.com/ws/v1.1/output.json")
    auth = api.create_auth(
        "https://api.cardmarket.com/ws/v1.1/output.json",
        app_token="app_token",
        app_secret="app_secret",
        access_token="access_token",
        access_token_secret="access_token_secret",
    )

    assert isinstance(auth.client, Client)
    assert auth.client.client_key == "app_token"
    assert auth.client.client_secret == "app_secret"
    assert auth.client.resource_owner_key == "access_token"
    assert auth.client.resource_owner_secret == "access_token_secret"
github evonove / mkm-sdk / tests / tests_unit / test_api.py View on Github external
def test_sandbox_mode():
    """Verifies the sandbox endpoint is used when specified."""
    sandbox_api = Api("https://sandbox.cardmarket.com/ws/v1.1/output.json")
    expected_sandbox_base_endpoint = "https://sandbox.cardmarket.com/ws/v1.1/output.json"

    assert sandbox_api.base_endpoint == expected_sandbox_base_endpoint
github evonove / mkm-sdk / tests / tests_unit / test_api.py View on Github external
def test_create_auth_with_empty_string_token():
    """
    Verifies that the custom MKMClient is used
    when access token and access token secret
    are empty strings.
    """
    api = Api("https://api.cardmarket.com/ws/v1.1/output.json")
    auth = api.create_auth(
        "https://api.cardmarket.com/ws/v1.1/output.json",
        app_token="app_token",
        app_secret="app_secret",
        access_token="",
        access_token_secret="",
    )

    assert isinstance(auth.client, MKMClient)
    assert auth.client.client_key == "app_token"
    assert auth.client.client_secret == "app_secret"
    assert auth.client.resource_owner_key == ""
    assert auth.client.resource_owner_secret == ""
github evonove / mkm-sdk / tests / tests_unit / test_api.py View on Github external
def test_endpoint():
    """Verifies the live endpoint is used by default."""
    api = Api("https://api.cardmarket.com/ws/v1.1/output.json")
    expected_live_base_endpoint = "https://api.cardmarket.com/ws/v1.1/output.json"

    assert api.base_endpoint == expected_live_base_endpoint
github evonove / mkm-sdk / mkmsdk / resolvers.py View on Github external
def __init__(self, main_endpoint):
        self.url = ""
        self.method = ""
        self.api = Api(main_endpoint)