android-midscene-automation 0.1.39 → 0.1.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -1
- package/README.md +4 -1
- package/package.json +1 -1
- package/server/appium-recorder/appium-runner.ts +13 -2
- package/server/appium-recorder/replay-mp4.ts +3 -3
- package/server/appium-recorder/replay-video-segments.ts +77 -0
- package/server/appium-recorder/replay-video.ts +15 -7
- package/server/appium-recorder/report.ts +41 -3
- package/server/appium-recorder/routes.ts +4 -1
- package/server/appium-recorder/run-history.ts +4 -2
- package/src/appium-recorder/RunHistoryDialog.vue +7 -2
- package/src/appium-recorder/run-history.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
# 更新记录
|
|
2
|
+
## v0.1.40
|
|
3
|
+
- 回放录屏支持按连接脚本分段保存 MP4,返回父脚本继续执行时另存片段;历史结果可选择片段播放,HTML 报告按节点时间自动切换视频,删除历史结果时一并清理全部片段。
|
|
4
|
+
|
|
2
5
|
## v0.1.39
|
|
3
6
|
- Midscene 相关模块统一升级至 1.12.7,
|
|
4
7
|
- scrcpy 视频帧完整性修复:可靠传输视频包、修正关键帧标记,并在缓冲溢出后等待完整关键帧恢复,降低设备预览花屏风险。
|
|
5
|
-
-
|
|
8
|
+
- 回放按钮右侧下拉设置新增默认关闭的“录制回放视频”,远程设备暂不支持。
|
|
6
9
|
- 图像模板判断改为“预期匹配结果”,匹配严格度以百分比配置,100% 时提示细微像素差异风险;节点显示预期结果,日志和 HTML 报告分别展示实际匹配、预期匹配、得分与条件结论,保留原检测算法及已有阈值。
|
|
7
10
|
- 移除 AI 识别操作、测试入口及 Appium 参数中的 AI 模型配置,保留流程背景色设置;旧脚本中的 AI 节点提示替换,回放前阻止执行,不自动删除或改变分支。
|
|
8
11
|
|
package/README.md
CHANGED
|
@@ -1229,10 +1229,13 @@ Linux: ~/.local/share/android-midscene-automation
|
|
|
1229
1229
|
|
|
1230
1230
|
# 项目更新记录
|
|
1231
1231
|
|
|
1232
|
+
## v0.1.40
|
|
1233
|
+
- 回放录屏支持按连接脚本分段保存 MP4,返回父脚本继续执行时另存片段;历史结果可选择片段播放,HTML 报告按节点时间自动切换视频,删除历史结果时一并清理全部片段。
|
|
1234
|
+
|
|
1232
1235
|
## v0.1.39
|
|
1233
1236
|
- Midscene 相关模块统一升级至 1.12.7,
|
|
1234
1237
|
- scrcpy 视频帧完整性修复:可靠传输视频包、修正关键帧标记,并在缓冲溢出后等待完整关键帧恢复,降低设备预览花屏风险。
|
|
1235
|
-
-
|
|
1238
|
+
- 回放按钮右侧下拉设置新增默认关闭的“录制回放视频”,远程设备暂不支持。
|
|
1236
1239
|
- 图像模板判断改为“预期匹配结果”,匹配严格度以百分比配置,100% 时提示细微像素差异风险;节点显示预期结果,日志和 HTML 报告分别展示实际匹配、预期匹配、得分与条件结论,保留原检测算法及已有阈值。
|
|
1237
1240
|
- 移除 AI 识别操作、测试入口及 Appium 参数中的 AI 模型配置,保留流程背景色设置;旧脚本中的 AI 节点提示替换,回放前阻止执行,不自动删除或改变分支。
|
|
1238
1241
|
|
package/package.json
CHANGED
|
@@ -77,6 +77,7 @@ const replayContext = new AsyncLocalStorage<{
|
|
|
77
77
|
visualStartOffsets: Map<string, number>;
|
|
78
78
|
softFailureCount: number;
|
|
79
79
|
flowEnded?: boolean;
|
|
80
|
+
selectVideoScript?: (id: string, name: string, force?: boolean) => Promise<void>;
|
|
80
81
|
}>();
|
|
81
82
|
|
|
82
83
|
const appiumServerUrl = () => replayContext.getStore()?.serverUrl || configuredAppiumServerUrl();
|
|
@@ -1140,6 +1141,8 @@ async function replayLinkedScript(
|
|
|
1140
1141
|
}
|
|
1141
1142
|
}
|
|
1142
1143
|
|
|
1144
|
+
// 每次调用独立分段,即使连续两次连接的是同一个脚本。
|
|
1145
|
+
await replayContext.getStore()?.selectVideoScript?.(linkedScript.id, linkedScript.name, true);
|
|
1143
1146
|
lines.push(`连接脚本开始:${linkedScript.name}`);
|
|
1144
1147
|
const nextStack = [...stack, linkedScript.id];
|
|
1145
1148
|
const parent = variableContext.getStore()!;
|
|
@@ -1180,6 +1183,7 @@ async function replayLinearSteps(
|
|
|
1180
1183
|
lines.push(`[节点 ${index + 1}] 跳过:${step.label}(${linkedScriptInitSkipReason(step)})`);
|
|
1181
1184
|
continue;
|
|
1182
1185
|
}
|
|
1186
|
+
await replayContext.getStore()?.selectVideoScript?.(stack.at(-1) || '', options.scriptName || '');
|
|
1183
1187
|
lines.push(`[节点 ${index + 1}] 开始:${step.label}`);
|
|
1184
1188
|
await captureReplayFrame(sessionId, step, index + 1, options.scriptName || '', 'before', '执行前');
|
|
1185
1189
|
try {
|
|
@@ -1237,6 +1241,7 @@ async function replayFlowSteps(
|
|
|
1237
1241
|
index = nextIndexAfterStep(index, step);
|
|
1238
1242
|
continue;
|
|
1239
1243
|
}
|
|
1244
|
+
await replayContext.getStore()?.selectVideoScript?.(stack.at(-1) || '', options.scriptName || '');
|
|
1240
1245
|
visitedPath.push(step.label);
|
|
1241
1246
|
const nodeKind = defaultFlowKind(step);
|
|
1242
1247
|
lines.push(`[节点 ${index + 1}] 开始:${frameStep.label}`);
|
|
@@ -1532,6 +1537,8 @@ export async function replayAppiumScript(
|
|
|
1532
1537
|
if (scope.privacy.enabled) throw new Error('本次运行包含敏感变量,为避免泄露已禁止录屏,请关闭录制回放视频');
|
|
1533
1538
|
lines.push('正在启动后台录屏...');
|
|
1534
1539
|
recording = await startReplayVideo(targetDeviceId, signal);
|
|
1540
|
+
replayContext.getStore()!.selectVideoScript = recording.selectScript;
|
|
1541
|
+
await recording.selectScript(script.id, script.name);
|
|
1535
1542
|
lines.push('后台录屏已启动(MP4 / H.264 / 15fps / 2Mbps,无音频)');
|
|
1536
1543
|
}
|
|
1537
1544
|
if (hasFlowSteps(script.steps)) lines.push('按流程图路径回放...');
|
|
@@ -1565,11 +1572,15 @@ export async function replayAppiumScript(
|
|
|
1565
1572
|
try {
|
|
1566
1573
|
video = await recording.stop();
|
|
1567
1574
|
if (scope.privacy.enabled) {
|
|
1568
|
-
|
|
1575
|
+
for (const segment of video.segments || [video]) {
|
|
1576
|
+
await import('node:fs/promises').then(fs => fs.rm(segment.filePath, { force: true }));
|
|
1577
|
+
}
|
|
1569
1578
|
video = undefined;
|
|
1570
1579
|
lines.push('敏感变量保护:已删除回放视频');
|
|
1571
1580
|
} else {
|
|
1572
|
-
|
|
1581
|
+
for (const [index, segment] of (video.segments || [video]).entries()) {
|
|
1582
|
+
lines.push(`回放视频 ${index + 1}(${segment.scriptName || script.name})已保存:${segment.filePath}`);
|
|
1583
|
+
}
|
|
1573
1584
|
if (video.warning) lines.push(`录屏警告:${video.warning}`);
|
|
1574
1585
|
}
|
|
1575
1586
|
} catch (error) { lines.push(`回放视频保存失败:${errorDetail(error)}`); }
|
|
@@ -14,7 +14,7 @@ export class ReplayMp4Writer {
|
|
|
14
14
|
private startedMonotonic = 0;
|
|
15
15
|
private endedMonotonic?: number;
|
|
16
16
|
|
|
17
|
-
constructor(path: string) {
|
|
17
|
+
constructor(path: string, private anchor?: number) {
|
|
18
18
|
this.output = new Output({ target: new FilePathTarget(path, { chunkSize: 1024 * 1024 }), format: new Mp4OutputFormat({ fastStart: 'fragmented' }) });
|
|
19
19
|
this.output.addVideoTrack(this.source);
|
|
20
20
|
}
|
|
@@ -37,8 +37,8 @@ export class ReplayMp4Writer {
|
|
|
37
37
|
if (this.origin === undefined) {
|
|
38
38
|
if (!packet.keyframe) return;
|
|
39
39
|
this.origin = packet.pts;
|
|
40
|
-
this.startedAt = Date.now();
|
|
41
|
-
this.startedMonotonic = performance.now();
|
|
40
|
+
this.startedAt = this.anchor ?? Date.now();
|
|
41
|
+
this.startedMonotonic = performance.now() - (Date.now() - this.startedAt);
|
|
42
42
|
}
|
|
43
43
|
const timestamp = Number(packet.pts - this.origin) / 1000000;
|
|
44
44
|
if (!Number.isFinite(timestamp) || timestamp < 0 || (this.pending && timestamp < this.pending.timestamp)) throw new Error('录屏时间戳异常');
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { randomUUID } from 'node:crypto';
|
|
2
|
+
import { dirname, join } from 'node:path';
|
|
3
|
+
import { rm } from 'node:fs/promises';
|
|
4
|
+
import type { ScrcpyMediaStreamPacket } from '@yume-chan/scrcpy';
|
|
5
|
+
import { ReplayMp4Writer } from './replay-mp4';
|
|
6
|
+
import type { ReplayVideo } from './replay-video';
|
|
7
|
+
|
|
8
|
+
// 缓存最近一个 GOP,使切换脚本时无需重启编码器,也不会丢失首个操作。
|
|
9
|
+
export class ReplayVideoSegments {
|
|
10
|
+
private writer: ReplayMp4Writer;
|
|
11
|
+
private current: ReplayVideo;
|
|
12
|
+
readonly segments: ReplayVideo[] = [];
|
|
13
|
+
private config?: ScrcpyMediaStreamPacket;
|
|
14
|
+
private gop: ScrcpyMediaStreamPacket[] = [];
|
|
15
|
+
private bytes = 0;
|
|
16
|
+
private origin?: bigint;
|
|
17
|
+
private epoch = 0;
|
|
18
|
+
private keyTime = 0;
|
|
19
|
+
private queue: Promise<unknown> = Promise.resolve();
|
|
20
|
+
constructor(filePath: string, fileName: string) {
|
|
21
|
+
this.current = { filePath, fileName, startedAt: '' };
|
|
22
|
+
this.writer = new ReplayMp4Writer(filePath);
|
|
23
|
+
}
|
|
24
|
+
get startedAt() { return this.writer.startedAt; }
|
|
25
|
+
private serialize<T>(task: () => Promise<T>) {
|
|
26
|
+
const result = this.queue.then(task);
|
|
27
|
+
this.queue = result.catch(() => undefined);
|
|
28
|
+
return result;
|
|
29
|
+
}
|
|
30
|
+
start() { return this.writer.start(); }
|
|
31
|
+
add(packet: ScrcpyMediaStreamPacket) {
|
|
32
|
+
return this.serialize(async () => {
|
|
33
|
+
await this.writer.add(packet);
|
|
34
|
+
if (packet.type === 'configuration') { this.config = packet; return; }
|
|
35
|
+
if (packet.keyframe && packet.pts !== undefined) {
|
|
36
|
+
if (this.origin === undefined) { this.origin = packet.pts; this.epoch = this.writer.startedAt; }
|
|
37
|
+
this.keyTime = this.epoch + Number(packet.pts - this.origin) / 1000;
|
|
38
|
+
this.gop = []; this.bytes = 0;
|
|
39
|
+
}
|
|
40
|
+
if (this.keyTime) {
|
|
41
|
+
this.bytes += packet.data.byteLength;
|
|
42
|
+
// 编码器长期不发关键帧时停止缓存,避免无限占用内存。
|
|
43
|
+
if (this.bytes > 32 * 1024 * 1024) { this.gop = []; this.keyTime = 0; }
|
|
44
|
+
else this.gop.push(packet);
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
selectScript(scriptId: string, scriptName: string, force = false) {
|
|
49
|
+
return this.serialize(async () => {
|
|
50
|
+
if (!force && this.current.scriptId === scriptId) return;
|
|
51
|
+
const boundary = new Date().toISOString();
|
|
52
|
+
if (this.current.scriptId !== undefined) {
|
|
53
|
+
if (!this.config || !this.gop.length) throw new Error('录屏分段缺少完整关键帧,请重新运行');
|
|
54
|
+
await this.finishCurrent();
|
|
55
|
+
const fileName = `replay-${Date.now()}-${randomUUID()}.mp4`;
|
|
56
|
+
this.current = { filePath: join(dirname(this.current.filePath), fileName), fileName, startedAt: '' };
|
|
57
|
+
this.writer = new ReplayMp4Writer(this.current.filePath, this.keyTime);
|
|
58
|
+
await this.writer.start();
|
|
59
|
+
await this.writer.add(this.config);
|
|
60
|
+
for (const packet of this.gop) await this.writer.add(packet);
|
|
61
|
+
}
|
|
62
|
+
Object.assign(this.current, { scriptId, scriptName, boundaryAt: boundary });
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
end() { this.writer.end(); }
|
|
66
|
+
private async finishCurrent() {
|
|
67
|
+
this.writer.end();
|
|
68
|
+
await this.writer.finish();
|
|
69
|
+
this.current.startedAt = new Date(this.writer.startedAt).toISOString();
|
|
70
|
+
this.segments.push(this.current);
|
|
71
|
+
}
|
|
72
|
+
finish() { return this.serialize(() => this.finishCurrent()); }
|
|
73
|
+
async cancel() {
|
|
74
|
+
await this.writer.cancel().catch(() => undefined);
|
|
75
|
+
await rm(this.current.filePath, { force: true });
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -4,9 +4,9 @@ import { randomUUID } from 'node:crypto';
|
|
|
4
4
|
import { loadConfig } from '../config';
|
|
5
5
|
import { appDataPath } from '../paths';
|
|
6
6
|
import { openRecordingSource, waitForVideoTask } from './scrcpy-recording-source';
|
|
7
|
-
import {
|
|
7
|
+
import { ReplayVideoSegments } from './replay-video-segments';
|
|
8
8
|
|
|
9
|
-
export type ReplayVideo = { filePath: string; fileName: string; startedAt: string; warning?: string };
|
|
9
|
+
export type ReplayVideo = { filePath: string; fileName: string; startedAt: string; warning?: string; scriptId?: string; scriptName?: string; boundaryAt?: string; segments?: ReplayVideo[] };
|
|
10
10
|
|
|
11
11
|
// 检查 MP4 的索引和媒体块,不将大视频整体读入内存。
|
|
12
12
|
export async function isFinalizedMp4(path: string) {
|
|
@@ -46,7 +46,7 @@ export async function startReplayVideo(deviceId: string, signal?: AbortSignal) {
|
|
|
46
46
|
|
|
47
47
|
// 独立于连接层,便于用真实 H.264 数据验证封装、断流和终止收尾。
|
|
48
48
|
export async function recordVideoStream(source: Awaited<ReturnType<typeof openRecordingSource>>, filePath: string, fileName: string, startupSignal: AbortSignal) {
|
|
49
|
-
const writer = new
|
|
49
|
+
const writer = new ReplayVideoSegments(filePath, fileName);
|
|
50
50
|
const reader = source.stream.getReader();
|
|
51
51
|
let stopping = false;
|
|
52
52
|
let warning: string | undefined;
|
|
@@ -62,11 +62,13 @@ export async function recordVideoStream(source: Awaited<ReturnType<typeof openRe
|
|
|
62
62
|
await pump;
|
|
63
63
|
try {
|
|
64
64
|
await writer.finish();
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
for (const segment of writer.segments) {
|
|
66
|
+
if (!await isFinalizedMp4(segment.filePath)) throw new Error('录屏未生成完整 MP4');
|
|
67
|
+
}
|
|
68
|
+
return { ...writer.segments[0]!, segments: writer.segments, warning };
|
|
67
69
|
} catch (error) {
|
|
68
70
|
await writer.cancel().catch(() => undefined);
|
|
69
|
-
|
|
71
|
+
if (writer.segments.length) return { ...writer.segments[0]!, segments: writer.segments, warning: `部分录像保存失败:${String(error)}` };
|
|
70
72
|
throw error;
|
|
71
73
|
}
|
|
72
74
|
})();
|
|
@@ -90,7 +92,13 @@ export async function recordVideoStream(source: Awaited<ReturnType<typeof openRe
|
|
|
90
92
|
} finally { writer.end(); reader.releaseLock(); }
|
|
91
93
|
})();
|
|
92
94
|
await waitForVideoTask(ready, startupSignal);
|
|
93
|
-
return {
|
|
95
|
+
return {
|
|
96
|
+
startedAt: new Date(writer.startedAt).toISOString(), stop,
|
|
97
|
+
selectScript: (id: string, name: string, force = false) => {
|
|
98
|
+
if (stopping || warning) return Promise.reject(new Error(warning || '录屏已停止'));
|
|
99
|
+
return writer.selectScript(id, name, force);
|
|
100
|
+
},
|
|
101
|
+
};
|
|
94
102
|
} catch (error) {
|
|
95
103
|
await stop().catch(() => undefined);
|
|
96
104
|
await rm(filePath, { force: true });
|
|
@@ -241,7 +241,7 @@ function stepSection(
|
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
function createReplayHtml(input: {
|
|
244
|
-
video?: { url: string; startedAt: string };
|
|
244
|
+
video?: { url: string; startedAt: string; segments?: Array<{ url: string; startedAt: string; boundaryAt?: string; scriptName?: string }> };
|
|
245
245
|
script: AppiumRecordedScriptRecord;
|
|
246
246
|
deviceId: string;
|
|
247
247
|
resultText: string;
|
|
@@ -418,6 +418,7 @@ function createReplayHtml(input: {
|
|
|
418
418
|
<div id="caption" class="caption">暂无截图</div>
|
|
419
419
|
<div class="controls">
|
|
420
420
|
<button id="toggle-recording" hidden>查看节点截图</button>
|
|
421
|
+
<select id="video-segment" aria-label="视频片段" hidden style="max-width:100%;min-width:0"></select>
|
|
421
422
|
<button id="previous" type="button" title="上一帧">上一帧</button>
|
|
422
423
|
<button id="play" type="button">播放</button>
|
|
423
424
|
<button id="next" type="button" title="下一帧">下一帧</button>
|
|
@@ -441,7 +442,16 @@ function createReplayHtml(input: {
|
|
|
441
442
|
const reportStartedAt = Date.parse(data.startedAt) || 0;
|
|
442
443
|
const recording = document.querySelector('#recording');
|
|
443
444
|
const toggleRecording = document.querySelector('#toggle-recording');
|
|
444
|
-
const
|
|
445
|
+
const videos = data.video ? (data.video.segments || [data.video]) : [];
|
|
446
|
+
const segmentSelect = document.querySelector('#video-segment');
|
|
447
|
+
let activeVideo = 0;
|
|
448
|
+
let videoOffset = Math.max(0, (Date.parse(videos[0]?.startedAt) || reportStartedAt) - reportStartedAt);
|
|
449
|
+
videos.forEach((video, index) => {
|
|
450
|
+
const option = document.createElement('option');
|
|
451
|
+
option.value = String(index); option.textContent = (index + 1) + '. ' + (video.scriptName || data.scriptName || '回放视频');
|
|
452
|
+
segmentSelect.appendChild(option);
|
|
453
|
+
});
|
|
454
|
+
segmentSelect.hidden = videos.length < 2;
|
|
445
455
|
let videoMode = Boolean(data.video);
|
|
446
456
|
let pendingVideoTime = 0;
|
|
447
457
|
if (data.video) { recording.src = data.video.url; toggleRecording.hidden = false; }
|
|
@@ -539,11 +549,32 @@ function createReplayHtml(input: {
|
|
|
539
549
|
};
|
|
540
550
|
const seekTo = (milliseconds, scrollStep = true) => {
|
|
541
551
|
currentMs = Math.max(0, Math.min(durationMs, milliseconds));
|
|
552
|
+
let index = 0;
|
|
553
|
+
for (let i = 1; i < videos.length; i++) {
|
|
554
|
+
if (Date.parse(videos[i].boundaryAt || videos[i].startedAt) - reportStartedAt <= currentMs) index = i;
|
|
555
|
+
}
|
|
556
|
+
if (index !== activeVideo) {
|
|
557
|
+
activeVideo = index; segmentSelect.value = String(index);
|
|
558
|
+
videoOffset = Math.max(0, Date.parse(videos[index].startedAt) - reportStartedAt);
|
|
559
|
+
recording.src = videos[index].url;
|
|
560
|
+
}
|
|
542
561
|
pendingVideoTime = Math.max(0, (currentMs - videoOffset) / 1000);
|
|
543
562
|
if (data.video && recording.readyState >= 1) recording.currentTime = Math.min(pendingVideoTime, recording.duration || pendingVideoTime);
|
|
544
563
|
render(scrollStep);
|
|
545
564
|
};
|
|
546
565
|
recording.addEventListener('loadedmetadata', () => { recording.currentTime = Math.min(pendingVideoTime, recording.duration); });
|
|
566
|
+
segmentSelect.addEventListener('change', () => {
|
|
567
|
+
pause();
|
|
568
|
+
const video = videos[Number(segmentSelect.value)];
|
|
569
|
+
seekTo(Date.parse(video.boundaryAt || video.startedAt) - reportStartedAt);
|
|
570
|
+
});
|
|
571
|
+
recording.addEventListener('ended', () => {
|
|
572
|
+
if (videoMode && activeVideo + 1 < videos.length) {
|
|
573
|
+
const next = videos[activeVideo + 1];
|
|
574
|
+
seekTo(Date.parse(next.boundaryAt || next.startedAt) - reportStartedAt);
|
|
575
|
+
recording.play().catch(() => undefined);
|
|
576
|
+
}
|
|
577
|
+
});
|
|
547
578
|
recording.addEventListener('timeupdate', () => {
|
|
548
579
|
if (!videoMode || recording.paused) return;
|
|
549
580
|
currentMs = recording.currentTime * 1000 + videoOffset;
|
|
@@ -806,7 +837,14 @@ export async function createAppiumReplayReport(input: {
|
|
|
806
837
|
const visualCheckByStepId = new Map(visualChecks.map((check) => [check.nodeId, check]));
|
|
807
838
|
const visualFailureCount = visualChecks.filter((check) => check.status === 'failed').length;
|
|
808
839
|
const html = createReplayHtml({
|
|
809
|
-
video: input.video ? {
|
|
840
|
+
video: input.video ? {
|
|
841
|
+
startedAt: input.video.startedAt,
|
|
842
|
+
url: relative(outputDir, input.video.filePath).split(/[/\\\\]/).map(encodeURIComponent).join('/'),
|
|
843
|
+
segments: (input.video.segments || [input.video]).map(segment => ({
|
|
844
|
+
startedAt: segment.startedAt, boundaryAt: segment.boundaryAt, scriptName: segment.scriptName,
|
|
845
|
+
url: relative(outputDir, segment.filePath).split(/[/\\\\]/).map(encodeURIComponent).join('/'),
|
|
846
|
+
})),
|
|
847
|
+
} : undefined,
|
|
810
848
|
script: input.script,
|
|
811
849
|
deviceId: input.deviceId,
|
|
812
850
|
resultText,
|
|
@@ -337,7 +337,10 @@ export async function handleAppiumRecorderRequest(
|
|
|
337
337
|
const run = getRunHistory(decodeURIComponent(videoMatch[1]), decodeURIComponent(videoMatch[2]));
|
|
338
338
|
if (!run?.video) { sendJson(res, { error: '本次运行没有视频' }, 404); return true; }
|
|
339
339
|
assertDeviceAllowed(run.deviceId);
|
|
340
|
-
|
|
340
|
+
const index = Number(new URL(req.url || '', 'http://localhost').searchParams.get('segment') || 0);
|
|
341
|
+
const segment = Number.isSafeInteger(index) && index >= 0 ? (run.video.segments || [run.video])[index] : undefined;
|
|
342
|
+
if (!segment) { sendJson(res, { error: '视频片段不存在' }, 404); return true; }
|
|
343
|
+
await sendReplayVideo(req, res, segment.filePath);
|
|
341
344
|
return true;
|
|
342
345
|
}
|
|
343
346
|
const historyMatch = pathname.match(/^\/api\/appium-recorder\/scripts\/([^/]+)\/history(?:\/([^/]+))?$/);
|
|
@@ -33,8 +33,10 @@ export function deleteRunHistory(scriptId: string, id: string) {
|
|
|
33
33
|
ensureTable();
|
|
34
34
|
const video = getRunHistory(scriptId, id)?.video;
|
|
35
35
|
// 只清理服务端生成并关联到该记录的录像,不接受客户端文件路径。
|
|
36
|
-
|
|
37
|
-
|
|
36
|
+
for (const segment of video?.segments || (video ? [video] : [])) {
|
|
37
|
+
if (basename(segment.filePath) === segment.fileName && /^replay-[\d]+-[\da-f-]+\.mp4$/.test(segment.fileName)) {
|
|
38
|
+
rmSync(segment.filePath, { force: true });
|
|
39
|
+
}
|
|
38
40
|
}
|
|
39
41
|
runSql(`PRAGMA secure_delete=ON; DELETE FROM appium_run_history WHERE script_id=${sqlString(scriptId)} AND id=${sqlString(id)};`);
|
|
40
42
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
import { computed, onMounted, ref } from 'vue';
|
|
2
|
+
import { computed, onMounted, ref, watch } from 'vue';
|
|
3
3
|
import { Delete, Refresh, VideoPlay } from '@element-plus/icons-vue';
|
|
4
4
|
import { ElMessage, ElMessageBox } from 'element-plus';
|
|
5
5
|
import { historyStatistics, type RunSummary, type RunDetail } from './run-history';
|
|
@@ -17,6 +17,8 @@ const error = ref('');
|
|
|
17
17
|
const nodeKey = ref('');
|
|
18
18
|
const logQuery = ref('');
|
|
19
19
|
const videoRun = ref<RunSummary>();
|
|
20
|
+
const videoSegment = ref(0);
|
|
21
|
+
watch(videoRun, () => { videoSegment.value = 0; }, { flush: 'sync' });
|
|
20
22
|
const base = `/api/appium-recorder/scripts/${encodeURIComponent(props.scriptId)}/history`;
|
|
21
23
|
const labels = { passed: '通过', failed: '失败', stopped: '已终止' };
|
|
22
24
|
const versions = computed(() => [...new Set(runs.value.map(run => run.appVersion || '未知'))]);
|
|
@@ -132,7 +134,10 @@ onMounted(load);
|
|
|
132
134
|
</section>
|
|
133
135
|
</div>
|
|
134
136
|
<el-dialog :model-value="Boolean(videoRun)" title="回放视频" width="min(800px, 90vw)" align-center append-to-body destroy-on-close @close="videoRun = undefined">
|
|
135
|
-
<
|
|
137
|
+
<el-select v-if="videoRun?.video?.segments?.length" v-model="videoSegment" aria-label="视频片段" style="width:100%;margin-bottom:12px">
|
|
138
|
+
<el-option v-for="(segment, index) in videoRun.video.segments" :key="segment.fileName" :label="`${index + 1}. ${segment.scriptName || videoRun.scriptName}`" :value="index" />
|
|
139
|
+
</el-select>
|
|
140
|
+
<video v-if="videoRun" :src="`${base}/${encodeURIComponent(videoRun.id)}/video?segment=${videoSegment}`" controls preload="metadata" style="width:100%;max-height:70vh" />
|
|
136
141
|
</el-dialog>
|
|
137
142
|
</el-dialog>
|
|
138
143
|
</template>
|
|
@@ -5,8 +5,10 @@ export type HistoryNode = {
|
|
|
5
5
|
durationMs: number | null;
|
|
6
6
|
};
|
|
7
7
|
|
|
8
|
+
export type RunVideo = { filePath: string; fileName: string; startedAt: string; warning?: string; scriptId?: string; scriptName?: string; boundaryAt?: string; segments?: RunVideo[] };
|
|
9
|
+
|
|
8
10
|
export type RunSummary = {
|
|
9
|
-
video?:
|
|
11
|
+
video?: RunVideo;
|
|
10
12
|
id: string;
|
|
11
13
|
scriptId: string;
|
|
12
14
|
scriptName: string;
|