Files
modelstudioai__cli/packages/commands/tests/e2e/video-edit.e2e.test.ts
clh02467605 d646a4e780 refactor(e2e): update test routes and streamline command handling
- Replaced hardcoded command paths with dynamic route mappings in E2E tests.
- Enhanced documentation for command testing, specifying minimum route requirements.
- Consolidated command path management into `topic-routes.ts` for better maintainability.
- Updated various E2E test cases to utilize the new routing structure, ensuring consistency across tests.
- Removed redundant helper functions and improved test clarity by directly referencing route exports.
2026-07-10 15:55:53 +08:00

108 lines
3.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { join } from "node:path";
import { describe, expect, test } from "vite-plus/test";
import {
cliTimeoutPrefix,
e2eLabelFromMetaUrl,
isBailianE2EVideoEnabled,
isDashScopeE2EReady,
makeE2eOutputDir,
parseStdoutJson,
runCommandE2e,
} from "./helpers.ts";
import { VIDEO_ROUTES } from "./topic-routes.ts";
/**
* Video edit E2E
*/
describe("e2e: video edit", () => {
test("video edit --help 正常退出", async () => {
const { stderr, exitCode } = await runCommandE2e(VIDEO_ROUTES, ["video", "edit", "--help"]);
expect(exitCode, stderr).toBe(0);
expect(stderr).toMatch(/edit|--video|--prompt|model|--async|--concurrent/i);
});
test("video edit --dry-run 接受 --async 与 --concurrent", async () => {
const { stdout, stderr, exitCode } = await runCommandE2e(VIDEO_ROUTES, [
"video",
"edit",
"--dry-run",
"--video",
"https://example.com/input.mp4",
"--prompt",
"整体色调偏暖",
"--async",
"--concurrent",
"2",
"--output",
"json",
]);
expect(exitCode, stderr).toBe(0);
const data = parseStdoutJson<{ request?: { input?: { media?: Array<{ url?: string }> } } }>(
stdout,
);
expect(data.request?.input?.media?.[0]?.url).toBe("https://example.com/input.mp4");
});
});
describe.skipIf(!isBailianE2EVideoEnabled() || !isDashScopeE2EReady())(
"e2e: video editDashScope 视频)",
() => {
test("video edit 缺少 --video 时报用法错误并退出 (2)", async () => {
const { stderr, exitCode } = await runCommandE2e(VIDEO_ROUTES, [
"video",
"edit",
...cliTimeoutPrefix(),
"--model",
"happyhorse-1.0-video-edit",
"--prompt",
"仅提示词",
]);
expect(exitCode).toBe(2);
expect(stderr).toMatch(/--video|Usage:/i);
});
test("【happyhorse-1.0-video-edit】视频编辑", async () => {
const outDir = makeE2eOutputDir(e2eLabelFromMetaUrl(import.meta.url));
const t2vPath = join(outDir, "e2e-video-t2v.mp4");
const t2v = await runCommandE2e(VIDEO_ROUTES, [
"video",
"generate",
...cliTimeoutPrefix(),
"--model",
"happyhorse-1.0-t2v",
"--prompt",
"夕阳下海面波光,海边有两个小朋友在玩耍",
"--download",
t2vPath,
"--output",
"json",
]);
expect(t2v.exitCode, t2v.stderr).toBe(0);
const t2vData = parseStdoutJson<{ status?: string; video_url?: string }>(t2v.stdout);
expect(t2vData.status).toBe("SUCCEEDED");
const { stdout, stderr, exitCode } = await runCommandE2e(VIDEO_ROUTES, [
"video",
"edit",
...cliTimeoutPrefix(),
"--model",
"happyhorse-1.0-video-edit",
"--video",
t2vData.video_url!,
"--prompt",
"整体色调偏暖",
"--download",
join(outDir, "e2e-video-edit.mp4"),
"--output",
"json",
]);
expect(exitCode, stderr).toBe(0);
const data = parseStdoutJson<{ status?: string; video_url?: string }>(stdout);
expect(data.status).toBe("SUCCEEDED");
expect(data.video_url?.startsWith("https://")).toBe(true);
}, 7_200_000);
},
);