diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-05-06 20:22:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-06 21:22:50 +0200 |
commit | f698bc70e2f1d4cd58d17544258cf1b19726b66a (patch) | |
tree | 7c2ae51caae1b9f832c59a8bf0a0c2300672d68d /tests/napi/src/object.rs | |
parent | a635abbf2136f5512543551af6a6c37b5e9aa4ba (diff) |
fix(ext/node): napi_get_element and napi_set_element work with objects (#23713)
This change makes DuckDB example work:
https://github.com/denoland/deno/issues/23656.
Diffstat (limited to 'tests/napi/src/object.rs')
-rw-r--r-- | tests/napi/src/object.rs | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/napi/src/object.rs b/tests/napi/src/object.rs new file mode 100644 index 000000000..aa34133dc --- /dev/null +++ b/tests/napi/src/object.rs @@ -0,0 +1,55 @@ +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. + +use crate::assert_napi_ok; +use crate::napi_get_callback_info; +use crate::napi_new_property; +use napi_sys::*; +use std::ptr; + +extern "C" fn test_object_new( + env: napi_env, + info: napi_callback_info, +) -> napi_value { + let (args, argc, _) = napi_get_callback_info!(env, info, 2); + assert_eq!(argc, 2); + + let mut value: napi_value = ptr::null_mut(); + assert_napi_ok!(napi_create_object(env, &mut value)); + + assert_napi_ok!(napi_set_element(env, value, 0, args[0])); + assert_napi_ok!(napi_set_element(env, value, 1, args[1])); + + value +} + +extern "C" fn test_object_get( + env: napi_env, + info: napi_callback_info, +) -> napi_value { + let (args, argc, _) = napi_get_callback_info!(env, info, 1); + assert_eq!(argc, 1); + + let obj = args[0]; + assert_napi_ok!(napi_set_element(env, obj, 0, args[0])); + + let mut value: napi_value = ptr::null_mut(); + assert_napi_ok!(napi_get_element(env, obj, 0, &mut value)); + let mut value: napi_value = ptr::null_mut(); + assert_napi_ok!(napi_get_element(env, obj, 1, &mut value)); + + obj +} + +pub fn init(env: napi_env, exports: napi_value) { + let properties = &[ + napi_new_property!(env, "test_object_new", test_object_new), + napi_new_property!(env, "test_object_get", test_object_get), + ]; + + assert_napi_ok!(napi_define_properties( + env, + exports, + properties.len(), + properties.as_ptr() + )); +} |