mirror of
https://github.com/langgenius/dify.git
synced 2025-07-14 04:31:07 +00:00
21 lines
556 B
Python
21 lines
556 B
Python
![]() |
import os
|
||
|
|
||
|
import pytest
|
||
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
||
|
from core.model_runtime.model_providers.tongyi.tongyi import TongyiProvider
|
||
|
|
||
|
|
||
|
def test_validate_provider_credentials():
|
||
|
provider = TongyiProvider()
|
||
|
|
||
|
with pytest.raises(CredentialsValidateFailedError):
|
||
|
provider.validate_provider_credentials(
|
||
|
credentials={}
|
||
|
)
|
||
|
|
||
|
provider.validate_provider_credentials(
|
||
|
credentials={
|
||
|
'dashscope_api_key': os.environ.get('TONGYI_DASHSCOPE_API_KEY')
|
||
|
}
|
||
|
)
|