mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 04:02:42 +00:00
24 lines
716 B
Python
24 lines
716 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')
|
||
|
}
|
||
|
)
|