Unreal OpenAI API 1.0.0
TestUtils.h
1#pragma once
2
3#if WITH_AUTOMATION_TESTS
4
5#include "CoreMinimal.h"
6#include "Provider/Types/ModelTypes.h"
7#include "Logging/StructuredLog.h"
8
9DEFINE_LATENT_AUTOMATION_COMMAND_ONE_PARAMETER(FWaitForRequestCompleted, bool&, RequestCompleted);
10DEFINE_LOG_CATEGORY_STATIC(LogTestUtils, All, All);
11
12namespace OpenAI
13{
14namespace Tests
15{
16class TestUtils
17{
18public:
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);
24
25 static bool TestFinishReason(const FString& Reason);
26
27 template <typename ResponseType>
28 static void TestStreamResponse(FAutomationTestBase* Test, const ResponseType& Response, const FString& ModelName, const FString& Oject)
29 {
30 if (!Test)
31 {
32 UE_LOGFMT(LogTestUtils, Error, "Automation test object is invalid");
33 return;
34 }
35
36 // Test->TestTrue("Name should be valid", Response.Model.Equals(ModelName));
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)
41 {
42 Test->TestTrue("Choice index should be valid", Choice.Index == 0);
43 Test->TestTrue("Choice finish_reason should be valid", TestFinishReason(Choice.Finish_Reason));
44 }
45 }
46};
47} // namespace Tests
48} // namespace OpenAI
49
50#endif
Definition: OpenAI.Build.cs:6