| 
									
										
										
										
											2024-01-02 23:42:00 +08:00
										 |  |  | import os | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import pytest | 
					
						
							|  |  |  | from core.model_runtime.errors.validate import CredentialsValidateFailedError | 
					
						
							|  |  |  | from core.model_runtime.model_providers.openai.openai import OpenAIProvider | 
					
						
							|  |  |  | from tests.integration_tests.model_runtime.__mock.openai import setup_openai_mock | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-12 12:34:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-02 23:42:00 +08:00
										 |  |  | @pytest.mark.parametrize('setup_openai_mock', [['chat']], indirect=True) | 
					
						
							|  |  |  | def test_validate_provider_credentials(setup_openai_mock): | 
					
						
							|  |  |  |     provider = OpenAIProvider() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     with pytest.raises(CredentialsValidateFailedError): | 
					
						
							|  |  |  |         provider.validate_provider_credentials( | 
					
						
							|  |  |  |             credentials={} | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     provider.validate_provider_credentials( | 
					
						
							|  |  |  |         credentials={ | 
					
						
							|  |  |  |             'openai_api_key': os.environ.get('OPENAI_API_KEY') | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     ) |