mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
- Defer YouTube player init via IntersectionObserver + requestIdleCallback gate with clickable placeholder (no eager iframe_api load) - Stagger loadAllData() into 3 priority tiers: critical (immediate), important (after rAF yield), deferred (requestIdleCallback fire-and-forget) - Move DeckGL supercluster rebuilds into map 'load' callback - Cancel deferred tier-3 callbacks on App destroy (prevents post-teardown work) - Add bot-check detection with YouTube sign-in window for desktop (Tauri) - Safe DOM construction for all new UI paths (no innerHTML with user data)
51 lines
2.2 KiB
JavaScript
51 lines
2.2 KiB
JavaScript
import { strict as assert } from 'node:assert';
|
|
import test from 'node:test';
|
|
import handler from './embed.js';
|
|
|
|
function makeRequest(query = '') {
|
|
return new Request(`https://worldmonitor.app/api/youtube/embed${query}`);
|
|
}
|
|
|
|
test('rejects missing or invalid video ids', async () => {
|
|
const missing = await handler(makeRequest());
|
|
assert.equal(missing.status, 400);
|
|
|
|
const invalid = await handler(makeRequest('?videoId=bad'));
|
|
assert.equal(invalid.status, 400);
|
|
});
|
|
|
|
test('returns embeddable html for valid video id', async () => {
|
|
const response = await handler(makeRequest('?videoId=iEpJwprxDdk&autoplay=0&mute=1'));
|
|
assert.equal(response.status, 200);
|
|
assert.equal(response.headers.get('content-type')?.includes('text/html'), true);
|
|
|
|
const html = await response.text();
|
|
assert.equal(html.includes("videoId:'iEpJwprxDdk'"), true);
|
|
assert.equal(html.includes("host:'https://www.youtube.com'"), true);
|
|
assert.equal(html.includes('autoplay:0'), true);
|
|
assert.equal(html.includes('mute:1'), true);
|
|
assert.equal(html.includes('origin:"https://worldmonitor.app"'), true);
|
|
assert.equal(html.includes('postMessage'), true);
|
|
});
|
|
|
|
test('accepts custom origin parameter', async () => {
|
|
const response = await handler(makeRequest('?videoId=iEpJwprxDdk&origin=http://127.0.0.1:46123'));
|
|
const html = await response.text();
|
|
assert.equal(html.includes('origin:"http://127.0.0.1:46123"'), true);
|
|
});
|
|
|
|
test('uses dedicated parentOrigin for iframe postMessage target', async () => {
|
|
const response = await handler(makeRequest('?videoId=iEpJwprxDdk&origin=https://worldmonitor.app&parentOrigin=https://tauri.localhost'));
|
|
const html = await response.text();
|
|
assert.match(html, /playerVars:\{[^}]*origin:"https:\/\/worldmonitor\.app"/);
|
|
assert.match(html, /parentOrigin="https:\/\/tauri\.localhost"/);
|
|
assert.match(html, /if\(allowedOrigin!==['"]\*['"]&&e\.origin!==allowedOrigin\)return/);
|
|
});
|
|
|
|
test('does not accept wildcard parentOrigin query parameter', async () => {
|
|
const response = await handler(makeRequest('?videoId=iEpJwprxDdk&origin=https://worldmonitor.app&parentOrigin=*'));
|
|
const html = await response.text();
|
|
assert.equal(html.includes('parentOrigin="*"'), false);
|
|
assert.match(html, /parentOrigin="https:\/\/worldmonitor\.app"/);
|
|
});
|