mirror of
https://github.com/nodejs/node.git
synced 2025-05-04 04:43:16 +00:00

Partition test/addons-napi into test/js-native-api and test/node-api to isolate the Node.js-agnostic portion of the N-API tests from the Node.js-specific portion. PR-URL: https://github.com/nodejs/node/pull/24557 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
37 lines
1.4 KiB
C
37 lines
1.4 KiB
C
#define NAPI_EXPERIMENTAL
|
|
#include <node_api.h>
|
|
#include <stdlib.h>
|
|
#include "../../js-native-api/common.h"
|
|
|
|
static napi_value testGetNodeVersion(napi_env env, napi_callback_info info) {
|
|
const napi_node_version* node_version;
|
|
napi_value result, major, minor, patch, release;
|
|
NAPI_CALL(env, napi_get_node_version(env, &node_version));
|
|
NAPI_CALL(env, napi_create_uint32(env, node_version->major, &major));
|
|
NAPI_CALL(env, napi_create_uint32(env, node_version->minor, &minor));
|
|
NAPI_CALL(env, napi_create_uint32(env, node_version->patch, &patch));
|
|
NAPI_CALL(env, napi_create_string_utf8(env,
|
|
node_version->release,
|
|
NAPI_AUTO_LENGTH,
|
|
&release));
|
|
NAPI_CALL(env, napi_create_array_with_length(env, 4, &result));
|
|
NAPI_CALL(env, napi_set_element(env, result, 0, major));
|
|
NAPI_CALL(env, napi_set_element(env, result, 1, minor));
|
|
NAPI_CALL(env, napi_set_element(env, result, 2, patch));
|
|
NAPI_CALL(env, napi_set_element(env, result, 3, release));
|
|
return result;
|
|
}
|
|
|
|
static napi_value Init(napi_env env, napi_value exports) {
|
|
napi_property_descriptor descriptors[] = {
|
|
DECLARE_NAPI_PROPERTY("testGetNodeVersion", testGetNodeVersion),
|
|
};
|
|
|
|
NAPI_CALL(env, napi_define_properties(
|
|
env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors));
|
|
|
|
return exports;
|
|
}
|
|
|
|
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
|