mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	 d069c668f8
			
		
	
	
		d069c668f8
		
			
		
	
	
	
	
		
			
			Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Garfield Dai <dai.hai@foxmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn>
		
			
				
	
	
		
			24 lines
		
	
	
		
			716 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			716 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| 
 | |
| import pytest
 | |
| 
 | |
| from core.model_runtime.errors.validate import CredentialsValidateFailedError
 | |
| from core.model_runtime.model_providers.google.google import GoogleProvider
 | |
| 
 | |
| from tests.integration_tests.model_runtime.__mock.google import setup_google_mock
 | |
| 
 | |
| @pytest.mark.parametrize('setup_google_mock', [['none']], indirect=True)
 | |
| def test_validate_provider_credentials(setup_google_mock):
 | |
|     provider = GoogleProvider()
 | |
| 
 | |
|     with pytest.raises(CredentialsValidateFailedError):
 | |
|         provider.validate_provider_credentials(
 | |
|             credentials={}
 | |
|         )
 | |
| 
 | |
|     provider.validate_provider_credentials(
 | |
|         credentials={
 | |
|             'google_api_key': os.environ.get('GOOGLE_API_KEY')
 | |
|         }
 | |
|     )
 |