2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-10-05 10:06:44 -04:00
|
|
|
|
2023-01-11 09:47:26 -05:00
|
|
|
use crate::assert_napi_ok;
|
|
|
|
use crate::napi_get_callback_info;
|
|
|
|
use crate::napi_new_property;
|
2022-10-05 10:06:44 -04:00
|
|
|
use napi_sys::*;
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
extern "C" fn test_coerce_bool(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (args, argc, _) = napi_get_callback_info!(env, info, 1);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 1);
|
|
|
|
|
|
|
|
let mut value: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_coerce_to_bool(env, args[0], &mut value));
|
2022-10-05 10:06:44 -04:00
|
|
|
value
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn test_coerce_number(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (args, argc, _) = napi_get_callback_info!(env, info, 1);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 1);
|
|
|
|
|
|
|
|
let mut value: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_coerce_to_number(env, args[0], &mut value));
|
2022-10-05 10:06:44 -04:00
|
|
|
value
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn test_coerce_object(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (args, argc, _) = napi_get_callback_info!(env, info, 1);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 1);
|
|
|
|
|
|
|
|
let mut value: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_coerce_to_object(env, args[0], &mut value));
|
2022-10-05 10:06:44 -04:00
|
|
|
value
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn test_coerce_string(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (args, argc, _) = napi_get_callback_info!(env, info, 1);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 1);
|
|
|
|
|
|
|
|
let mut value: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_coerce_to_string(env, args[0], &mut value));
|
2022-10-05 10:06:44 -04:00
|
|
|
value
|
|
|
|
}
|
|
|
|
pub fn init(env: napi_env, exports: napi_value) {
|
|
|
|
let properties = &[
|
2023-01-11 09:47:26 -05:00
|
|
|
napi_new_property!(env, "test_coerce_bool", test_coerce_bool),
|
|
|
|
napi_new_property!(env, "test_coerce_number", test_coerce_number),
|
|
|
|
napi_new_property!(env, "test_coerce_object", test_coerce_object),
|
|
|
|
napi_new_property!(env, "test_coerce_string", test_coerce_string),
|
2022-10-05 10:06:44 -04:00
|
|
|
];
|
|
|
|
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_define_properties(
|
|
|
|
env,
|
|
|
|
exports,
|
|
|
|
properties.len(),
|
|
|
|
properties.as_ptr()
|
|
|
|
));
|
2022-10-05 10:06:44 -04:00
|
|
|
}
|