mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-13 14:58:15 +08:00
22 lines
627 B
Python
22 lines
627 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.spark.spark import SparkProvider
|
|
|
|
|
|
def test_validate_provider_credentials():
|
|
provider = SparkProvider()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
provider.validate_provider_credentials(credentials={})
|
|
|
|
provider.validate_provider_credentials(
|
|
credentials={
|
|
"app_id": os.environ.get("SPARK_APP_ID"),
|
|
"api_secret": os.environ.get("SPARK_API_SECRET"),
|
|
"api_key": os.environ.get("SPARK_API_KEY"),
|
|
}
|
|
)
|