mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-19 09:09:51 +08:00
24 lines
578 B
Python
24 lines
578 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.jina.jina import JinaProvider
|
|
|
|
|
|
def test_validate_provider_credentials():
|
|
provider = JinaProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
'api_key': 'hahahaha'
|
|
}
|
|
)
|
|
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
'api_key': os.environ.get('JINA_API_KEY')
|
|
}
|
|
)
|