Skip to content

Commit b94bc12

Browse files
committed
test_capi: Create a test ffi::cubeb context rather than using a nullptr.
1 parent 4a44a83 commit b94bc12

File tree

1 file changed

+40
-6
lines changed

1 file changed

+40
-6
lines changed

cubeb-backend/tests/test_capi.rs

+40-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ use cubeb_backend::{
1515
use std::ffi::CStr;
1616
use std::os::raw::c_void;
1717
use std::ptr;
18+
use std::sync::OnceLock;
1819

1920
pub const OPS: Ops = capi_new!(TestContext, TestStream);
2021

@@ -144,12 +145,13 @@ fn test_ops_context_init() {
144145
unsafe { OPS.init.unwrap()(&mut c, ptr::null()) },
145146
ffi::CUBEB_OK
146147
);
148+
assert!(!c.is_null());
147149
unsafe { OPS.destroy.unwrap()(c) }
148150
}
149151

150152
#[test]
151153
fn test_ops_context_max_channel_count() {
152-
let c: *mut ffi::cubeb = ptr::null_mut();
154+
let c: *mut ffi::cubeb = get_ctx();
153155
let mut max_channel_count = u32::max_value();
154156
assert_eq!(
155157
unsafe { OPS.get_max_channel_count.unwrap()(c, &mut max_channel_count) },
@@ -160,7 +162,7 @@ fn test_ops_context_max_channel_count() {
160162

161163
#[test]
162164
fn test_ops_context_min_latency() {
163-
let c: *mut ffi::cubeb = ptr::null_mut();
165+
let c: *mut ffi::cubeb = get_ctx();
164166
let params: ffi::cubeb_stream_params = unsafe { ::std::mem::zeroed() };
165167
let mut latency = u32::max_value();
166168
assert_eq!(
@@ -172,7 +174,7 @@ fn test_ops_context_min_latency() {
172174

173175
#[test]
174176
fn test_ops_context_preferred_sample_rate() {
175-
let c: *mut ffi::cubeb = ptr::null_mut();
177+
let c: *mut ffi::cubeb = get_ctx();
176178
let mut rate = u32::max_value();
177179
assert_eq!(
178180
unsafe { OPS.get_preferred_sample_rate.unwrap()(c, &mut rate) },
@@ -183,7 +185,7 @@ fn test_ops_context_preferred_sample_rate() {
183185

184186
#[test]
185187
fn test_ops_context_supported_input_processing_params() {
186-
let c: *mut ffi::cubeb = ptr::null_mut();
188+
let c: *mut ffi::cubeb = get_ctx();
187189
let mut params: ffi::cubeb_input_processing_params = InputProcessingParams::all().bits();
188190
assert_eq!(
189191
unsafe { OPS.get_supported_input_processing_params.unwrap()(c, &mut params) },
@@ -194,7 +196,7 @@ fn test_ops_context_supported_input_processing_params() {
194196

195197
#[test]
196198
fn test_ops_context_enumerate_devices() {
197-
let c: *mut ffi::cubeb = ptr::null_mut();
199+
let c: *mut ffi::cubeb = get_ctx();
198200
let mut coll = ffi::cubeb_device_collection {
199201
device: ptr::null_mut(),
200202
count: 0,
@@ -209,7 +211,7 @@ fn test_ops_context_enumerate_devices() {
209211

210212
#[test]
211213
fn test_ops_context_device_collection_destroy() {
212-
let c: *mut ffi::cubeb = ptr::null_mut();
214+
let c: *mut ffi::cubeb = get_ctx();
213215
let mut coll = ffi::cubeb_device_collection {
214216
device: 0xDEAD_BEEF as *mut _,
215217
count: usize::max_value(),
@@ -296,3 +298,35 @@ fn test_ops_stream_device_destroy() {
296298
OPS.stream_device_destroy.unwrap()(s, 0xDEAD_BEEF as *mut _);
297299
}
298300
}
301+
302+
fn get_ctx() -> *mut ffi::cubeb {
303+
CONTEXT.get_or_init(TestContextPtr::new).ptr
304+
}
305+
306+
static CONTEXT: OnceLock<TestContextPtr> = OnceLock::new();
307+
308+
struct TestContextPtr {
309+
ptr: *mut ffi::cubeb,
310+
}
311+
312+
// Safety: ffi::cubeb implementations are expected to be thread-safe.
313+
unsafe impl Send for TestContextPtr {}
314+
unsafe impl Sync for TestContextPtr {}
315+
316+
impl TestContextPtr {
317+
fn new() -> Self {
318+
let mut c: *mut ffi::cubeb = ptr::null_mut();
319+
assert_eq!(
320+
unsafe { OPS.init.unwrap()(&mut c, ptr::null()) },
321+
ffi::CUBEB_OK
322+
);
323+
assert!(!c.is_null());
324+
TestContextPtr { ptr: c }
325+
}
326+
}
327+
328+
impl Drop for TestContextPtr {
329+
fn drop(&mut self) {
330+
unsafe { OPS.destroy.unwrap()(self.ptr) }
331+
}
332+
}

0 commit comments

Comments
 (0)