-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tests for generative content response and change #text to return … (
#144) …all text parts --------- Co-authored-by: David Motsonashvili <davidmotson@google.com>
- Loading branch information
1 parent
3c6c73c
commit c746583
Showing
2 changed files
with
105 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
101 changes: 101 additions & 0 deletions
101
generativeai/src/test/java/com/google/ai/client/generativeai/GenerateContentResponseTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
package com.google.ai.client.generativeai | ||
|
||
import com.google.ai.client.generativeai.type.Candidate | ||
import com.google.ai.client.generativeai.type.FunctionCallPart | ||
import com.google.ai.client.generativeai.type.GenerateContentResponse | ||
import com.google.ai.client.generativeai.type.content | ||
import io.kotest.matchers.collections.shouldHaveSize | ||
import io.kotest.matchers.shouldBe | ||
import org.junit.Test | ||
|
||
internal class GenerateContentResponseTest { | ||
|
||
@Test | ||
fun `generate response should pull all functions requests`() { | ||
val response = | ||
GenerateContentResponse( | ||
candidates = | ||
listOf( | ||
Candidate( | ||
content { | ||
part(FunctionCallPart("blah", mapOf())) | ||
part(FunctionCallPart("blah2", mapOf())) | ||
text("This is a textPart") | ||
}, | ||
listOf(), | ||
listOf(), | ||
null | ||
) | ||
), | ||
null, | ||
null | ||
) | ||
|
||
response.functionCalls shouldHaveSize 2 | ||
} | ||
|
||
@Test | ||
fun `generate response should get strings even if they are not the first part`() { | ||
val response = | ||
GenerateContentResponse( | ||
candidates = | ||
listOf( | ||
Candidate( | ||
content { | ||
part(FunctionCallPart("blah", mapOf())) | ||
part(FunctionCallPart("blah2", mapOf())) | ||
text("This is a textPart") | ||
}, | ||
listOf(), | ||
listOf(), | ||
null | ||
) | ||
), | ||
null, | ||
null | ||
) | ||
|
||
response.text shouldBe "This is a textPart" | ||
} | ||
|
||
@Test | ||
fun `generate response should get strings and concatenate them together`() { | ||
val response = | ||
GenerateContentResponse( | ||
candidates = | ||
listOf( | ||
Candidate( | ||
content { | ||
part(FunctionCallPart("blah", mapOf())) | ||
part(FunctionCallPart("blah2", mapOf())) | ||
text("This is a textPart") | ||
text("This is another textPart") | ||
}, | ||
listOf(), | ||
listOf(), | ||
null | ||
) | ||
), | ||
null, | ||
null | ||
) | ||
|
||
response.text shouldBe "This is a textPart This is another textPart" | ||
} | ||
} |