mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-16 08:58:18 +08:00

Co-authored-by: Walter Jin <jinshuhaicc@gmail.com> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: walter from vm <walter.jin@oracle.com>
21 lines
595 B
Python
21 lines
595 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.oci.oci import OCIGENAIProvider
|
|
|
|
|
|
def test_validate_provider_credentials():
|
|
provider = OCIGENAIProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(credentials={})
|
|
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
"oci_config_content": os.environ.get("OCI_CONFIG_CONTENT"),
|
|
"oci_key_content": os.environ.get("OCI_KEY_CONTENT"),
|
|
}
|
|
)
|