- oaknode Rust crate: full implementation (core engine, sequence/ track/block/footage, traverser, serializer, 43 node behaviors; 493 tests green) - oakrender Rust crate: full implementation incl. wgpu backend skeleton, ticket arena, worker pool (136 tests green; fixed lost-wakeup and ticket ordering races) - src/facade/rust (oakfacade): 222 oakengine_* exports over the module C ABIs (61 tests green); worker_main + real POSIX shm frame-slot transport (SpscRingBuffer/FrameSlotPool, wire-compatible with engine/render/ipc) - cli/rust + worker/rust binaries (29 + 29 tests green) - oakotio: FCPXML import/export (49 tests green) - oaktask: OTIO/FCPXML format dispatch (90 tests green) - app/rust: gpui app skeleton — dock panels (viewers/timeline/ explorer/inspector/node editor), transport, olive themes, i18n (en/zh), 37 tests green - gpui submodule: menu checkmarks, dock ratios, vertical meter, CPU-frame viewer surface, drop-frame timecode
71 lines
2.4 KiB
Rust
71 lines
2.4 KiB
Rust
// Oak Video Editor - Non-Linear Video Editor
|
|
// Copyright (C) 2026 Oak Team
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Forces rustc to link every module crate's rlib into the test binary.
|
|
//!
|
|
//! The facade itself only references the modules through `extern "C"`
|
|
//! imports (see src/bridge), so rustc would otherwise drop the
|
|
//! dev-dependency rlibs from the link and leave the imports undefined.
|
|
//! Referencing one exported item per crate makes the linker pull the
|
|
//! crate's objects in; the `#[no_mangle]` exports then satisfy the
|
|
//! bridge imports.
|
|
|
|
/// Smoke-test that every module crate links: each referenced export is
|
|
/// called once and must return a sane value or a handle.
|
|
#[path = "common/mod.rs"]
|
|
mod common;
|
|
|
|
|
|
#[test]
|
|
fn all_module_crates_link() {
|
|
// oakundo: fresh stack, refcount 1.
|
|
let stack = unsafe { oakundo::ffi::undostack::oakundo_undostack_init() };
|
|
assert!(!stack.ctx.is_null());
|
|
|
|
// oakcommon: an int config read with fallback.
|
|
let v = unsafe {
|
|
oakcommon::ffi::config::oakcommon_config_get_int(
|
|
std::ptr::null(),
|
|
c"no-such-key".as_ptr(),
|
|
42,
|
|
)
|
|
};
|
|
assert_eq!(v, 42);
|
|
|
|
// oakcodec: format count (must be positive).
|
|
let n = unsafe { oakcodec::ffi::format::oakcodec_encoding_format_count() };
|
|
assert!(n > 0);
|
|
|
|
// oakaudio: waveform length of a null handle is an error code, not a
|
|
// crash (module validates the handle).
|
|
let rc = unsafe {
|
|
oakaudio::ffi::waveform::oakaudio_waveform_length(
|
|
oakaudio::handle::CHandle::null(),
|
|
std::ptr::null_mut(),
|
|
std::ptr::null_mut(),
|
|
)
|
|
};
|
|
assert!(rc < 0);
|
|
|
|
// oakrender: cache indicator height is a positive constant.
|
|
let h = unsafe { oakrender::ffi::cache::oakrender_cache_indicator_height() };
|
|
assert!(h > 0);
|
|
|
|
// oakplugin: host plugin count with no scan is 0.
|
|
let n = unsafe { oakplugin::ffi::oakplugin_host_plugin_count() };
|
|
assert_eq!(n, 0);
|
|
}
|