Skip to main content
Solved

Testing CogniteAuthError with monkeypatch_cognite_client


Hello, 

is it possible to test the  CogniteAuthError using monkeypatch context manager  ?

Regards ,

Hakim Arezki 

Best answer by Dilini Fernando

Hi @Hakim AREZKI,

I hope the above helped you. As of now, I will close this thread. If you have any questions, please feel free to add a comment.

Best regards,
Dilini

View original
Did this topic help you find an answer to your question?

Pierre  Pernot
Seasoned Practitioner

Hello Hakim,

 

You can test for this error as follows. You will need to adapt the Pytest fixture to your needs.

 

import pytest
from cognite.client import CogniteClient
from cognite.client.exceptions import CogniteAuthError
from cognite.client.testing import monkeypatch_cognite_client


@pytest.fixture
def cognite_client():
    with monkeypatch_cognite_client() as client:
        client.assets.list.side_effect = CogniteAuthError
        yield client


def test_auth_error(cognite_client: CogniteClient):
    with pytest.raises(CogniteAuthError):
        cognite_client.assets.list()

Please let us know if you need more info.

 

Pierre


Dilini Fernando
Seasoned Practitioner
Forum|alt.badge.img+2

Hi @Hakim AREZKI,

Did the above help you? 

Br,
Dilini 


Dilini Fernando
Seasoned Practitioner
Forum|alt.badge.img+2

Hi @Hakim AREZKI,

I hope the above helped you. As of now, I will close this thread. If you have any questions, please feel free to add a comment.

Best regards,
Dilini


Reply


Cookie Policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings