-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: add coverage for napi_has_named_property #13178
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,30 @@ napi_value Echo(napi_env env, napi_callback_info info) { | |
return args[0]; | ||
} | ||
|
||
napi_value HasNamedProperty(napi_env env, napi_callback_info info) { | ||
size_t argc = 2; | ||
napi_value args[2]; | ||
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); | ||
|
||
NAPI_ASSERT(env, argc == 2, "Wrong number of arguments"); | ||
|
||
// Extract the name of the property to check | ||
char buffer[128]; | ||
size_t buffer_size = 128; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mean, this is obviously correct, but I get all tingly seeing this not just use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not an excuse but I copied from the existing code in another file, using sizeof does seem better so I'll move it over to that. |
||
size_t copied; | ||
buffer[buffer_size - 1] = 0; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok thanks. |
||
NAPI_CALL(env, | ||
napi_get_value_string_utf8(env, args[1], buffer, buffer_size - 1, &copied)); | ||
|
||
// do the check and create the boolean retutn value | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Typo: retutn |
||
bool value; | ||
napi_value result; | ||
NAPI_CALL(env, napi_has_named_property(env, args[0], buffer, &value)); | ||
NAPI_CALL(env, napi_get_boolean(env, value, &result)); | ||
|
||
return result; | ||
} | ||
|
||
void Init(napi_env env, napi_value exports, napi_value module, void* priv) { | ||
napi_value number; | ||
NAPI_CALL_RETURN_VOID(env, napi_create_number(env, value_, &number)); | ||
|
@@ -50,6 +74,7 @@ void Init(napi_env env, napi_value exports, napi_value module, void* priv) { | |
{ "readwriteAccessor2", 0, 0, GetValue, SetValue, 0, napi_writable, 0}, | ||
{ "readonlyAccessor1", 0, 0, GetValue, NULL, 0, napi_default, 0}, | ||
{ "readonlyAccessor2", 0, 0, GetValue, NULL, 0, napi_writable, 0}, | ||
{ "hasNamedProperty", 0, HasNamedProperty, 0, 0, 0, napi_default, 0 }, | ||
}; | ||
|
||
NAPI_CALL_RETURN_VOID(env, napi_define_properties( | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might be better to use
strictEqual()
here to make sure we're actually getting a Boolean back.