mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 17:14:41 +08:00
755 lines
31 KiB
JavaScript
755 lines
31 KiB
JavaScript
import { expect, test } from "@playwright/test"
|
|
import Utility from "../js/Utility.js"
|
|
import AlternativesEntity from "../js/entity/AlternativesEntity.js"
|
|
import ArrayEntity from "../js/entity/ArrayEntity.js"
|
|
import BooleanEntity from "../js/entity/BooleanEntity.js"
|
|
import FormatTextEntity from "../js/entity/FormatTextEntity.js"
|
|
import GuidEntity from "../js/entity/GuidEntity.js"
|
|
import IntegerEntity from "../js/entity/IntegerEntity.js"
|
|
import KeyBindingEntity from "../js/entity/KeyBindingEntity.js"
|
|
import LinearColorEntity from "../js/entity/LinearColorEntity.js"
|
|
import NaturalNumberEntity from "../js/entity/NaturalNumberEntity.js"
|
|
import NullEntity from "../js/entity/NullEntity.js"
|
|
import NumberEntity from "../js/entity/NumberEntity.js"
|
|
import ObjectReferenceEntity from "../js/entity/ObjectReferenceEntity.js"
|
|
import PinEntity from "../js/entity/PinEntity.js"
|
|
import RotatorEntity from "../js/entity/RotatorEntity.js"
|
|
import SimpleSerializationRotatorEntity from "../js/entity/SimpleSerializationRotatorEntity.js"
|
|
import SimpleSerializationVector2DEntity from "../js/entity/SimpleSerializationVector2DEntity.js"
|
|
import SimpleSerializationVectorEntity from "../js/entity/SimpleSerializationVectorEntity.js"
|
|
import StringEntity from "../js/entity/StringEntity.js"
|
|
import SymbolEntity from "../js/entity/SymbolEntity.js"
|
|
import UnknownKeysEntity from "../js/entity/UnknownKeysEntity.js"
|
|
import Vector2DEntity from "../js/entity/Vector2DEntity.js"
|
|
import VectorEntity from "../js/entity/VectorEntity.js"
|
|
import Grammar from "../js/serialization/Grammar.js"
|
|
import SerializerFactory from "../js/serialization/SerializerFactory.js"
|
|
import initializeSerializerFactory from "../js/serialization/initializeSerializerFactory.js"
|
|
import IEntity from "../js/entity/IEntity.js"
|
|
import ColorChannelEntity from "../js/entity/ColorChannelEntity.js"
|
|
|
|
test.beforeAll(() => initializeSerializerFactory())
|
|
|
|
test.describe.configure({ mode: "parallel" })
|
|
|
|
test("ArrayEntity", () => {
|
|
{
|
|
const grammar = ArrayEntity.grammar
|
|
let value = grammar.parse("()")
|
|
expect(value).toEqual(new ArrayEntity([]))
|
|
expect(value.toString()).toEqual("()")
|
|
value = grammar.parse("( )")
|
|
expect(value).toEqual(new ArrayEntity([]))
|
|
expect(value.toString()).toEqual("()")
|
|
value = grammar.parse("(1, 2, 3, 4, 5, 6)")
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new NumberEntity(1),
|
|
new NumberEntity(2),
|
|
new NumberEntity(3),
|
|
new NumberEntity(4),
|
|
new NumberEntity(5),
|
|
new NumberEntity(6),
|
|
]))
|
|
expect(value.toString()).toEqual("(1,2,3,4,5,6)")
|
|
expect(value.Self().className()).toEqual("ArrayEntity")
|
|
value.values.map(v => v.Self().className()).forEach(v => expect(v).toEqual("NumberEntity"))
|
|
value = grammar.parse("(1, 2, )")
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new NumberEntity(1),
|
|
new NumberEntity(2),
|
|
]))
|
|
expect(value.toString()).toEqual("(1,2,)")
|
|
expect(grammar.parse("( - )")).toThrow("Could not parse")
|
|
}
|
|
{
|
|
const grammar = ArrayEntity.of(NumberEntity).grammar
|
|
let value = grammar.parse("(2,4,6,8)")
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new NumberEntity(2),
|
|
new NumberEntity(4),
|
|
new NumberEntity(6),
|
|
new NumberEntity(8),
|
|
]))
|
|
expect(value.toString()).toEqual("(2,4,6,8)")
|
|
}
|
|
{
|
|
const grammar = ArrayEntity.of(IntegerEntity).grammar
|
|
let value = grammar.parse("(-0, -1, -2)")
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new IntegerEntity(0),
|
|
new IntegerEntity(-1),
|
|
new IntegerEntity(-2),
|
|
]))
|
|
expect(value.toString()).toEqual("(0,-1,-2)")
|
|
value.values.map(v => v.Self().className()).forEach(v => expect(v).toEqual("IntegerEntity"))
|
|
value = grammar.parse("(-0, -1, -2,)")
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new IntegerEntity(0),
|
|
new IntegerEntity(-1),
|
|
new IntegerEntity(-2),
|
|
]))
|
|
expect(value.toString()).toEqual("(0,-1,-2,)")
|
|
expect(() => grammar.parse("(-1, -2.1, -3)")).toThrow("Could not parse")
|
|
}
|
|
{
|
|
const grammar = ArrayEntity.grammar
|
|
let value = grammar.parse(`(
|
|
"alpha",
|
|
"beta",
|
|
123,
|
|
3BEF2168446CAA32D5B54289FAB2F0BA,
|
|
Some(a=1, b="number:\\"2\\"")
|
|
)`)
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new StringEntity("alpha"),
|
|
new StringEntity("beta"),
|
|
new NumberEntity(123),
|
|
new GuidEntity("3BEF2168446CAA32D5B54289FAB2F0BA"),
|
|
new (UnknownKeysEntity.withLookbehind("Some"))({
|
|
a: new NumberEntity(1),
|
|
b: new StringEntity('number:"2"'),
|
|
})
|
|
]))
|
|
expect(value.toString()).toEqual('("alpha","beta",123,3BEF2168446CAA32D5B54289FAB2F0BA,Some(a=1,b="number:\\"2\\""))')
|
|
expect(value.values.map(v => v.Self().className())).toEqual([
|
|
"StringEntity",
|
|
"StringEntity",
|
|
"NumberEntity",
|
|
"GuidEntity",
|
|
"UnknownKeysEntity",
|
|
])
|
|
value = grammar.parse(`(
|
|
A(first = (9,8,7,6,5), second = 00000000000000000000000000000000),
|
|
B(key="hello"),
|
|
)`)
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new UnknownKeysEntity({
|
|
lookbehind: new StringEntity("A"),
|
|
first: new ArrayEntity([
|
|
new NumberEntity(9),
|
|
new NumberEntity(8),
|
|
new NumberEntity(7),
|
|
new NumberEntity(6),
|
|
new NumberEntity(5),
|
|
]),
|
|
second: new GuidEntity("00000000000000000000000000000000"),
|
|
}),
|
|
new UnknownKeysEntity({
|
|
lookbehind: new StringEntity("B"),
|
|
key: new StringEntity("hello"),
|
|
})
|
|
]))
|
|
expect(value.toString()).toEqual('(A(first=(9,8,7,6,5),second=00000000000000000000000000000000),B(key="hello"),)')
|
|
}
|
|
{
|
|
// Nested
|
|
let value = ArrayEntity.of(AlternativesEntity.accepting(
|
|
IntegerEntity,
|
|
ArrayEntity.of(IntegerEntity)
|
|
)).grammar.parse("((1, 2), (3, 4), 5)")
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new ArrayEntity([new IntegerEntity(1), new IntegerEntity(2)]),
|
|
new ArrayEntity([new IntegerEntity(3), new IntegerEntity(4)]),
|
|
new IntegerEntity(5),
|
|
]))
|
|
expect(value.toString()).toEqual("((1,2),(3,4),5)")
|
|
}
|
|
{
|
|
const grammar = ArrayEntity.grammar
|
|
let value = grammar.parse('(((1, "2"), (3, 4)), "5")')
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new ArrayEntity([
|
|
new ArrayEntity([new NumberEntity(1), new StringEntity("2")]),
|
|
new ArrayEntity([new NumberEntity(3), new NumberEntity(4)])
|
|
]),
|
|
new StringEntity("5")
|
|
]))
|
|
expect(value.toString()).toEqual('(((1,"2"),(3,4)),"5")')
|
|
}
|
|
{
|
|
let value = ArrayEntity.grammar.parse(`(
|
|
One(a = (1,(2,(3,(4)))), b = ()),
|
|
)`)
|
|
expect(value).toEqual(new ArrayEntity([
|
|
new UnknownKeysEntity({
|
|
lookbehind: "One",
|
|
a: new ArrayEntity([
|
|
new NumberEntity(1),
|
|
new ArrayEntity([
|
|
new NumberEntity(2),
|
|
new ArrayEntity([
|
|
new NumberEntity(3),
|
|
new ArrayEntity([
|
|
new NumberEntity(4),
|
|
])
|
|
])
|
|
])
|
|
]),
|
|
b: new NullEntity(),
|
|
}),
|
|
]))
|
|
expect(value.toString()).toEqual("(One(a=(1,(2,(3,(4)))),b=()),)")
|
|
}
|
|
})
|
|
|
|
test("Boolean", () => {
|
|
let grammar = BooleanEntity.grammar
|
|
let value = grammar.parse("true")
|
|
expect(value).toBeInstanceOf(BooleanEntity)
|
|
expect(value).toEqual(new BooleanEntity(true))
|
|
expect(value.toString()).toEqual("true")
|
|
value = grammar.parse("True")
|
|
expect(value).toBeInstanceOf(BooleanEntity)
|
|
expect(value).toEqual(new BooleanEntity(true))
|
|
expect(value.toString()).toEqual("True")
|
|
value = grammar.parse("false")
|
|
expect(value).toBeInstanceOf(BooleanEntity)
|
|
expect(value).toEqual(new BooleanEntity(false))
|
|
expect(value.toString()).toEqual("false")
|
|
value = grammar.parse("False")
|
|
expect(value).toBeInstanceOf(BooleanEntity)
|
|
expect(value).toEqual(new BooleanEntity(false))
|
|
expect(value.toString()).toEqual("False")
|
|
expect(() => grammar.parse("truee")).toThrow("Could not parse")
|
|
})
|
|
|
|
test("FormatTextEntity", () => {
|
|
let grammar = FormatTextEntity.grammar
|
|
|
|
let value = grammar.parse('LOCGEN_FORMAT_NAMED(NSLOCTEXT("KismetSchema", "SplitPinFriendlyNameFormat", "{PinDisplayName} {ProtoPinDisplayName}"), "PinDisplayName", "Out Hit", "ProtoPinDisplayName", "Blocking Hit")')
|
|
expect(value.print()).toEqual("Out Hit Blocking Hit")
|
|
expect(value.toString())
|
|
.toEqual('LOCGEN_FORMAT_NAMED(NSLOCTEXT("KismetSchema", "SplitPinFriendlyNameFormat", "{PinDisplayName} {ProtoPinDisplayName}"), "PinDisplayName", "Out Hit", "ProtoPinDisplayName", "Blocking Hit")')
|
|
|
|
value = grammar.parse(String.raw`LOCGEN_FORMAT_ORDERED(
|
|
NSLOCTEXT(
|
|
"PCGSettings",
|
|
"OverridableParamPinTooltip",
|
|
"{0}Attribute type is \"{1}\" and its exact name is \"{2}\""
|
|
),
|
|
"If InRangeMin = InRangeMax, then that density value is mapped to the average of OutRangeMin and OutRangeMax\n",
|
|
"float",
|
|
"InRangeMin"
|
|
)`)
|
|
expect(value.print())
|
|
.toEqual(`If InRangeMin = InRangeMax, then that density value is mapped to the average of OutRangeMin and OutRangeMax\nAttribute type is "float" and its exact name is "InRangeMin"`)
|
|
expect(value.toString())
|
|
.toEqual(String.raw`LOCGEN_FORMAT_ORDERED(NSLOCTEXT("PCGSettings", "OverridableParamPinTooltip", "{0}Attribute type is \"{1}\" and its exact name is \"{2}\""), "If InRangeMin = InRangeMax, then that density value is mapped to the average of OutRangeMin and OutRangeMax\n", "float", "InRangeMin")`)
|
|
expect(() => grammar.parse("LOCGEN_FORMAT_NAMED")).toThrow("Could not parse")
|
|
})
|
|
|
|
test("GuidEntity", () => {
|
|
let grammar = GuidEntity.grammar
|
|
|
|
let value = grammar.parse("0556a3ecabf648d0a5c07b2478e9dd32")
|
|
expect(value).toBeInstanceOf(GuidEntity)
|
|
expect(value).toEqual(new GuidEntity("0556a3ecabf648d0a5c07b2478e9dd32"))
|
|
expect(value.toString()).toEqual("0556a3ecabf648d0a5c07b2478e9dd32")
|
|
|
|
value = grammar.parse("64023BC344E0453DBB583FAC411489BC")
|
|
expect(value).toBeInstanceOf(GuidEntity)
|
|
expect(value).toEqual(new GuidEntity("64023BC344E0453DBB583FAC411489BC"))
|
|
expect(value.toString()).toEqual("64023BC344E0453DBB583FAC411489BC")
|
|
|
|
value = grammar.parse("6edC4a425ca948da8bC78bA52DED6C6C")
|
|
expect(value).toBeInstanceOf(GuidEntity)
|
|
expect(value).toEqual(new GuidEntity("6edC4a425ca948da8bC78bA52DED6C6C"))
|
|
expect(value.toString()).toEqual("6edC4a425ca948da8bC78bA52DED6C6C")
|
|
|
|
expect(() => grammar.parse("172087193 9B04362973544B3564FDB2C")).toThrow("Could not parse")
|
|
expect(() => grammar.parse("E25F14F8F3E9441AB07153E7DA2BA2B")).toThrow("Could not parse")
|
|
expect(() => grammar.parse("A78988B0097E48418C8CB87EC5A67ABF7")).toThrow("Could not parse")
|
|
})
|
|
|
|
test("IntegerEntity", () => {
|
|
let grammar = IntegerEntity.grammar
|
|
|
|
let value = grammar.parse("0")
|
|
expect(value).toEqual(new IntegerEntity(0))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
value = grammar.parse("+0")
|
|
expect(value).toEqual(new IntegerEntity(0))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
value = grammar.parse("-0")
|
|
expect(value).toEqual(new IntegerEntity(0))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
value = grammar.parse("99")
|
|
expect(value).toEqual(new IntegerEntity(99))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
value = grammar.parse("-8685")
|
|
expect(value).toEqual(new IntegerEntity(-8685))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
value = grammar.parse("+555")
|
|
expect(value).toEqual(new IntegerEntity(555))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
value = grammar.parse("1000000000")
|
|
expect(value).toEqual(new IntegerEntity(1000000000))
|
|
expect(value).toBeInstanceOf(IntegerEntity)
|
|
|
|
expect(() => grammar.parse("1.2").value).toThrow()
|
|
})
|
|
|
|
test("KeyBindingEntity", () => {
|
|
let grammar = KeyBindingEntity.grammar
|
|
|
|
let value = grammar.parse("A")
|
|
expect(value).toEqual(new KeyBindingEntity({ Key: new SymbolEntity("A") }))
|
|
expect(value).toBeInstanceOf(KeyBindingEntity)
|
|
expect(value.toString()).toEqual("(Key=A)")
|
|
|
|
value = grammar.parse("(bCtrl=True,Key=A)")
|
|
expect(value).toEqual(new KeyBindingEntity({ bCtrl: new BooleanEntity(true), Key: new SymbolEntity("A") }))
|
|
expect(value).toBeInstanceOf(KeyBindingEntity)
|
|
expect(value.toString()).toEqual("(bCtrl=True,Key=A)")
|
|
|
|
value = grammar.parse("(bCtrl=false,bShift=false,bCmd=true,bAlt=false,Key=X)")
|
|
expect(value).toBeInstanceOf(KeyBindingEntity)
|
|
expect(value).toEqual(new KeyBindingEntity({
|
|
bCtrl: new BooleanEntity(false),
|
|
bShift: new BooleanEntity(false),
|
|
bCmd: new BooleanEntity(true),
|
|
bAlt: new BooleanEntity(false),
|
|
Key: new SymbolEntity("X"),
|
|
}))
|
|
expect(value.toString()).toEqual("(bCtrl=False,bShift=False,bCmd=True,bAlt=False,Key=X)")
|
|
|
|
value = grammar.parse("( bCtrl= false \n, Key \n\n\n =Y ,bAlt=true )")
|
|
expect(value).toEqual(new KeyBindingEntity({
|
|
bCtrl: new BooleanEntity(false),
|
|
Key: new SymbolEntity("Y"),
|
|
bAlt: new BooleanEntity(true),
|
|
}))
|
|
expect(value).toBeInstanceOf(KeyBindingEntity)
|
|
})
|
|
|
|
test("LinearColorEntity", () => {
|
|
const grammar = LinearColorEntity.grammar
|
|
|
|
let value = LinearColorEntity.getWhite()
|
|
expect(value).toEqual(new LinearColorEntity({
|
|
R: new ColorChannelEntity(1),
|
|
G: new ColorChannelEntity(1),
|
|
B: new ColorChannelEntity(1),
|
|
A: new ColorChannelEntity(1),
|
|
}))
|
|
expect(value.toRGBA()).toStrictEqual([255, 255, 255, 255])
|
|
expect(value.toRGBAString()).toStrictEqual("FFFFFFFF")
|
|
expect(value.toNumber()).toStrictEqual(-1)
|
|
expect(value.toHSVA()).toStrictEqual([0, 0, 1, 1])
|
|
expect(value.toString()).toStrictEqual("(R=1.000000,G=1.000000,B=1.000000,A=1.000000)")
|
|
|
|
value = grammar.parse("(R=1,G=0,B=0)")
|
|
expect(value).toEqual(new LinearColorEntity({
|
|
R: new ColorChannelEntity(1),
|
|
G: new ColorChannelEntity(0),
|
|
B: new ColorChannelEntity(0),
|
|
A: new ColorChannelEntity(1),
|
|
}))
|
|
expect(value.toRGBA()).toStrictEqual([255, 0, 0, 255])
|
|
expect(value.toRGBAString()).toStrictEqual("FF0000FF")
|
|
expect(value.toNumber()).toStrictEqual(-16776961)
|
|
expect(value.toHSVA()).toStrictEqual([0, 1, 1, 1])
|
|
expect(value.toString()).toStrictEqual("(R=1.000000,G=0.000000,B=0.000000,A=1.000000)")
|
|
|
|
value = grammar.parse("(R=0.000000,G=0.660000,B=1.000000,A=1.000000)")
|
|
expect(value).toEqual(new LinearColorEntity({
|
|
R: new ColorChannelEntity(0),
|
|
G: new ColorChannelEntity(0.66),
|
|
B: new ColorChannelEntity(1),
|
|
A: new ColorChannelEntity(1),
|
|
}))
|
|
expect(value.toRGBA()).toStrictEqual([0, 168, 255, 255])
|
|
expect(value.toRGBAString()).toStrictEqual("00A8FFFF")
|
|
expect(value.toNumber()).toStrictEqual(11075583)
|
|
expect(value.toHSVA()).toStrictEqual([0.55666666666666666666, 1, 1, 1])
|
|
expect(value.toString()).toStrictEqual("(R=0.000000,G=0.660000,B=1.000000,A=1.000000)")
|
|
|
|
value = grammar.parse("(B=0.04394509003266556,G=0.026789300067696642,A=0.83663232408635,R=0.6884158028074934,)")
|
|
expect(value.toRGBA()).toStrictEqual([176, 7, 11, 213])
|
|
expect(value.toRGBAString()).toStrictEqual("B0070BD5")
|
|
expect(value.toNumber()).toStrictEqual(-1341715499)
|
|
expect(value.toHSVA().map(v => Utility.roundDecimals(v, 3))).toStrictEqual([0.996, 0.961, 0.688, 0.837])
|
|
|
|
value = grammar.parse(`(
|
|
A = 0.327 ,
|
|
R=0.530 , G = 0.685
|
|
,B
|
|
= 0.9 ,)`)
|
|
expect(value.toRGBA()).toStrictEqual([135, 175, 230, 83])
|
|
expect(value.toRGBAString()).toStrictEqual("87AFE653")
|
|
expect(value.toNumber()).toStrictEqual(-2018515373)
|
|
expect(value.toHSVA().map(v => Utility.roundDecimals(v, 3))).toStrictEqual([0.597, 0.411, 0.9, 0.327])
|
|
|
|
value = grammar.parse("(R=0.000000,G=0.660000,A=1.000000)")
|
|
expect(value).toEqual(new LinearColorEntity({
|
|
R: new ColorChannelEntity(0),
|
|
G: new ColorChannelEntity(0.66),
|
|
B: new ColorChannelEntity(0),
|
|
A: new ColorChannelEntity(1),
|
|
}))
|
|
})
|
|
|
|
test("NullEntity", () => {
|
|
const grammar = NullEntity.grammar
|
|
let value = grammar.parse("()")
|
|
expect(value).toBeInstanceOf(NullEntity)
|
|
expect(value).toEqual(new NullEntity())
|
|
expect(value.toString()).toEqual("()")
|
|
expect(() => grammar.parse("123")).toThrow("Could not parse")
|
|
expect(() => grammar.parse("(a)")).toThrow("Could not parse")
|
|
expect(() => grammar.parse("(")).toThrow("Could not parse")
|
|
})
|
|
|
|
test("NumberEntity", () => {
|
|
const grammar = NumberEntity.grammar
|
|
|
|
expect(grammar.parse("0")).toBeCloseTo(0, 0.00001)
|
|
expect(grammar.parse("+0")).toBeCloseTo(0, 0.00001)
|
|
expect(grammar.parse("-0")).toBeCloseTo(0, 0.00001)
|
|
expect(grammar.parse("5")).toBeCloseTo(5, 0.00001)
|
|
expect(grammar.parse("0.05")).toBeCloseTo(0.05, 0.00001)
|
|
expect(grammar.parse("-999.666")).toBeCloseTo(-999.666, 0.001)
|
|
expect(grammar.parse("+45.4545")).toBeCloseTo(45.4545, 0.001)
|
|
expect(grammar.parse("+1000000000")).toBeCloseTo(1E9, 0.1)
|
|
expect(grammar.parse("inf")).toBe(Number.POSITIVE_INFINITY)
|
|
expect(grammar.parse("+inf")).toBe(Number.POSITIVE_INFINITY)
|
|
expect(grammar.parse("-inf")).toBe(Number.NEGATIVE_INFINITY)
|
|
expect(() => grammar.parse("alpha")).toThrow()
|
|
})
|
|
|
|
test("ObjectReferenceEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(ObjectReferenceEntity)
|
|
|
|
let reference = serializer.read("Class")
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({ type: "Class", path: "" })
|
|
expect(serializer.write(reference)).toBe("Class")
|
|
|
|
reference = serializer.read(`Class'/Script/ShooterGame.ShooterGameMode'`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({ type: "Class", path: "/Script/ShooterGame.ShooterGameMode" })
|
|
expect(serializer.write(reference)).toBe(`Class'/Script/ShooterGame.ShooterGameMode'`)
|
|
|
|
reference = serializer.read(`EdGraphPin'EdGraphPin_45417'`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({ type: "EdGraphPin", path: "EdGraphPin_45417" })
|
|
expect(serializer.write(reference)).toBe(`EdGraphPin'EdGraphPin_45417'`)
|
|
|
|
reference = serializer.read(`EdGraphPin'"K2Node_DynamicCast_2126.EdGraphPin_3990988"'`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({ type: "EdGraphPin", path: "K2Node_DynamicCast_2126.EdGraphPin_3990988" })
|
|
expect(serializer.write(reference)).toBe(`EdGraphPin'"K2Node_DynamicCast_2126.EdGraphPin_3990988"'`)
|
|
|
|
reference = serializer.read(
|
|
`"/Script/Engine.MaterialExpressionMaterialFunctionCall'MaterialExpressionMaterialFunctionCall_0'"`
|
|
)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "/Script/Engine.MaterialExpressionMaterialFunctionCall",
|
|
path: "MaterialExpressionMaterialFunctionCall_0",
|
|
})
|
|
expect(serializer.write(reference)).toBe(
|
|
`"/Script/Engine.MaterialExpressionMaterialFunctionCall'MaterialExpressionMaterialFunctionCall_0'"`
|
|
)
|
|
|
|
reference = serializer.read(
|
|
`/Script/Engine.EdGraph'"/Engine/EditorBlueprintResources/StandardMacros.StandardMacros:Do N"'`
|
|
)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "/Script/Engine.EdGraph",
|
|
path: "/Engine/EditorBlueprintResources/StandardMacros.StandardMacros:Do N",
|
|
})
|
|
expect(serializer.write(reference)).toBe(
|
|
`/Script/Engine.EdGraph'"/Engine/EditorBlueprintResources/StandardMacros.StandardMacros:Do N"'`
|
|
)
|
|
|
|
reference = serializer.read(
|
|
`EdGraphPin'"K2Node_CommutativeAssociativeBinaryOperator_152.EdGraphPin_4045"'`
|
|
)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "EdGraphPin",
|
|
path: "K2Node_CommutativeAssociativeBinaryOperator_152.EdGraphPin_4045",
|
|
})
|
|
expect(serializer.write(reference)).toBe(
|
|
`EdGraphPin'"K2Node_CommutativeAssociativeBinaryOperator_152.EdGraphPin_4045"'`
|
|
)
|
|
|
|
reference = serializer.read(
|
|
`Function'"/Game/Mods/CrazyDinos/ElementalDragon/CDElementalDragon_Character_BP.SKEL_CDElementalDragon_Character_BP_C:ROS Change Element"'`
|
|
)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "Function",
|
|
path: "/Game/Mods/CrazyDinos/ElementalDragon/CDElementalDragon_Character_BP.SKEL_CDElementalDragon_Character_BP_C:ROS Change Element",
|
|
})
|
|
expect(serializer.write(reference)).toBe(
|
|
`Function'"/Game/Mods/CrazyDinos/ElementalDragon/CDElementalDragon_Character_BP.SKEL_CDElementalDragon_Character_BP_C:ROS Change Element"'`
|
|
)
|
|
|
|
reference = serializer.read(`EdGraph'/Game/Systems/BP_MacroGlobal.BP_MacroGlobal:Or+Branch'`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "EdGraph",
|
|
path: "/Game/Systems/BP_MacroGlobal.BP_MacroGlobal:Or+Branch",
|
|
})
|
|
expect(serializer.write(reference)).toBe(`EdGraph'/Game/Systems/BP_MacroGlobal.BP_MacroGlobal:Or+Branch'`)
|
|
|
|
reference = serializer.read(`/Script/Engine.EdGraph'"+-Weird/2,Macro"'`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({ type: "/Script/Engine.EdGraph", path: "+-Weird/2,Macro" })
|
|
expect(serializer.write(reference)).toBe(`/Script/Engine.EdGraph'"+-Weird/2,Macro"'`)
|
|
|
|
reference = serializer.read(`/Script/BlueprintGraph.K2Node_VariableGet`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({ type: "/Script/BlueprintGraph.K2Node_VariableGet", path: "" })
|
|
expect(serializer.write(reference)).toBe(`/Script/BlueprintGraph.K2Node_VariableGet`)
|
|
|
|
reference = serializer.read(
|
|
`/Script/Engine.MaterialExpressionMaterialFunctionCall'MaterialExpressionMaterialFunctionCall_0'`
|
|
)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "/Script/Engine.MaterialExpressionMaterialFunctionCall",
|
|
path: "MaterialExpressionMaterialFunctionCall_0",
|
|
})
|
|
expect(serializer.write(reference)).toBe(
|
|
`/Script/Engine.MaterialExpressionMaterialFunctionCall'MaterialExpressionMaterialFunctionCall_0'`
|
|
)
|
|
|
|
reference = serializer.read(
|
|
`/Script/Engine.MaterialExpressionMaterialFunctionCall'/Engine/Transient.Material_0:MaterialGraph_0.MaterialGraphNode_3.MaterialExpressionMaterialFunctionCall_0'`
|
|
)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "/Script/Engine.MaterialExpressionMaterialFunctionCall",
|
|
path: "/Engine/Transient.Material_0:MaterialGraph_0.MaterialGraphNode_3.MaterialExpressionMaterialFunctionCall_0",
|
|
})
|
|
expect(serializer.write(reference)).toBe(
|
|
`/Script/Engine.MaterialExpressionMaterialFunctionCall'/Engine/Transient.Material_0:MaterialGraph_0.MaterialGraphNode_3.MaterialExpressionMaterialFunctionCall_0'`
|
|
)
|
|
|
|
reference = serializer.read(`/Script/CoreUObject.Class'"/Script/Engine.GameModeBase"'`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "/Script/CoreUObject.Class",
|
|
path: "/Script/Engine.GameModeBase",
|
|
})
|
|
expect(serializer.write(reference)).toBe(`/Script/CoreUObject.Class'"/Script/Engine.GameModeBase"'`)
|
|
|
|
reference = serializer.read(`"/Game/_YukiritoLib/Textures/T_紫色渐变01.T_紫色渐变01"`)
|
|
expect(reference).toBeInstanceOf(ObjectReferenceEntity)
|
|
expect(reference).toMatchObject({
|
|
type: "/Game/_YukiritoLib/Textures/T_紫色渐变01.T_紫色渐变01",
|
|
path: "",
|
|
})
|
|
})
|
|
|
|
test("PinEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(PinEntity)
|
|
|
|
expect(serializer.read("Pin (PinType.PinSubCategoryMemberReference=())")).toMatchObject({
|
|
"PinType": { "PinSubCategoryMemberReference": null }
|
|
})
|
|
})
|
|
|
|
test("SimpleSerializationRotatorEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(SimpleSerializationRotatorEntity)
|
|
|
|
expect(serializer.read("0, 0, 0")).toEqual(new SimpleSerializationRotatorEntity({
|
|
R: 0,
|
|
P: 0,
|
|
Y: 0,
|
|
}))
|
|
expect(serializer.read("0.65, 1.0, 0.99")).toEqual(new SimpleSerializationRotatorEntity({
|
|
P: 0.65,
|
|
Y: 1.0,
|
|
R: 0.99,
|
|
}))
|
|
expect(serializer.read("7,6,5")).toEqual(new SimpleSerializationRotatorEntity({
|
|
P: 7,
|
|
Y: 6,
|
|
R: 5,
|
|
}))
|
|
})
|
|
|
|
test("SimpleSerializationVector2DEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(SimpleSerializationVector2DEntity)
|
|
|
|
expect(serializer.read("0, 0")).toEqual(new SimpleSerializationVector2DEntity({
|
|
X: 0,
|
|
Y: 0,
|
|
}))
|
|
expect(serializer.read("127.8, 13.3")).toEqual(new SimpleSerializationVector2DEntity({
|
|
X: 127.8,
|
|
Y: 13.3,
|
|
}))
|
|
expect(serializer.read("5,0")).toEqual(new SimpleSerializationVector2DEntity({
|
|
X: 5,
|
|
Y: 0,
|
|
}))
|
|
})
|
|
|
|
test("SimpleSerializationVectorEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(SimpleSerializationVectorEntity)
|
|
|
|
expect(serializer.read("0, 0, 0")).toEqual(new SimpleSerializationVectorEntity({
|
|
X: 0,
|
|
Y: 0,
|
|
Z: 0,
|
|
}))
|
|
expect(serializer.read("1001, 56.4, 0.5")).toEqual(new SimpleSerializationVectorEntity({
|
|
X: 1001,
|
|
Y: 56.4,
|
|
Z: 0.5,
|
|
}))
|
|
expect(serializer.read("-1,-2,-3")).toEqual(new SimpleSerializationVectorEntity({
|
|
X: -1,
|
|
Y: -2,
|
|
Z: -3,
|
|
}))
|
|
})
|
|
|
|
test("String", () => {
|
|
const serializer = SerializerFactory.getSerializer(String)
|
|
|
|
expect(serializer.read('""')).toStrictEqual("")
|
|
expect(serializer.read('"hello"')).toStrictEqual("hello")
|
|
expect(serializer.read('"hello world 123 - éèàò@ç ^ ^^^"')).toStrictEqual("hello world 123 - éèàò@ç ^ ^^^")
|
|
expect(serializer.read('"\\""')).toStrictEqual('"')
|
|
expect(() => serializer.read("Hello")).toThrow()
|
|
|
|
expect(serializer.write(`"/Script/CoreUObject.Class'/Script/Interhaptics.HapticSource'"`))
|
|
.toBe(String.raw`"\"/Script/CoreUObject.Class'/Script/Interhaptics.HapticSource'\""`)
|
|
})
|
|
|
|
test("UnknownKeysValue", () => {
|
|
const parser = IEntity.unknownEntityGrammar
|
|
|
|
expect(parser.parse('"Hello"').constructor).toStrictEqual(String)
|
|
expect(parser.parse("()")).toBeNull()
|
|
expect(parser.parse("8345").constructor).toStrictEqual(Number)
|
|
expect(parser.parse("True").constructor).toStrictEqual(Boolean)
|
|
expect(parser.parse("False").constructor).toStrictEqual(Boolean)
|
|
expect(parser.parse("F0223D3742E67C0D9FEFB2A64946B7F0").constructor).toStrictEqual(GuidEntity)
|
|
expect(parser.parse("SYMBOL1").constructor).toStrictEqual(SymbolEntity)
|
|
expect(parser.parse("Symbol_2_3_4").constructor).toStrictEqual(SymbolEntity)
|
|
expect(parser.parse("(X=-0.495, Y=0, )").constructor).toStrictEqual(Vector2DEntity)
|
|
expect(parser.parse("(X=-0.495,Y=+765.0,Z=7)").constructor).toStrictEqual(VectorEntity)
|
|
expect(parser.parse("(R=1.000000,P=7.6,Y=+88.99)").constructor).toStrictEqual(RotatorEntity)
|
|
expect(parser.parse("(R=0.000000,G=0.660000,B=1.000000,A=1.000000)").constructor)
|
|
.toStrictEqual(LinearColorEntity)
|
|
expect(parser.parse(`Class'"/Script/Engine.KismetSystemLibrary"'`).constructor)
|
|
.toStrictEqual(ObjectReferenceEntity)
|
|
expect(parser.parse("(1,2,3,4,5,6,7,8,9)")).toStrictEqual([1, 2, 3, 4, 5, 6, 7, 8, 9])
|
|
expect(parser.parse(`( "Hello", "World", )`)).toStrictEqual(["Hello", "World"])
|
|
expect(parser.parse(`( "Alpha", 123, Beta, "Gamma", "Delta", 99 )`))
|
|
.toStrictEqual(["Alpha", 123, new SymbolEntity("Beta"), "Gamma", "Delta", 99])
|
|
})
|
|
|
|
test("UnknownKeysEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(UnknownKeysEntity)
|
|
|
|
let unknown = serializer.read('LookbehindValue(FirstKey=1,SecondKey=SOME_SYMBOL2,ThirdKey="Hello")')
|
|
expect(unknown).toBeInstanceOf(UnknownKeysEntity)
|
|
expect(unknown).toMatchObject({
|
|
lookbehind: "LookbehindValue",
|
|
FirstKey: 1,
|
|
SecondKey: new SymbolEntity("SOME_SYMBOL2"),
|
|
ThirdKey: "Hello",
|
|
})
|
|
|
|
unknown = serializer.read('(A = (-1,-2,-3), B = SomeFunction(B1 = "b1", B2 = (X=101,Y=102,Z=103)))')
|
|
expect(unknown).toBeInstanceOf(UnknownKeysEntity)
|
|
expect(unknown).toMatchObject({
|
|
A: [-1, -2, -3],
|
|
B: new UnknownKeysEntity({
|
|
lookbehind: "SomeFunction",
|
|
B1: "b1",
|
|
B2: new VectorEntity({ X: 101, Y: 102, Z: 103 }),
|
|
}),
|
|
})
|
|
})
|
|
|
|
test("VectorEntity", () => {
|
|
const serializer = SerializerFactory.getSerializer(VectorEntity)
|
|
|
|
let vector = serializer.read("(X=1,Y=2,Z=3.5)")
|
|
expect(vector).toBeInstanceOf(VectorEntity)
|
|
expect(vector).toStrictEqual(new VectorEntity({
|
|
X: 1,
|
|
Y: 2,
|
|
Z: 3.5,
|
|
}))
|
|
|
|
vector = serializer.read("(X=10,Y=+20.88,Z=-30.54,)")
|
|
expect(vector).toBeInstanceOf(VectorEntity)
|
|
expect(vector).toStrictEqual(new VectorEntity({
|
|
X: 10,
|
|
Y: 20.88,
|
|
Z: -30.54,
|
|
}))
|
|
|
|
vector = serializer.read(`(
|
|
Z = -3.66 ,
|
|
|
|
X
|
|
= -1 , Y =
|
|
|
|
|
|
-2
|
|
,
|
|
)`)
|
|
expect(vector).toBeInstanceOf(VectorEntity)
|
|
expect(vector).toStrictEqual(new VectorEntity({
|
|
X: -1,
|
|
Y: -2,
|
|
Z: -3.66,
|
|
}))
|
|
|
|
expect(() => serializer.read("(X=1,Y=\"2\",Z=3)")).toThrow()
|
|
expect(() => serializer.read("(X=1,Z=3)")).toThrow()
|
|
expect(() => serializer.read("(X=1,Y=2,Unexpected=6,Z=3.5)")).toThrow()
|
|
})
|
|
|
|
test("Vector2DEntity", () => {
|
|
let serializer = SerializerFactory.getSerializer(Vector2DEntity)
|
|
|
|
let vector = serializer.read("(X=78,Y=56.3)")
|
|
expect(vector).toBeInstanceOf(Vector2DEntity)
|
|
expect(vector).toStrictEqual(new Vector2DEntity({
|
|
X: 78,
|
|
Y: 56.3,
|
|
}))
|
|
|
|
vector = serializer.read("(X=+4.5,Y=-8.88,)")
|
|
expect(vector).toBeInstanceOf(Vector2DEntity)
|
|
expect(vector).toStrictEqual(new Vector2DEntity({
|
|
X: 4.5,
|
|
Y: -8.88,
|
|
}))
|
|
|
|
vector = serializer.read(`(
|
|
Y = +93.004 ,
|
|
|
|
X
|
|
= 0 ,
|
|
)`)
|
|
expect(vector).toBeInstanceOf(Vector2DEntity)
|
|
expect(vector).toStrictEqual(new Vector2DEntity({
|
|
X: 0,
|
|
Y: 93.004,
|
|
}))
|
|
|
|
expect(() => serializer.read("(X=1,Y=\"2\")")).toThrow()
|
|
expect(() => serializer.read("(X=1)")).toThrow()
|
|
expect(() => serializer.read("(X=777, Y=555, Unexpected=6, HH=2)")).toThrow()
|
|
})
|