mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
n-api: refactoring napi_create_function testing
This is a refactoring of https://github.com/nodejs/node/pull/26998 following https://github.com/nodejs/node/pull/28505. The functions `add_last_status()` and `add_returned_status()` are now reused, see also https://github.com/nodejs/node/pull/28848. PR-URL: https://github.com/nodejs/node/pull/28894 Reviewed-By: Gabriel Schulhof <gabriel.schulhof@intel.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
parent
8492acfd57
commit
1ee47d550c
3 changed files with 44 additions and 71 deletions
|
@ -3,79 +3,51 @@
|
|||
|
||||
static napi_value TestCreateFunctionParameters(napi_env env,
|
||||
napi_callback_info info) {
|
||||
napi_status ret[4];
|
||||
napi_value result, return_value, prop_value;
|
||||
|
||||
|
||||
ret[0] = napi_create_function(NULL,
|
||||
"TrackedFunction",
|
||||
NAPI_AUTO_LENGTH,
|
||||
TestCreateFunctionParameters,
|
||||
NULL,
|
||||
&result);
|
||||
|
||||
ret[1] = napi_create_function(env,
|
||||
NULL,
|
||||
NAPI_AUTO_LENGTH,
|
||||
TestCreateFunctionParameters,
|
||||
NULL,
|
||||
&result);
|
||||
|
||||
ret[2] = napi_create_function(env,
|
||||
"TrackedFunction",
|
||||
NAPI_AUTO_LENGTH,
|
||||
NULL,
|
||||
NULL,
|
||||
&result);
|
||||
|
||||
ret[3] = napi_create_function(env,
|
||||
"TrackedFunction",
|
||||
NAPI_AUTO_LENGTH,
|
||||
TestCreateFunctionParameters,
|
||||
NULL,
|
||||
NULL);
|
||||
napi_status status;
|
||||
napi_value result, return_value;
|
||||
|
||||
NAPI_CALL(env, napi_create_object(env, &return_value));
|
||||
|
||||
NAPI_CALL(env, napi_create_string_utf8(env,
|
||||
(ret[0] == napi_invalid_arg ?
|
||||
"pass" : "fail"),
|
||||
NAPI_AUTO_LENGTH,
|
||||
&prop_value));
|
||||
NAPI_CALL(env, napi_set_named_property(env,
|
||||
return_value,
|
||||
"envIsNull",
|
||||
prop_value));
|
||||
status = napi_create_function(NULL,
|
||||
"TrackedFunction",
|
||||
NAPI_AUTO_LENGTH,
|
||||
TestCreateFunctionParameters,
|
||||
NULL,
|
||||
&result);
|
||||
|
||||
NAPI_CALL(env, napi_create_string_utf8(env,
|
||||
(ret[1] == napi_ok ?
|
||||
"pass" : "fail"),
|
||||
NAPI_AUTO_LENGTH,
|
||||
&prop_value));
|
||||
NAPI_CALL(env, napi_set_named_property(env,
|
||||
return_value,
|
||||
"nameIsNull",
|
||||
prop_value));
|
||||
add_returned_status(env,
|
||||
"envIsNull",
|
||||
return_value,
|
||||
"Invalid argument",
|
||||
napi_invalid_arg,
|
||||
status);
|
||||
|
||||
NAPI_CALL(env, napi_create_string_utf8(env,
|
||||
(ret[2] == napi_invalid_arg ?
|
||||
"pass" : "fail"),
|
||||
NAPI_AUTO_LENGTH,
|
||||
&prop_value));
|
||||
NAPI_CALL(env, napi_set_named_property(env,
|
||||
return_value,
|
||||
"cbIsNull",
|
||||
prop_value));
|
||||
napi_create_function(env,
|
||||
NULL,
|
||||
NAPI_AUTO_LENGTH,
|
||||
TestCreateFunctionParameters,
|
||||
NULL,
|
||||
&result);
|
||||
|
||||
NAPI_CALL(env, napi_create_string_utf8(env,
|
||||
(ret[3] == napi_invalid_arg ?
|
||||
"pass" : "fail"),
|
||||
NAPI_AUTO_LENGTH,
|
||||
&prop_value));
|
||||
NAPI_CALL(env, napi_set_named_property(env,
|
||||
return_value,
|
||||
"resultIsNull",
|
||||
prop_value));
|
||||
add_last_status(env, "nameIsNull", return_value);
|
||||
|
||||
napi_create_function(env,
|
||||
"TrackedFunction",
|
||||
NAPI_AUTO_LENGTH,
|
||||
NULL,
|
||||
NULL,
|
||||
&result);
|
||||
|
||||
add_last_status(env, "cbIsNull", return_value);
|
||||
|
||||
napi_create_function(env,
|
||||
"TrackedFunction",
|
||||
NAPI_AUTO_LENGTH,
|
||||
TestCreateFunctionParameters,
|
||||
NULL,
|
||||
NULL);
|
||||
|
||||
add_last_status(env, "resultIsNull", return_value);
|
||||
|
||||
return return_value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue