3#if WITH_AUTOMATION_TESTS
5#include "CoreMinimal.h"
6#include "Provider/Types/ModelTypes.h"
7#include "Logging/StructuredLog.h"
9DEFINE_LATENT_AUTOMATION_COMMAND_ONE_PARAMETER(FWaitForRequestCompleted,
bool&, RequestCompleted);
10DEFINE_LOG_CATEGORY_STATIC(LogTestUtils, All, All);
19 static FString RemovePunctuation(
const FString& Input);
20 static FString PluginEnumToOpenAIModelName(EAllModelEnum PluginEnum);
21 static FString OpenAIModelNameToPluginEnum(
const FString& ModelName);
22 static FString FileFullPath(
const FString& FileName);
23 static bool IsValidURL(
const FString& URL);
25 static bool TestFinishReason(
const FString& Reason);
27 template <
typename ResponseType>
28 static void TestStreamResponse(FAutomationTestBase* Test,
const ResponseType& Response,
const FString& ModelName,
const FString& Oject)
32 UE_LOGFMT(LogTestUtils, Error,
"Automation test object is invalid");
37 Test->TestTrue(
"Created should be valid", Response.Created > 0);
38 Test->TestTrue(
"ID should be valid", !Response.ID.IsEmpty());
39 Test->TestTrue(
"Object should be valid", Response.Object.Equals(Oject));
40 for (
const auto& Choice : Response.Choices)
42 Test->TestTrue(
"Choice index should be valid", Choice.Index == 0);
43 Test->TestTrue(
"Choice finish_reason should be valid", TestFinishReason(Choice.Finish_Reason));
Definition: OpenAI.Build.cs:6