2024-01-02 23:42:00 +08:00
|
|
|
import os
|
|
|
|
|
|
|
|
import pytest
|
2024-04-18 20:24:05 +08:00
|
|
|
|
2024-01-02 23:42:00 +08:00
|
|
|
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):
|
2024-08-23 23:52:25 +08:00
|
|
|
provider.validate_provider_credentials(credentials={})
|
2024-01-02 23:42:00 +08:00
|
|
|
|
|
|
|
provider.validate_provider_credentials(
|
2024-08-23 23:52:25 +08:00
|
|
|
credentials={"dashscope_api_key": os.environ.get("TONGYI_DASHSCOPE_API_KEY")}
|
2024-01-02 23:42:00 +08:00
|
|
|
)
|