Update runtime host test to include light control effects

This commit is contained in:
2026-04-14 01:37:48 +02:00
parent 9d209c1a4e
commit 45c4067b16

View File

@@ -1,7 +1,14 @@
import { waitFor } from "@testing-library/react";
import { afterEach, describe, expect, it, vi } from "vitest";
import {
createLightControlTargetRef,
createSetLightEnabledControlEffect,
createSetLightIntensityControlEffect
} from "../../src/controls/control-surface";
import { createEmptySceneDocument } from "../../src/document/scene-document";
import { createPointLightEntity } from "../../src/entities/entity-instances";
import { createControlInteractionLink } from "../../src/interactions/interaction-links";
import { RapierCollisionWorld } from "../../src/runtime-three/rapier-collision-world";
import {
RuntimeHost,
@@ -87,4 +94,98 @@ describe("RuntimeHost", () => {
host.dispose();
expect(collisionWorld.dispose).toHaveBeenCalledTimes(1);
});
it("applies typed light control effects through the runtime dispatcher", () => {
vi.spyOn(console, "warn").mockImplementation(() => undefined);
vi.spyOn(RapierCollisionWorld, "create").mockResolvedValue({
dispose: vi.fn(),
resolveThirdPersonCameraCollision: vi.fn(
(_pivot, desiredCameraPosition) => desiredCameraPosition
)
} as unknown as RapierCollisionWorld);
const pointLight = createPointLightEntity({
id: "entity-point-light-main",
intensity: 1.25
});
const runtimeScene = buildRuntimeSceneFromDocument({
...createEmptySceneDocument(),
entities: {
[pointLight.id]: pointLight
}
});
const host = new RuntimeHost({
enableRendering: false
});
host.loadScene(runtimeScene);
const disableEffect = createSetLightEnabledControlEffect({
target: createLightControlTargetRef("pointLight", pointLight.id),
enabled: false
});
const intensityEffect = createSetLightIntensityControlEffect({
target: createLightControlTargetRef("pointLight", pointLight.id),
intensity: 3.5
});
const disableLink = createControlInteractionLink({
id: "link-light-disable",
sourceEntityId: "entity-trigger-main",
effect: disableEffect
});
const intensityLink = createControlInteractionLink({
id: "link-light-intensity",
sourceEntityId: "entity-trigger-main",
effect: intensityEffect
});
const hostInternals = host as unknown as {
createInteractionDispatcher(): {
dispatchControlEffect(effect: typeof disableEffect, link: typeof disableLink): void;
};
localLightObjects: Map<
string,
{
group: { visible: boolean };
light: { intensity: number };
}
>;
};
const dispatcher = hostInternals.createInteractionDispatcher();
const renderObjects = hostInternals.localLightObjects.get(pointLight.id);
expect(renderObjects).toBeDefined();
expect(renderObjects?.group.visible).toBe(true);
expect(renderObjects?.light.intensity).toBe(1.25);
dispatcher.dispatchControlEffect(disableEffect, disableLink);
dispatcher.dispatchControlEffect(intensityEffect, intensityLink);
expect(renderObjects?.group.visible).toBe(false);
expect(renderObjects?.light.intensity).toBe(3.5);
expect(runtimeScene.control.resolved.discrete).toEqual(
expect.arrayContaining([
expect.objectContaining({
type: "lightEnabled",
value: false,
source: {
kind: "interactionLink",
linkId: disableLink.id
}
})
])
);
expect(runtimeScene.control.resolved.channels).toEqual(
expect.arrayContaining([
expect.objectContaining({
type: "lightIntensity",
value: 3.5,
source: {
kind: "interactionLink",
linkId: intensityLink.id
}
})
])
);
host.dispose();
});
});