tests: coverage round 4 (footage, IPC, input immediate, project/factory)

- footage_test: static describe/loop-mode helpers, stream mapping,
  Value() job generation incl. proxy attachment, data roles, reprobe
  via seeded metadata cache
- render_workerpool_ipc_test: SharedMemoryRegion, FrameSlotPool
  cross-mapping handoff, IpcMessage NDJSON round trips, RenderWorkerPool
  rejection paths
- node_inputimmediate_test: NodeInputImmediate raw API, SetValueAtTime,
  interpolation (linear/hold/bezier) for float/vec/color/rational
- project_factory_test: Project settings/cache modes/save-load/signals,
  NodeFactory creation and menus

Also fixes Project::cache_path() returning the default cache instead of
a configured custom cache path (inverted branch, found by the tests)
This commit is contained in:
2026-07-17 04:55:37 +08:00
parent 576a843e4d
commit 7e55bd049b
6 changed files with 3016 additions and 1 deletions
+1 -1
View File
@@ -478,7 +478,7 @@ QString Project::cache_path() const
break;
case kCacheCustomPath: {
QString cache_path = GetCustomCachePath();
if (cache_path.isEmpty()) {
if (!cache_path.isEmpty()) {
return cache_path;
}
break;