mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-19 09:09:51 +08:00
18 lines
688 B
Python
18 lines
688 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.anthropic.anthropic import AnthropicProvider
|
|
from tests.integration_tests.model_runtime.__mock.anthropic import setup_anthropic_mock
|
|
|
|
|
|
@pytest.mark.parametrize("setup_anthropic_mock", [["none"]], indirect=True)
|
|
def test_validate_provider_credentials(setup_anthropic_mock):
|
|
provider = AnthropicProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(credentials={})
|
|
|
|
provider.validate_provider_credentials(credentials={"anthropic_api_key": os.environ.get("ANTHROPIC_API_KEY")})
|