|
| 1 | +// Copyright 2025 Google LLC |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +import 'package:firebase_vertexai/src/error.dart'; |
| 16 | +import 'package:flutter_test/flutter_test.dart'; |
| 17 | + |
| 18 | +void main() { |
| 19 | + group('VertexAI Exceptions', () { |
| 20 | + test('VertexAIException toString', () { |
| 21 | + final exception = VertexAIException('Test message'); |
| 22 | + expect(exception.toString(), 'VertexAIException: Test message'); |
| 23 | + }); |
| 24 | + |
| 25 | + test('InvalidApiKey toString', () { |
| 26 | + final exception = InvalidApiKey('Invalid API key provided.'); |
| 27 | + expect(exception.toString(), 'Invalid API key provided.'); |
| 28 | + }); |
| 29 | + |
| 30 | + test('UnsupportedUserLocation message', () { |
| 31 | + final exception = UnsupportedUserLocation(); |
| 32 | + expect( |
| 33 | + exception.message, 'User location is not supported for the API use.'); |
| 34 | + }); |
| 35 | + |
| 36 | + test('ServiceApiNotEnabled message', () { |
| 37 | + final exception = ServiceApiNotEnabled('projects/test-project'); |
| 38 | + expect( |
| 39 | + exception.message, |
| 40 | + 'The Vertex AI in Firebase SDK requires the Vertex AI in Firebase API ' |
| 41 | + '(`firebasevertexai.googleapis.com`) to be enabled in your Firebase project. Enable this API ' |
| 42 | + 'by visiting the Firebase Console at ' |
| 43 | + 'https://console.firebase.google.com/project/test-project/genai ' |
| 44 | + 'and clicking "Get started". If you enabled this API recently, wait a few minutes for the ' |
| 45 | + 'action to propagate to our systems and then retry.'); |
| 46 | + }); |
| 47 | + |
| 48 | + test('QuotaExceeded toString', () { |
| 49 | + final exception = QuotaExceeded('Quota for this API has been exceeded.'); |
| 50 | + expect(exception.toString(), 'Quota for this API has been exceeded.'); |
| 51 | + }); |
| 52 | + |
| 53 | + test('ServerException toString', () { |
| 54 | + final exception = ServerException('Server error occurred.'); |
| 55 | + expect(exception.toString(), 'Server error occurred.'); |
| 56 | + }); |
| 57 | + |
| 58 | + test('VertexAISdkException toString', () { |
| 59 | + final exception = VertexAISdkException('SDK failed to parse response.'); |
| 60 | + expect( |
| 61 | + exception.toString(), |
| 62 | + 'SDK failed to parse response.\n' |
| 63 | + 'This indicates a problem with the Vertex AI in Firebase SDK. ' |
| 64 | + 'Try updating to the latest version ' |
| 65 | + '(https://pub.dev/packages/firebase_vertexai/versions), ' |
| 66 | + 'or file an issue at ' |
| 67 | + 'https://github.com/firebase/flutterfire/issues.'); |
| 68 | + }); |
| 69 | + |
| 70 | + test('ImagenImagesBlockedException toString', () { |
| 71 | + final exception = |
| 72 | + ImagenImagesBlockedException('All images were blocked.'); |
| 73 | + expect(exception.toString(), 'All images were blocked.'); |
| 74 | + }); |
| 75 | + |
| 76 | + test('LiveWebSocketClosedException toString - DEADLINE_EXCEEDED', () { |
| 77 | + final exception = LiveWebSocketClosedException( |
| 78 | + 'DEADLINE_EXCEEDED: Connection timed out.'); |
| 79 | + expect(exception.toString(), |
| 80 | + 'The current live session has expired. Please start a new session.'); |
| 81 | + }); |
| 82 | + |
| 83 | + test('LiveWebSocketClosedException toString - RESOURCE_EXHAUSTED', () { |
| 84 | + final exception = LiveWebSocketClosedException( |
| 85 | + 'RESOURCE_EXHAUSTED: Too many connections.'); |
| 86 | + expect( |
| 87 | + exception.toString(), |
| 88 | + 'You have exceeded the maximum number of concurrent sessions. ' |
| 89 | + 'Please close other sessions and try again later.'); |
| 90 | + }); |
| 91 | + |
| 92 | + test('LiveWebSocketClosedException toString - Other', () { |
| 93 | + final exception = |
| 94 | + LiveWebSocketClosedException('WebSocket connection closed.'); |
| 95 | + expect(exception.toString(), 'WebSocket connection closed.'); |
| 96 | + }); |
| 97 | + |
| 98 | + group('parseError', () { |
| 99 | + test('parses API_KEY_INVALID', () { |
| 100 | + final json = { |
| 101 | + 'message': 'Invalid API key', |
| 102 | + 'details': [ |
| 103 | + {'reason': 'API_KEY_INVALID'} |
| 104 | + ] |
| 105 | + }; |
| 106 | + final exception = parseError(json); |
| 107 | + expect(exception, isInstanceOf<InvalidApiKey>()); |
| 108 | + expect(exception.message, 'Invalid API key'); |
| 109 | + }); |
| 110 | + |
| 111 | + test('parses UNSUPPORTED_USER_LOCATION', () { |
| 112 | + final json = { |
| 113 | + 'message': 'User location is not supported for the API use.' |
| 114 | + }; |
| 115 | + final exception = parseError(json); |
| 116 | + expect(exception, isInstanceOf<UnsupportedUserLocation>()); |
| 117 | + }); |
| 118 | + |
| 119 | + test('parses QUOTA_EXCEEDED', () { |
| 120 | + final json = {'message': 'Quota exceeded: Limit reached.'}; |
| 121 | + final exception = parseError(json); |
| 122 | + expect(exception, isInstanceOf<QuotaExceeded>()); |
| 123 | + expect(exception.message, 'Quota exceeded: Limit reached.'); |
| 124 | + }); |
| 125 | + |
| 126 | + test('parses SERVICE_API_NOT_ENABLED', () { |
| 127 | + final json = { |
| 128 | + 'message': 'API not enabled', |
| 129 | + 'status': 'PERMISSION_DENIED', |
| 130 | + 'details': [ |
| 131 | + { |
| 132 | + 'metadata': { |
| 133 | + 'service': 'firebasevertexai.googleapis.com', |
| 134 | + 'consumer': 'projects/my-project-id', |
| 135 | + } |
| 136 | + } |
| 137 | + ] |
| 138 | + }; |
| 139 | + final exception = parseError(json); |
| 140 | + expect(exception, isInstanceOf<ServiceApiNotEnabled>()); |
| 141 | + expect( |
| 142 | + (exception as ServiceApiNotEnabled).message, |
| 143 | + 'The Vertex AI in Firebase SDK requires the Vertex AI in Firebase API ' |
| 144 | + '(`firebasevertexai.googleapis.com`) to be enabled in your Firebase project. Enable this API ' |
| 145 | + 'by visiting the Firebase Console at ' |
| 146 | + 'https://console.firebase.google.com/project/my-project-id/genai ' |
| 147 | + 'and clicking "Get started". If you enabled this API recently, wait a few minutes for the ' |
| 148 | + 'action to propagate to our systems and then retry.'); |
| 149 | + }); |
| 150 | + |
| 151 | + test('parses SERVER_ERROR', () { |
| 152 | + final json = {'message': 'Internal server error.'}; |
| 153 | + final exception = parseError(json); |
| 154 | + expect(exception, isInstanceOf<ServerException>()); |
| 155 | + expect(exception.message, 'Internal server error.'); |
| 156 | + }); |
| 157 | + |
| 158 | + test('parses UNHANDLED_FORMAT', () { |
| 159 | + final json = {'unexpected': 'format'}; |
| 160 | + expect(() => parseError(json), |
| 161 | + throwsA(isInstanceOf<VertexAISdkException>())); |
| 162 | + }); |
| 163 | + }); |
| 164 | + }); |
| 165 | +} |
0 commit comments