mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:28:17 +08:00
79 lines
3.9 KiB
JavaScript
79 lines
3.9 KiB
JavaScript
/// <reference types="cypress" />
|
|
|
|
import generateNodeTests from "../fixtures/testUtilities.js"
|
|
import Configuration from "../../js/Configuration.js"
|
|
import SVGIcon from "../../js/SVGIcon.js"
|
|
|
|
const tests = [
|
|
{
|
|
name: "Flip Flop",
|
|
value: String.raw`
|
|
Begin Object Class=K2Node_MacroInstance Name="K2Node_MacroInstance_1262"
|
|
NodePosX=3984
|
|
NodePosY=-960
|
|
NodeGuid=968059974A02AF6B67D2879EC909179A
|
|
Begin Object Class=EdGraphPin Name="EdGraphPin_59688"
|
|
End Object
|
|
Begin Object Class=EdGraphPin Name="EdGraphPin_59689"
|
|
End Object
|
|
Begin Object Class=EdGraphPin Name="EdGraphPin_59690"
|
|
End Object
|
|
Begin Object Class=EdGraphPin Name="EdGraphPin_59691"
|
|
End Object
|
|
MacroGraphReference=(MacroGraph=EdGraph'/Engine/EditorBlueprintResources/StandardMacros.StandardMacros:FlipFlop',GraphBlueprint=Blueprint'/Engine/EditorBlueprintResources/StandardMacros.StandardMacros',GraphGuid=BFFFAAE4434E166F549665AD1AA89B60)
|
|
Pins(0)=EdGraphPin'EdGraphPin_59688'
|
|
Pins(1)=EdGraphPin'EdGraphPin_59689'
|
|
Pins(2)=EdGraphPin'EdGraphPin_59690'
|
|
Pins(3)=EdGraphPin'EdGraphPin_59691'
|
|
Begin Object Name="EdGraphPin_59688"
|
|
PinType=(PinCategory="exec")
|
|
LinkedTo(0)=EdGraphPin'K2Node_InputKey_1185.EdGraphPin_42090'
|
|
LinkedTo(1)=EdGraphPin'K2Node_InputKey_14487.EdGraphPin_45417'
|
|
End Object
|
|
Begin Object Name="EdGraphPin_59689"
|
|
PinName="A"
|
|
Direction=EGPD_Output
|
|
PinType=(PinCategory="exec")
|
|
LinkedTo(0)=EdGraphPin'K2Node_CallFunction_7370.EdGraphPin_43320'
|
|
End Object
|
|
Begin Object Name="EdGraphPin_59690"
|
|
PinName="B"
|
|
Direction=EGPD_Output
|
|
PinType=(PinCategory="exec")
|
|
LinkedTo(0)=EdGraphPin'K2Node_CallFunction_44249.EdGraphPin_43272'
|
|
End Object
|
|
Begin Object Name="EdGraphPin_59691"
|
|
PinName="IsA"
|
|
Direction=EGPD_Output
|
|
PinType=(PinCategory="bool")
|
|
End Object
|
|
End Object
|
|
`,
|
|
color: Configuration.nodeColors.gray,
|
|
icon: SVGIcon.flipflop,
|
|
pins: 4,
|
|
pinNames: ["A", "B", "Is A"],
|
|
delegate: false,
|
|
development: false,
|
|
additionalTest:
|
|
/** @param {import("../../js/element/NodeElement.js").default} node */
|
|
node => {
|
|
const entity = node.entity
|
|
expect(entity.Class.type).to.be.equal("/Script/BlueprintGraph.K2Node_MacroInstance")
|
|
expect(entity.MacroGraphReference.MacroGraph.type).to.be.equal("/Script/Engine.EdGraph")
|
|
expect(entity.MacroGraphReference.MacroGraph.path).to.be.equal("/Engine/EditorBlueprintResources/StandardMacros.StandardMacros:FlipFlop")
|
|
expect(entity.MacroGraphReference.GraphBlueprint.type).to.be.equal("/Script/Engine.Blueprint")
|
|
expect(entity.MacroGraphReference.GraphBlueprint.path).to.be.equal("/Engine/EditorBlueprintResources/StandardMacros.StandardMacros")
|
|
const pinObjects = Object.keys(entity)
|
|
.filter(k => k.startsWith(Configuration.subObjectAttributeNamePrefix))
|
|
.map(k => /** @type {import("../../js/entity/ObjectEntity.js").default} */(entity[k]))
|
|
.filter(v => v.Class)
|
|
expect(pinObjects).to.be.of.length(4)
|
|
pinObjects.forEach(v => expect(v.getType()).to.be.equal(Configuration.paths.edGraphPinDeprecated))
|
|
expect(entity.getPinEntities()).to.be.of.length(4)
|
|
}
|
|
},
|
|
]
|
|
|
|
generateNodeTests(tests)
|