Solved

Testing CogniteAuthError with monkeypatch_cognite_client

  • 30 November 2023
  • 3 replies
  • 43 views

Hello, 

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

Regards ,

Hakim Arezki 

icon

Best answer by Dilini Fernando 3 January 2024, 09:01

View original

3 replies

Userlevel 5

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

Userlevel 4
Badge +2

Hi @Hakim AREZKI,

Did the above help you? 

Br,
Dilini 

Userlevel 4
Badge +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