Skip to content

Commit

Permalink
mock auth
Browse files Browse the repository at this point in the history
  • Loading branch information
Fattouh92 committed Sep 2, 2024
1 parent dd2b17a commit c52afa6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from happtiq_commons_google_cloud.gcs_api_service import GcsApiService

@pytest.fixture
def gcs_api_service():
def gcs_api_service(monkeypatch):
monkeypatch.setattr("google.auth.default", MagicMock(return_value=(MagicMock(universe_domain="googleapis.com"),"some-proje")))
return GcsApiService(timeout=30)

def mock_storage_client():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@


@pytest.fixture
def pubsub_api_service():
def pubsub_api_service(monkeypatch):
monkeypatch.setattr("google.auth.default", MagicMock(return_value=(MagicMock(),"some-proje")))
return PubsubApiService()

def test_publish_message(pubsub_api_service, monkeypatch):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from unittest.mock import MagicMock, patch

@pytest.fixture
def secret_manager_api_service():
def secret_manager_api_service(monkeypatch):
monkeypatch.setattr("google.auth.default", MagicMock(return_value=(MagicMock(),"some-proje")))
return SecretManagerApiService()

def test_read_secret(secret_manager_api_service, monkeypatch):
Expand Down

0 comments on commit c52afa6

Please sign in to comment.