| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- // Copyright 2024 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import Foundation
- import XCTest
- @testable import FirebaseAI
- @available(iOS 15.0, macOS 12.0, macCatalyst 15.0, tvOS 15.0, watchOS 8.0, *)
- final class PartTests: XCTestCase {
- let decoder = JSONDecoder()
- let encoder = JSONEncoder()
- override func setUp() {
- encoder.outputFormatting = .init(
- arrayLiteral: .prettyPrinted, .sortedKeys, .withoutEscapingSlashes
- )
- }
- // MARK: - Part Decoding
- func testDecodeTextPart() throws {
- let expectedText = "Hello, world!"
- let json = """
- {
- "text" : "\(expectedText)"
- }
- """
- let jsonData = try XCTUnwrap(json.data(using: .utf8))
- let part = try decoder.decode(TextPart.self, from: jsonData)
- XCTAssertEqual(part.text, expectedText)
- }
- func testDecodeInlineDataPart() throws {
- let imageBase64 = try PartTests.blueSquareImage()
- let mimeType = "image/png"
- let json = """
- {
- "inlineData" : {
- "data" : "\(imageBase64)",
- "mimeType" : "\(mimeType)"
- }
- }
- """
- let jsonData = try XCTUnwrap(json.data(using: .utf8))
- let part = try decoder.decode(InlineDataPart.self, from: jsonData)
- XCTAssertEqual(part.data, Data(base64Encoded: imageBase64))
- XCTAssertEqual(part.mimeType, mimeType)
- }
- func testDecodeFunctionResponsePart() throws {
- let functionName = "test-function-name"
- let resultParameter = "test-result-parameter"
- let resultValue = "test-result-value"
- let json = """
- {
- "functionResponse" : {
- "name" : "\(functionName)",
- "response" : {
- "\(resultParameter)" : "\(resultValue)"
- }
- }
- }
- """
- let jsonData = try XCTUnwrap(json.data(using: .utf8))
- let part = try decoder.decode(FunctionResponsePart.self, from: jsonData)
- let functionResponse = part.functionResponse
- XCTAssertEqual(functionResponse.name, functionName)
- XCTAssertEqual(functionResponse.response, [resultParameter: .string(resultValue)])
- }
- // MARK: - Part Encoding
- func testEncodeTextPart() throws {
- let expectedText = "Hello, world!"
- let textPart = TextPart(expectedText)
- let jsonData = try encoder.encode(textPart)
- let json = try XCTUnwrap(String(data: jsonData, encoding: .utf8))
- XCTAssertEqual(json, """
- {
- "text" : "\(expectedText)"
- }
- """)
- }
- func testEncodeInlineDataPart() throws {
- let mimeType = "image/png"
- let imageBase64 = try PartTests.blueSquareImage()
- let imageBase64Data = Data(base64Encoded: imageBase64)
- let inlineDataPart = InlineDataPart(data: imageBase64Data!, mimeType: mimeType)
- let jsonData = try encoder.encode(inlineDataPart)
- let json = try XCTUnwrap(String(data: jsonData, encoding: .utf8))
- XCTAssertEqual(json, """
- {
- "inlineData" : {
- "data" : "\(imageBase64)",
- "mimeType" : "\(mimeType)"
- }
- }
- """)
- }
- func testEncodeFileDataPart() throws {
- let mimeType = "image/jpeg"
- let fileURI = "gs://test-bucket/image.jpg"
- let fileDataPart = FileDataPart(uri: fileURI, mimeType: mimeType)
- let jsonData = try encoder.encode(fileDataPart)
- let json = try XCTUnwrap(String(data: jsonData, encoding: .utf8))
- XCTAssertEqual(json, """
- {
- "fileData" : {
- "fileUri" : "\(fileURI)",
- "mimeType" : "\(mimeType)"
- }
- }
- """)
- }
- // MARK: - Helpers
- private static func bundle() -> Bundle {
- #if SWIFT_PACKAGE
- return Bundle.module
- #else // SWIFT_PACKAGE
- return Bundle(for: Self.self)
- #endif // SWIFT_PACKAGE
- }
- private static func blueSquareImage() throws -> String {
- let imageURL = bundle().url(forResource: "blue", withExtension: "png")!
- let imageData = try Data(contentsOf: imageURL)
- return imageData.base64EncodedString()
- }
- }
|