mirror of
https://github.com/langgenius/dify.git
synced 2025-07-12 19:49:42 +00:00
21 lines
541 B
Python
21 lines
541 B
Python
![]() |
import os
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
||
|
from core.model_runtime.model_providers.zhipuai.zhipuai import ZhipuaiProvider
|
||
|
|
||
|
def test_validate_provider_credentials():
|
||
|
provider = ZhipuaiProvider()
|
||
|
|
||
|
with pytest.raises(CredentialsValidateFailedError):
|
||
|
provider.validate_provider_credentials(
|
||
|
credentials={}
|
||
|
)
|
||
|
|
||
|
provider.validate_provider_credentials(
|
||
|
credentials={
|
||
|
'api_key': os.environ.get('ZHIPUAI_API_KEY')
|
||
|
}
|
||
|
)
|