import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { render, cleanup } from "@testing-library/react";
import { PortalIntroScene } from "./PortalIntroScene";
/* eslint-disable @remotion/warn-native-media-tag */
// Mock Remotion hooks
vi.mock("remotion", () => ({
useCurrentFrame: vi.fn(() => 60),
useVideoConfig: vi.fn(() => ({ fps: 30, width: 1920, height: 1080 })),
interpolate: vi.fn((value, inputRange, outputRange, options) => {
const [inMin, inMax] = inputRange;
const [outMin, outMax] = outputRange;
let progress = (value - inMin) / (inMax - inMin);
if (options?.extrapolateLeft === "clamp") {
progress = Math.max(0, progress);
}
if (options?.extrapolateRight === "clamp") {
progress = Math.min(1, progress);
}
return outMin + progress * (outMax - outMin);
}),
spring: vi.fn(() => 1),
AbsoluteFill: vi.fn(({ children, className, style }) => (
{children}
)),
Img: vi.fn(({ src, className, style }) => (
)),
staticFile: vi.fn((path: string) => `/static/${path}`),
Sequence: vi.fn(({ children, from, durationInFrames }) => (
{children}
)),
Easing: {
out: vi.fn((fn) => fn),
cubic: vi.fn((t: number) => t),
},
}));
// Mock @remotion/media
vi.mock("@remotion/media", () => ({
Audio: vi.fn(({ src, volume }) => (
)),
}));
/* eslint-enable @remotion/warn-native-media-tag */
// Mock AnimatedLogo component
vi.mock("../../components/AnimatedLogo", () => ({
AnimatedLogo: vi.fn(({ size, delay }) => (
AnimatedLogo
)),
}));
// Mock BitcoinEffect component
vi.mock("../../components/BitcoinEffect", () => ({
BitcoinEffect: vi.fn(() => (
BitcoinEffect
)),
}));
describe("PortalIntroScene", () => {
beforeEach(() => {
vi.clearAllMocks();
});
afterEach(() => {
cleanup();
vi.resetAllMocks();
});
it("renders without errors", () => {
const { container } = render();
expect(container).toBeInTheDocument();
});
it("renders the AbsoluteFill container with correct classes", () => {
const { container } = render();
const absoluteFill = container.querySelector('[data-testid="absolute-fill"]');
expect(absoluteFill).toBeInTheDocument();
expect(absoluteFill).toHaveClass("bg-zinc-900");
expect(absoluteFill).toHaveClass("overflow-hidden");
});
it("renders the wallpaper background image", () => {
const { container } = render();
const images = container.querySelectorAll('[data-testid="remotion-img"]');
const wallpaper = Array.from(images).find((img) =>
img.getAttribute("src")?.includes("einundzwanzig-wallpaper.png")
);
expect(wallpaper).toBeInTheDocument();
});
it("renders the AnimatedLogo component with correct props", () => {
const { container } = render();
const logo = container.querySelector('[data-testid="animated-logo"]');
expect(logo).toBeInTheDocument();
expect(logo).toHaveAttribute("data-size", "350");
// delay is 0.5 * fps = 0.5 * 30 = 15 frames
expect(logo).toHaveAttribute("data-delay", "15");
});
it("renders the BitcoinEffect component", () => {
const { container } = render();
const bitcoinEffect = container.querySelector('[data-testid="bitcoin-effect"]');
expect(bitcoinEffect).toBeInTheDocument();
});
it("renders the EINUNDZWANZIG title with correct styling", () => {
const { container } = render();
const title = container.querySelector("h1");
expect(title).toBeInTheDocument();
expect(title).toHaveTextContent("EINUNDZWANZIG");
expect(title).toHaveClass("text-6xl");
expect(title).toHaveClass("font-bold");
expect(title).toHaveClass("text-white");
});
it("renders the subtitle with orange color", () => {
const { container } = render();
const subtitle = container.querySelector("p");
expect(subtitle).toBeInTheDocument();
expect(subtitle).toHaveTextContent("Das Portal");
expect(subtitle).toHaveClass("text-orange-500");
});
it("renders audio sequences for sound effects", () => {
const { container } = render();
const sequences = container.querySelectorAll('[data-testid="sequence"]');
expect(sequences.length).toBeGreaterThanOrEqual(2);
});
it("includes logo-whoosh audio", () => {
const { container } = render();
const audioElements = container.querySelectorAll('[data-testid="audio"]');
const whooshAudio = Array.from(audioElements).find((audio) =>
audio.getAttribute("src")?.includes("logo-whoosh.mp3")
);
expect(whooshAudio).toBeInTheDocument();
});
it("includes logo-reveal audio", () => {
const { container } = render();
const audioElements = container.querySelectorAll('[data-testid="audio"]');
const revealAudio = Array.from(audioElements).find((audio) =>
audio.getAttribute("src")?.includes("logo-reveal.mp3")
);
expect(revealAudio).toBeInTheDocument();
});
it("renders vignette overlay with pointer-events-none", () => {
const { container } = render();
const vignette = container.querySelector('[class*="pointer-events-none"]');
expect(vignette).toBeInTheDocument();
});
it("renders glow effect element", () => {
const { container } = render();
// Look for the glow element with blur filter
const elements = container.querySelectorAll('[style*="blur(40px)"]');
expect(elements.length).toBeGreaterThan(0);
});
});