- 增强 DICOM/视频项目导入与演示数据:DICOM 按文件名自然顺序处理,导入后展示上传与解析任务进度,恢复演示出厂设置保留演示视频和演示 DICOM 项目,并补充 demo media seed 逻辑。 - 完善项目管理:项目支持重命名、删除、复制,删除使用站内确认弹窗,复制支持新项目重置和全内容复制,DICOM 项目不显示生成帧入口。 - 完善 GT Mask 与导出链路:只支持 8-bit maskid 图导入,非法/全背景图明确拒绝,尺寸自动适配,高精度 polygon 回显;统一导出默认当前帧,GT_label 使用 uint8 和真实 maskid,待分类 maskid 0 与背景一致。 - 完善分割工作区交互:新增画笔和橡皮擦并支持尺寸控制,移除创建点/线段入口,工具栏按类别分隔,AI 智能分割使用明确 AI 图标,取消黄色 seed point,清空/删除传播 mask 后同步清理空帧时间轴状态。 - 完善传播与时间轴:自动传播使用 SAM 2.1 权重任务,参考帧无遮罩时提示,传播历史按同一蓝色系递进变暗,删除/清空传播链时保留人工或独立 AI 标注来源。 - 完善模板库:新增头颈部 CT 分割默认模板,所有模板保留 maskid 0 待分类,支持鼠标复制模板、拖拽层级、JSON 批量导入预览、删除 label 和站内删除确认。 - 完善用户与高风险确认:用户改密码、删除用户、恢复演示出厂设置和清空人工/AI 标注帧均改为站内确认交互,避免浏览器原生 prompt/confirm。 - 补充前后端测试与文档:更新项目、模板、GT 导入、导出、传播、DICOM、用户管理等测试,并同步 README、AGENTS 和 doc 下实现/契约/测试计划文档。
334 lines
12 KiB
Python
334 lines
12 KiB
Python
def test_upload_rejects_unsupported_file_type(client):
|
|
response = client.post(
|
|
"/api/media/upload",
|
|
files={"file": ("notes.txt", b"text", "text/plain")},
|
|
)
|
|
|
|
assert response.status_code == 400
|
|
assert "Unsupported file type" in response.json()["detail"]
|
|
|
|
|
|
def test_upload_auto_creates_project(client, monkeypatch):
|
|
uploaded = []
|
|
monkeypatch.setattr("routers.media.upload_file", lambda object_name, data, content_type, length: uploaded.append(object_name))
|
|
monkeypatch.setattr("routers.media.get_presigned_url", lambda object_name, expires=3600: f"http://storage/{object_name}")
|
|
|
|
response = client.post(
|
|
"/api/media/upload",
|
|
files={"file": ("clip.mp4", b"video", "video/mp4")},
|
|
)
|
|
|
|
assert response.status_code == 201
|
|
data = response.json()
|
|
assert data["project_id"] is not None
|
|
assert data["object_name"] == f"uploads/{data['project_id']}/clip.mp4"
|
|
assert uploaded == ["uploads/general/clip.mp4", f"uploads/{data['project_id']}/clip.mp4"]
|
|
|
|
|
|
def test_upload_links_existing_project(client, monkeypatch):
|
|
project = client.post("/api/projects", json={"name": "Existing"}).json()
|
|
monkeypatch.setattr("routers.media.upload_file", lambda *args, **kwargs: None)
|
|
monkeypatch.setattr("routers.media.get_presigned_url", lambda object_name, expires=3600: f"http://storage/{object_name}")
|
|
|
|
response = client.post(
|
|
"/api/media/upload",
|
|
data={"project_id": str(project["id"])},
|
|
files={"file": ("clip.mp4", b"video", "video/mp4")},
|
|
)
|
|
|
|
assert response.status_code == 201
|
|
detail = client.get(f"/api/projects/{project['id']}").json()
|
|
assert detail["video_path"] == f"uploads/{project['id']}/clip.mp4"
|
|
|
|
|
|
def test_upload_dicom_batch_filters_files_and_creates_project(client, monkeypatch):
|
|
uploaded = []
|
|
monkeypatch.setattr("routers.media.upload_file", lambda object_name, data, content_type, length: uploaded.append(object_name))
|
|
|
|
response = client.post(
|
|
"/api/media/upload/dicom",
|
|
files=[
|
|
("files", ("10.dcm", b"dcm10", "application/dicom")),
|
|
("files", ("skip.txt", b"text", "text/plain")),
|
|
("files", ("2.dcm", b"dcm2", "application/dicom")),
|
|
("files", ("1.dcm", b"dcm1", "application/dicom")),
|
|
],
|
|
)
|
|
|
|
assert response.status_code == 201
|
|
data = response.json()
|
|
assert data["uploaded_count"] == 3
|
|
assert uploaded == [
|
|
f"uploads/{data['project_id']}/dicom/1.dcm",
|
|
f"uploads/{data['project_id']}/dicom/2.dcm",
|
|
f"uploads/{data['project_id']}/dicom/10.dcm",
|
|
]
|
|
project_detail = client.get(f"/api/projects/{data['project_id']}").json()
|
|
assert project_detail["name"] == "1.dcm"
|
|
|
|
|
|
def test_upload_dicom_batch_rejects_when_no_valid_dicom(client, monkeypatch):
|
|
monkeypatch.setattr("routers.media.upload_file", lambda *args, **kwargs: None)
|
|
|
|
response = client.post(
|
|
"/api/media/upload/dicom",
|
|
files=[
|
|
("files", ("notes.txt", b"text", "text/plain")),
|
|
],
|
|
)
|
|
|
|
assert response.status_code == 400
|
|
assert response.json()["detail"] == "No valid DICOM files uploaded"
|
|
|
|
|
|
def test_parse_media_queues_background_task(client, monkeypatch):
|
|
project = client.post("/api/projects", json={
|
|
"name": "Parse Me",
|
|
"video_path": "uploads/1/clip.mp4",
|
|
"source_type": "video",
|
|
"parse_fps": 5,
|
|
}).json()
|
|
|
|
class FakeAsyncResult:
|
|
id = "celery-1"
|
|
|
|
queued = []
|
|
monkeypatch.setattr("routers.media.parse_project_media.delay", lambda task_id: queued.append(task_id) or FakeAsyncResult())
|
|
published = []
|
|
monkeypatch.setattr("routers.media.publish_task_progress_event", lambda task: published.append(task.id))
|
|
|
|
response = client.post(f"/api/media/parse?project_id={project['id']}")
|
|
|
|
assert response.status_code == 202
|
|
data = response.json()
|
|
assert data["task_type"] == "parse_video"
|
|
assert data["status"] == "queued"
|
|
assert data["progress"] == 0
|
|
assert data["project_id"] == project["id"]
|
|
assert data["celery_task_id"] == "celery-1"
|
|
assert data["payload"] == {
|
|
"source_type": "video",
|
|
"parse_fps": 5.0,
|
|
"max_frames": None,
|
|
"target_width": 640,
|
|
}
|
|
assert queued == [data["id"]]
|
|
assert published == [data["id"]]
|
|
|
|
detail = client.get(f"/api/tasks/{data['id']}")
|
|
assert detail.status_code == 200
|
|
assert detail.json()["status"] == "queued"
|
|
project_detail = client.get(f"/api/projects/{project['id']}").json()
|
|
assert project_detail["status"] == "parsing"
|
|
|
|
|
|
def test_parse_media_accepts_frame_sequence_options(client, monkeypatch):
|
|
project = client.post("/api/projects", json={
|
|
"name": "Parse Options",
|
|
"video_path": "uploads/1/clip.mp4",
|
|
"source_type": "video",
|
|
"parse_fps": 30,
|
|
}).json()
|
|
|
|
class FakeAsyncResult:
|
|
id = "celery-options"
|
|
|
|
monkeypatch.setattr("routers.media.parse_project_media.delay", lambda task_id: FakeAsyncResult())
|
|
monkeypatch.setattr("routers.media.publish_task_progress_event", lambda task: None)
|
|
|
|
response = client.post(
|
|
f"/api/media/parse?project_id={project['id']}&parse_fps=15&max_frames=120&target_width=960"
|
|
)
|
|
|
|
assert response.status_code == 202
|
|
data = response.json()
|
|
assert data["payload"] == {
|
|
"source_type": "video",
|
|
"parse_fps": 15.0,
|
|
"max_frames": 120,
|
|
"target_width": 960,
|
|
}
|
|
assert client.get(f"/api/projects/{project['id']}").json()["parse_fps"] == 15.0
|
|
|
|
|
|
def test_parse_task_runner_registers_frames(client, db_session, monkeypatch, tmp_path):
|
|
from models import ProcessingTask
|
|
from services.media_task_runner import run_parse_media_task
|
|
|
|
project = client.post("/api/projects", json={
|
|
"name": "Parse Me",
|
|
"video_path": "uploads/1/clip.mp4",
|
|
"source_type": "video",
|
|
"parse_fps": 5,
|
|
}).json()
|
|
task = ProcessingTask(
|
|
task_type="parse_video",
|
|
status="queued",
|
|
progress=0,
|
|
project_id=project["id"],
|
|
payload={"source_type": "video"},
|
|
)
|
|
db_session.add(task)
|
|
db_session.commit()
|
|
db_session.refresh(task)
|
|
frame_file = tmp_path / "frame_000001.jpg"
|
|
frame_file.write_bytes(b"fake image")
|
|
|
|
monkeypatch.setattr("services.media_task_runner.download_file", lambda object_name: b"video")
|
|
monkeypatch.setattr(
|
|
"services.media_task_runner.parse_video",
|
|
lambda local_path, output_dir, fps, max_frames=None, target_width=640: ([str(frame_file)], 25.0),
|
|
)
|
|
monkeypatch.setattr("services.media_task_runner.extract_thumbnail", lambda local_path, thumbnail_path: open(thumbnail_path, "wb").write(b"thumb"))
|
|
monkeypatch.setattr("services.media_task_runner.upload_file", lambda *args, **kwargs: None)
|
|
monkeypatch.setattr("services.media_task_runner.upload_frames_to_minio", lambda frame_files, project_id: [f"projects/{project_id}/frames/frame_000001.jpg"])
|
|
monkeypatch.setattr("routers.projects.get_presigned_url", lambda object_name, expires=3600: f"http://storage/{object_name}")
|
|
published = []
|
|
monkeypatch.setattr(
|
|
"services.media_task_runner.publish_task_progress_event",
|
|
lambda event_task: published.append((event_task.status, event_task.progress, event_task.message)),
|
|
)
|
|
|
|
result = run_parse_media_task(db_session, task.id)
|
|
|
|
assert result["frames_extracted"] == 1
|
|
assert result["frame_sequence"] == {
|
|
"original_fps": 25.0,
|
|
"parse_fps": 5.0,
|
|
"frame_count": 1,
|
|
"duration_ms": 0.0,
|
|
"target_width": 640,
|
|
"frame_width": None,
|
|
"frame_height": None,
|
|
"max_frames": None,
|
|
"object_prefix": f"projects/{project['id']}/frames",
|
|
}
|
|
db_session.refresh(task)
|
|
assert task.status == "success"
|
|
assert task.progress == 100
|
|
assert ("running", 5, "后台解析已启动") in published
|
|
assert ("success", 100, "解析完成") in published
|
|
project_detail = client.get(f"/api/projects/{project['id']}").json()
|
|
assert project_detail["status"] == "ready"
|
|
frames = client.get(f"/api/projects/{project['id']}/frames").json()
|
|
assert "frame_000001.jpg" in frames[0]["image_url"]
|
|
assert frames[0]["timestamp_ms"] == 0.0
|
|
assert frames[0]["source_frame_number"] == 0
|
|
|
|
|
|
def test_parse_dicom_reads_files_in_natural_filename_order(monkeypatch, tmp_path):
|
|
from pathlib import Path
|
|
|
|
import numpy as np
|
|
|
|
from services.frame_parser import parse_dicom
|
|
|
|
dcm_dir = tmp_path / "dcm"
|
|
output_dir = tmp_path / "frames"
|
|
dcm_dir.mkdir()
|
|
for name in ["10.dcm", "2.dcm", "1.dcm"]:
|
|
(dcm_dir / name).write_bytes(b"dcm")
|
|
|
|
read_order = []
|
|
|
|
class FakeDicom:
|
|
pixel_array = np.ones((2, 2), dtype=np.uint8)
|
|
|
|
def fake_dcmread(path):
|
|
read_order.append(Path(path).name)
|
|
return FakeDicom()
|
|
|
|
def fake_imwrite(path, image, params=None):
|
|
Path(path).write_bytes(image.tobytes())
|
|
return True
|
|
|
|
monkeypatch.setattr("services.frame_parser.dcmread", fake_dcmread)
|
|
monkeypatch.setattr("services.frame_parser.cv2.imwrite", fake_imwrite)
|
|
|
|
frame_files = parse_dicom(str(dcm_dir), str(output_dir))
|
|
|
|
assert read_order == ["1.dcm", "2.dcm", "10.dcm"]
|
|
assert [Path(path).name for path in frame_files] == ["frame_000000.jpg", "frame_000001.jpg", "frame_000002.jpg"]
|
|
|
|
|
|
def test_parse_task_runner_downloads_dicom_objects_in_natural_filename_order(client, db_session, monkeypatch, tmp_path):
|
|
from types import SimpleNamespace
|
|
|
|
from models import ProcessingTask
|
|
from services.media_task_runner import run_parse_media_task
|
|
|
|
project = client.post("/api/projects", json={
|
|
"name": "DICOM",
|
|
"video_path": "uploads/1/dicom",
|
|
"source_type": "dicom",
|
|
"parse_fps": 30,
|
|
}).json()
|
|
task = ProcessingTask(
|
|
task_type="parse_dicom",
|
|
status="queued",
|
|
progress=0,
|
|
project_id=project["id"],
|
|
payload={"source_type": "dicom"},
|
|
)
|
|
db_session.add(task)
|
|
db_session.commit()
|
|
db_session.refresh(task)
|
|
|
|
class FakeClient:
|
|
def list_objects(self, bucket, prefix, recursive=True):
|
|
return [
|
|
SimpleNamespace(object_name=f"{prefix}/10.dcm"),
|
|
SimpleNamespace(object_name=f"{prefix}/2.dcm"),
|
|
SimpleNamespace(object_name=f"{prefix}/1.dcm"),
|
|
]
|
|
|
|
downloaded = []
|
|
frame_files = []
|
|
for idx in range(3):
|
|
frame_file = tmp_path / f"frame_{idx:06d}.jpg"
|
|
frame_file.write_bytes(b"fake image")
|
|
frame_files.append(str(frame_file))
|
|
|
|
monkeypatch.setattr("services.media_task_runner.get_minio_client", lambda: FakeClient())
|
|
monkeypatch.setattr(
|
|
"services.media_task_runner.download_file",
|
|
lambda object_name: downloaded.append(object_name) or b"dcm",
|
|
)
|
|
monkeypatch.setattr("services.media_task_runner.parse_dicom", lambda *args, **kwargs: frame_files)
|
|
monkeypatch.setattr(
|
|
"services.media_task_runner.upload_frames_to_minio",
|
|
lambda frames, project_id: [f"projects/{project_id}/frames/{idx}.jpg" for idx, _ in enumerate(frames)],
|
|
)
|
|
monkeypatch.setattr("services.media_task_runner.publish_task_progress_event", lambda task: None)
|
|
|
|
result = run_parse_media_task(db_session, task.id)
|
|
|
|
assert result["frames_extracted"] == 3
|
|
assert downloaded == [
|
|
"uploads/1/dicom/1.dcm",
|
|
"uploads/1/dicom/2.dcm",
|
|
"uploads/1/dicom/10.dcm",
|
|
]
|
|
|
|
|
|
def test_parse_task_runner_skips_already_cancelled_task(db_session):
|
|
from models import ProcessingTask
|
|
from services.media_task_runner import run_parse_media_task
|
|
|
|
task = ProcessingTask(
|
|
task_type="parse_video",
|
|
status="cancelled",
|
|
progress=100,
|
|
message="任务已取消",
|
|
project_id=1,
|
|
payload={"source_type": "video"},
|
|
)
|
|
db_session.add(task)
|
|
db_session.commit()
|
|
db_session.refresh(task)
|
|
|
|
result = run_parse_media_task(db_session, task.id)
|
|
|
|
assert result["status"] == "cancelled"
|
|
assert result["message"] == "任务已取消"
|