mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			492 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			492 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| 
 | |
| import pytest
 | |
| 
 | |
| from core.model_runtime.errors.validate import CredentialsValidateFailedError
 | |
| from core.model_runtime.model_providers.siliconflow.siliconflow import SiliconflowProvider
 | |
| 
 | |
| 
 | |
| def test_validate_provider_credentials():
 | |
|     provider = SiliconflowProvider()
 | |
| 
 | |
|     with pytest.raises(CredentialsValidateFailedError):
 | |
|         provider.validate_provider_credentials(credentials={})
 | |
| 
 | |
|     provider.validate_provider_credentials(credentials={"api_key": os.environ.get("API_KEY")})
 | 
