summaryrefslogtreecommitdiff
path: root/test_napi/src/object_wrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'test_napi/src/object_wrap.rs')
-rw-r--r--test_napi/src/object_wrap.rs134
1 files changed, 58 insertions, 76 deletions
diff --git a/test_napi/src/object_wrap.rs b/test_napi/src/object_wrap.rs
index 5b15a16d7..493cb05b3 100644
--- a/test_napi/src/object_wrap.rs
+++ b/test_napi/src/object_wrap.rs
@@ -1,7 +1,8 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-use napi_sys::PropertyAttributes;
-use napi_sys::Status::napi_ok;
+use crate::assert_napi_ok;
+use crate::napi_get_callback_info;
+use crate::napi_new_property;
use napi_sys::ValueType::napi_number;
use napi_sys::*;
use std::os::raw::{c_char, c_void};
@@ -16,42 +17,34 @@ impl NapiObject {
#[allow(clippy::new_ret_no_self)]
pub extern "C" fn new(env: napi_env, info: napi_callback_info) -> napi_value {
let mut new_target: napi_value = ptr::null_mut();
- assert!(
- unsafe { napi_get_new_target(env, info, &mut new_target) } == napi_ok
- );
+ assert_napi_ok!(napi_get_new_target(env, info, &mut new_target));
let is_constructor = !new_target.is_null();
- let (args, argc, this) = crate::get_callback_info!(env, info, 1);
+ let (args, argc, this) = napi_get_callback_info!(env, info, 1);
assert_eq!(argc, 1);
if is_constructor {
let mut value = 0;
let mut ty = -1;
- assert!(unsafe { napi_typeof(env, args[0], &mut ty) } == napi_ok);
+ assert_napi_ok!(napi_typeof(env, args[0], &mut ty));
assert_eq!(ty, napi_number);
- assert!(
- unsafe { napi_get_value_int32(env, args[0], &mut value) } == napi_ok
- );
+ assert_napi_ok!(napi_get_value_int32(env, args[0], &mut value));
let mut wrapper: napi_ref = ptr::null_mut();
let obj = Box::new(Self {
counter: value,
_wrapper: wrapper,
});
- assert!(
- unsafe {
- napi_wrap(
- env,
- this,
- Box::into_raw(obj) as *mut c_void,
- None,
- ptr::null_mut(),
- &mut wrapper,
- )
- } == napi_ok
- );
+ assert_napi_ok!(napi_wrap(
+ env,
+ this,
+ Box::into_raw(obj) as *mut c_void,
+ None,
+ ptr::null_mut(),
+ &mut wrapper,
+ ));
return this;
}
@@ -63,18 +56,16 @@ impl NapiObject {
env: napi_env,
info: napi_callback_info,
) -> napi_value {
- let (args, argc, this) = crate::get_callback_info!(env, info, 1);
+ let (args, argc, this) = napi_get_callback_info!(env, info, 1);
assert_eq!(argc, 1);
let mut obj: *mut Self = ptr::null_mut();
- assert!(
- unsafe { napi_unwrap(env, this, &mut obj as *mut _ as *mut *mut c_void) }
- == napi_ok
- );
+ assert_napi_ok!(napi_unwrap(
+ env,
+ this,
+ &mut obj as *mut _ as *mut *mut c_void
+ ));
- assert!(
- unsafe { napi_get_value_int32(env, args[0], &mut (*obj).counter) }
- == napi_ok
- );
+ assert_napi_ok!(napi_get_value_int32(env, args[0], &mut (*obj).counter));
ptr::null_mut()
}
@@ -83,18 +74,17 @@ impl NapiObject {
env: napi_env,
info: napi_callback_info,
) -> napi_value {
- let (_args, argc, this) = crate::get_callback_info!(env, info, 0);
+ let (_args, argc, this) = napi_get_callback_info!(env, info, 0);
assert_eq!(argc, 0);
let mut obj: *mut Self = ptr::null_mut();
- assert!(
- unsafe { napi_unwrap(env, this, &mut obj as *mut _ as *mut *mut c_void) }
- == napi_ok
- );
+ assert_napi_ok!(napi_unwrap(
+ env,
+ this,
+ &mut obj as *mut _ as *mut *mut c_void
+ ));
let mut num: napi_value = ptr::null_mut();
- assert!(
- unsafe { napi_create_int32(env, (*obj).counter, &mut num) } == napi_ok
- );
+ assert_napi_ok!(napi_create_int32(env, (*obj).counter, &mut num));
num
}
@@ -103,13 +93,14 @@ impl NapiObject {
env: napi_env,
info: napi_callback_info,
) -> napi_value {
- let (_args, argc, this) = crate::get_callback_info!(env, info, 0);
+ let (_args, argc, this) = napi_get_callback_info!(env, info, 0);
assert_eq!(argc, 0);
let mut obj: *mut Self = ptr::null_mut();
- assert!(
- unsafe { napi_unwrap(env, this, &mut obj as *mut _ as *mut *mut c_void) }
- == napi_ok
- );
+ assert_napi_ok!(napi_unwrap(
+ env,
+ this,
+ &mut obj as *mut _ as *mut *mut c_void
+ ));
unsafe {
(*obj).counter += 1;
@@ -122,52 +113,43 @@ impl NapiObject {
env: napi_env,
info: napi_callback_info,
) -> napi_value {
- let (_args, argc, _this) = crate::get_callback_info!(env, info, 0);
+ let (_args, argc, _this) = napi_get_callback_info!(env, info, 0);
assert_eq!(argc, 0);
let int64 = 64;
let mut value: napi_value = ptr::null_mut();
- assert!(unsafe { napi_create_int64(env, int64, &mut value) } == napi_ok);
+ assert_napi_ok!(napi_create_int64(env, int64, &mut value));
value
}
}
pub fn init(env: napi_env, exports: napi_value) {
- let mut static_prop =
- crate::new_property!(env, "factory\0", NapiObject::factory);
+ let mut static_prop = napi_new_property!(env, "factory", NapiObject::factory);
static_prop.attributes = PropertyAttributes::static_;
let properties = &[
- crate::new_property!(env, "set_value\0", NapiObject::set_value),
- crate::new_property!(env, "get_value\0", NapiObject::get_value),
- crate::new_property!(env, "increment\0", NapiObject::increment),
+ napi_new_property!(env, "set_value", NapiObject::set_value),
+ napi_new_property!(env, "get_value", NapiObject::get_value),
+ napi_new_property!(env, "increment", NapiObject::increment),
static_prop,
];
let mut cons: napi_value = ptr::null_mut();
- assert!(
- unsafe {
- napi_define_class(
- env,
- "NapiObject\0".as_ptr() as *mut c_char,
- usize::MAX,
- Some(NapiObject::new),
- ptr::null_mut(),
- properties.len(),
- properties.as_ptr(),
- &mut cons,
- )
- } == napi_ok
- );
-
- assert!(
- unsafe {
- napi_set_named_property(
- env,
- exports,
- "NapiObject\0".as_ptr() as *const c_char,
- cons,
- )
- } == napi_ok
- );
+ assert_napi_ok!(napi_define_class(
+ env,
+ "NapiObject\0".as_ptr() as *mut c_char,
+ usize::MAX,
+ Some(NapiObject::new),
+ ptr::null_mut(),
+ properties.len(),
+ properties.as_ptr(),
+ &mut cons,
+ ));
+
+ assert_napi_ok!(napi_set_named_property(
+ env,
+ exports,
+ "NapiObject\0".as_ptr() as *const c_char,
+ cons,
+ ));
}