81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import { mkdtempSync, writeFileSync } from "node:fs";
|
|
import { tmpdir } from "node:os";
|
|
import path from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import { AppError } from "../../src/errors";
|
|
import { resolveMediaSource } from "../../src/media/mediaResolver";
|
|
|
|
describe("resolveMediaSource", () => {
|
|
it("accepts http URLs", async () => {
|
|
await expect(
|
|
resolveMediaSource("https://example.com/music.mp3"),
|
|
).resolves.toEqual({
|
|
source: "https://example.com/music.mp3",
|
|
title: "music.mp3",
|
|
kind: "url",
|
|
});
|
|
});
|
|
|
|
it("accepts existing local files", async () => {
|
|
const dir = mkdtempSync(path.join(tmpdir(), "media-resolver-"));
|
|
const file = path.join(dir, "song.ogg");
|
|
writeFileSync(file, "audio");
|
|
|
|
await expect(resolveMediaSource(file)).resolves.toEqual({
|
|
source: file,
|
|
title: "song.ogg",
|
|
kind: "local",
|
|
});
|
|
});
|
|
|
|
it("rejects empty sources", async () => {
|
|
await expect(resolveMediaSource(" ")).rejects.toMatchObject({
|
|
code: "MISSING_MEDIA_SOURCE",
|
|
statusCode: 400,
|
|
} satisfies Partial<AppError>);
|
|
});
|
|
|
|
it("sanitizes URL titles", async () => {
|
|
await expect(
|
|
resolveMediaSource("https://example.com/%2e%2e%2fsecret.mp3"),
|
|
).resolves.toMatchObject({
|
|
title: "secret.mp3",
|
|
kind: "url",
|
|
});
|
|
});
|
|
|
|
it("rejects unsupported sources", async () => {
|
|
await expect(resolveMediaSource("not a url or file")).rejects.toMatchObject(
|
|
{
|
|
code: "UNSUPPORTED_MEDIA_SOURCE",
|
|
statusCode: 400,
|
|
} satisfies Partial<AppError>,
|
|
);
|
|
});
|
|
|
|
it("rejects non-http URL sources", async () => {
|
|
await expect(
|
|
resolveMediaSource("file:///tmp/song.mp3"),
|
|
).rejects.toMatchObject({
|
|
code: "UNSUPPORTED_MEDIA_SOURCE",
|
|
statusCode: 400,
|
|
} satisfies Partial<AppError>);
|
|
});
|
|
|
|
it("rejects malformed http URLs as unsupported sources", async () => {
|
|
await expect(resolveMediaSource("https://[invalid")).rejects.toMatchObject({
|
|
code: "UNSUPPORTED_MEDIA_SOURCE",
|
|
statusCode: 400,
|
|
} satisfies Partial<AppError>);
|
|
});
|
|
|
|
it("keeps direct URLs as generic URL sources", async () => {
|
|
await expect(
|
|
resolveMediaSource("https://cdn.example.com/song.mp3"),
|
|
).resolves.toMatchObject({
|
|
kind: "url",
|
|
source: "https://cdn.example.com/song.mp3",
|
|
});
|
|
});
|
|
});
|