mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-15 07:48:17 +08:00
18 lines
658 B
Python
18 lines
658 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.google.google import GoogleProvider
|
|
from tests.integration_tests.model_runtime.__mock.google import setup_google_mock
|
|
|
|
|
|
@pytest.mark.parametrize("setup_google_mock", [["none"]], indirect=True)
|
|
def test_validate_provider_credentials(setup_google_mock):
|
|
provider = GoogleProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(credentials={})
|
|
|
|
provider.validate_provider_credentials(credentials={"google_api_key": os.environ.get("GOOGLE_API_KEY")})
|