mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-15 15:38:17 +08:00

Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Garfield Dai <dai.hai@foxmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn>
26 lines
768 B
Python
26 lines
768 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.chatglm.chatglm import ChatGLMProvider
|
|
|
|
from tests.integration_tests.model_runtime.__mock.openai import setup_openai_mock
|
|
|
|
@pytest.mark.parametrize('setup_openai_mock', [['chat']], indirect=True)
|
|
def test_validate_provider_credentials(setup_openai_mock):
|
|
provider = ChatGLMProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
'api_base': 'hahahaha'
|
|
}
|
|
)
|
|
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
'api_base': os.environ.get('CHATGLM_API_BASE')
|
|
}
|
|
)
|