You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
7.5 KiB
C++
168 lines
7.5 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project. For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
#include <Source/Framework/ScriptCanvasTestFixture.h>
|
|
#include <Source/Framework/ScriptCanvasTestUtilities.h>
|
|
|
|
#include <ScriptCanvas/Core/NodeFunctionGeneric.h>
|
|
|
|
#pragma warning( push )
|
|
#pragma warning( disable : 5046) //'function' : Symbol involving type with internal linkage not defined
|
|
|
|
using namespace ScriptCanvasTests;
|
|
|
|
namespace
|
|
{
|
|
|
|
AZ_INLINE void ArgsNoReturn(float)
|
|
{
|
|
UnitTestEventsBus::Broadcast(&UnitTestEvents::SideEffect, "ArgsNoReturn SideFX");
|
|
}
|
|
|
|
AZ_INLINE std::tuple<AZStd::string, bool> ArgsReturnMulti(double input)
|
|
{
|
|
// compile test
|
|
return input >= 0.0
|
|
? std::make_tuple("positive", true)
|
|
: std::make_tuple("negative", false);
|
|
}
|
|
|
|
AZ_INLINE void NoArgsNoReturn()
|
|
{
|
|
UnitTestEventsBus::Broadcast(&UnitTestEvents::SideEffect, "NoArgsNoReturn SideFX");
|
|
}
|
|
|
|
AZ_INLINE float NoArgsReturn()
|
|
{
|
|
UnitTestEventsBus::Broadcast(&UnitTestEvents::SideEffect, "NoArgsReturn SideFX");
|
|
return 0.0f;
|
|
}
|
|
|
|
AZ_INLINE std::tuple<AZStd::string, bool> NoArgsReturnMulti()
|
|
{
|
|
return std::make_tuple("no-args", false);
|
|
}
|
|
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(ArgsNoReturn, "UnitTests", "{980E4400-288B-4DA2-8C5C-BBC5164CA2AB}", "", "One Arg");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_MULTI_RESULTS_NODE(ArgsReturnMulti, "UnitTests", "{D7475558-BD14-4588-BC3A-6B4BD1ACF3B4}", "", "input:One Arg", "output:string", "output:bool");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(NoArgsNoReturn, "UnitTests", "{18BC4E04-7D97-4379-8A36-877881633AA9}", "");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(NoArgsReturn, "UnitTests", "{08E6535A-FCE0-4953-BA3E-59CF5A10073B}", "");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_MULTI_RESULTS_NODE(NoArgsReturnMulti, "UnitTests", "{A73262FA-2756-40D6-A25C-8B98A64348F2}", "", "output:string", "output:bool");
|
|
|
|
// generic types that passed around by reference/pointer should behavior just like the value types
|
|
int MaxReturnByValueInteger(int lhs, int rhs)
|
|
{
|
|
return lhs >= rhs ? lhs : rhs;
|
|
}
|
|
|
|
const int* MaxReturnByPointerInteger(const int* lhs, const int* rhs)
|
|
{
|
|
return (lhs && rhs && (*lhs) >= (*rhs)) ? lhs : rhs;
|
|
}
|
|
|
|
const int& MaxReturnByReferenceInteger(const int& lhs, const int& rhs)
|
|
{
|
|
return lhs >= rhs ? lhs : rhs;
|
|
}
|
|
|
|
std::tuple<TestBehaviorContextObject, int> MaxReturnByValueMulti(TestBehaviorContextObject lhs, TestBehaviorContextObject rhs, int lhsInt, int rhsInt)
|
|
{
|
|
return std::make_tuple
|
|
(lhs.GetValue() >= rhs.GetValue() ? lhs : rhs
|
|
, lhsInt >= rhsInt ? lhsInt : rhsInt);
|
|
}
|
|
|
|
std::tuple<const TestBehaviorContextObject*, const int*> MaxReturnByPointerMulti(const TestBehaviorContextObject* lhs, const TestBehaviorContextObject* rhs, const int* lhsInt, const int* rhsInt)
|
|
{
|
|
return std::make_tuple
|
|
((lhs && rhs && (lhs->GetValue() >= rhs->GetValue())) ? lhs : rhs
|
|
, lhsInt && rhsInt && *lhsInt >= *rhsInt ? lhsInt : rhsInt);
|
|
}
|
|
|
|
std::tuple<const TestBehaviorContextObject&, const int&> MaxReturnByReferenceMulti(const TestBehaviorContextObject& lhs, const TestBehaviorContextObject& rhs, const int& lhsInt, const int& rhsInt)
|
|
{
|
|
return std::forward_as_tuple
|
|
(lhs.GetValue() >= rhs.GetValue() ? lhs : rhs
|
|
, lhsInt >= rhsInt ? lhsInt : rhsInt);
|
|
}
|
|
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(MaxReturnByValue, "UnitTests", "{60C054C6-8A07-4D41-A9E4-E3BB0D20F098}", "", "0", "1");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(MaxReturnByPointer, "UnitTests", "{16AFDE59-31B5-4B49-999F-8B486FC91371}", "", "0", "1");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(MaxReturnByReference, "UnitTests", "{0A1FD51A-1D53-46FC-9A2F-DF711F62FDE9}", "", "0", "1");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(MaxReturnByValueInteger, "UnitTests", "{5165F1BA-248F-434F-9227-B6AC2102D4B5}", "", "0", "1");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(MaxReturnByPointerInteger, "UnitTests", "{BE658D24-8AB0-463B-979D-C829985E96EF}", "", "0", "1");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE(MaxReturnByReferenceInteger, "UnitTests", "{8DE10FF6-9628-4015-A149-4276BF98D2AB}", "", "0", "1");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_MULTI_RESULTS_NODE(MaxReturnByValueMulti, "UnitTests", "{5BE8F2C8-C036-4C82-A7C1-4DCBAC2FA6FC}", "", "0", "1", "0", "1", "Result", "Result");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_MULTI_RESULTS_NODE(MaxReturnByPointerMulti, "UnitTests", "{339BDAB0-BB80-4BFE-B377-12FD08278A8E}", "", "0", "1", "0", "1", "Result", "Result");
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_MULTI_RESULTS_NODE(MaxReturnByReferenceMulti, "UnitTests", "{7FECD272-4348-463C-80CC-45D0C77378A6}", "", "0", "1", "0", "1", "Result", "Result");
|
|
|
|
} // namespace
|
|
|
|
namespace ScriptCanvas
|
|
{
|
|
AZ_INLINE AZ::Vector3 NormalizeWithDefault(const AZ::Vector3& source, const Data::NumberType tolerance, [[maybe_unused]] const Data::BooleanType fakeValueForTestingDefault)
|
|
{
|
|
AZ_TracePrintf("SC", "The fake value for testing default is %s\n", fakeValueForTestingDefault ? "True" : "False");
|
|
return source.GetNormalizedSafe(tolerance);
|
|
}
|
|
|
|
void NormalizeWithDefaultInputOverrides(Node& node) { SetDefaultValuesByIndex< 1, 2 >::_(node, 3.3, true); }
|
|
SCRIPT_CANVAS_GENERIC_FUNCTION_NODE_WITH_DEFAULTS(NormalizeWithDefault, NormalizeWithDefaultInputOverrides, "Math/Vector3", "{1A56B08E-7E48-4240-878A-397A912519B6}", "description placeholder", "Vector", "Tolerance", "Fake Testing Default Value");
|
|
}
|
|
|
|
TEST_F(ScriptCanvasTestFixture, NodeGenerics)
|
|
{
|
|
using namespace ScriptCanvasEditor;
|
|
|
|
RegisterComponentDescriptor<ArgsNoReturnNode>();
|
|
RegisterComponentDescriptor<ArgsReturnMultiNode>();
|
|
RegisterComponentDescriptor<NoArgsNoReturnNode>();
|
|
RegisterComponentDescriptor<NoArgsReturnNode>();
|
|
RegisterComponentDescriptor<NoArgsReturnMultiNode>();
|
|
RegisterComponentDescriptor<NormalizeWithDefaultNode>();
|
|
|
|
UnitTestEventsHandler unitTestHandler;
|
|
unitTestHandler.BusConnect();
|
|
|
|
ScriptCanvas::Graph* graph = nullptr;
|
|
SystemRequestBus::BroadcastResult(graph, &SystemRequests::MakeGraph);
|
|
EXPECT_TRUE(graph != nullptr);
|
|
graph->GetEntity()->Init();
|
|
|
|
const ScriptCanvasId& graphUniqueId = graph->GetScriptCanvasId();
|
|
|
|
AZ::EntityId startID;
|
|
CreateTestNode<ScriptCanvas::Nodes::Core::Start>(graphUniqueId, startID);
|
|
|
|
AZ::EntityId noArgsNoReturnNodeID;
|
|
CreateTestNode<NoArgsNoReturnNode>(graphUniqueId, noArgsNoReturnNodeID);
|
|
AZ::EntityId argsNoReturnNodeID;
|
|
CreateTestNode<ArgsNoReturnNode>(graphUniqueId, argsNoReturnNodeID);
|
|
AZ::EntityId noArgsReturnNodeID;
|
|
CreateTestNode<NoArgsReturnNode>(graphUniqueId, noArgsReturnNodeID);
|
|
|
|
AZ::EntityId normalizeWithDefaultNodeID;
|
|
CreateTestNode<NormalizeWithDefaultNode>(graphUniqueId, normalizeWithDefaultNodeID);
|
|
|
|
AZ::EntityId unused0, unused1;
|
|
CreateTestNode<ArgsReturnMultiNode>(graphUniqueId, unused0);
|
|
CreateTestNode<NoArgsReturnMultiNode>(graphUniqueId, unused1);
|
|
|
|
EXPECT_TRUE(Connect(*graph, startID, "Out", noArgsNoReturnNodeID, "In"));
|
|
EXPECT_TRUE(Connect(*graph, noArgsNoReturnNodeID, "Out", argsNoReturnNodeID, "In"));
|
|
EXPECT_TRUE(Connect(*graph, argsNoReturnNodeID, "Out", noArgsReturnNodeID, "In"));
|
|
|
|
EXPECT_TRUE(Connect(*graph, noArgsReturnNodeID, "Out", normalizeWithDefaultNodeID, "In"));
|
|
|
|
delete graph->GetEntity();
|
|
}
|
|
|
|
|
|
#pragma warning( pop )
|