mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-05-13 18:46:21 +02:00
- Allow hyphens in Vercel preview URL patterns (worldmonitor-xxx-yyy) - Harden open_url command with proper URL parsing via reqwest::Url - Update YouTube embed test assertions for quote style change
36 lines
1.4 KiB
JavaScript
36 lines
1.4 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-nocookie.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);
|
|
});
|