mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 20:21:37 +00:00
24 lines
648 B
Python
24 lines
648 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')
|
||
|
}
|
||
|
)
|