mirror of https://github.com/lukechilds/node.git
Browse Source
It takes time to build each of the addons used to test n-api. Consolidate a few of the smaller ones to save build time. Get rid of one more small addon. PR-URL: https://github.com/nodejs/node/pull/13380 Reviewed-By: Jason Ginchereau <jasongin@microsoft.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>v6
Michael Dawson
8 years ago
4 changed files with 34 additions and 54 deletions
@ -1,7 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
const common = require('../../common'); |
|||
const addon = require(`./build/${common.buildType}/test_napi_status`); |
|||
const addon = require(`./build/${common.buildType}/test_general`); |
|||
const assert = require('assert'); |
|||
|
|||
addon.createNapiError(); |
@ -1,8 +0,0 @@ |
|||
{ |
|||
"targets": [ |
|||
{ |
|||
"target_name": "test_napi_status", |
|||
"sources": [ "test_napi_status.cc" ] |
|||
} |
|||
] |
|||
} |
@ -1,45 +0,0 @@ |
|||
#include <node_api.h> |
|||
#include "../common.h" |
|||
|
|||
napi_value createNapiError(napi_env env, napi_callback_info info) { |
|||
napi_value value; |
|||
NAPI_CALL(env, napi_create_string_utf8(env, "xyz", 3, &value)); |
|||
|
|||
double double_value; |
|||
napi_status status = napi_get_value_double(env, value, &double_value); |
|||
|
|||
NAPI_ASSERT(env, status != napi_ok, "Failed to produce error condition"); |
|||
|
|||
const napi_extended_error_info *error_info = 0; |
|||
NAPI_CALL(env, napi_get_last_error_info(env, &error_info)); |
|||
|
|||
NAPI_ASSERT(env, error_info->error_code == status, |
|||
"Last error info code should match last status"); |
|||
NAPI_ASSERT(env, error_info->error_message, |
|||
"Last error info message should not be null"); |
|||
|
|||
return nullptr; |
|||
} |
|||
|
|||
napi_value testNapiErrorCleanup(napi_env env, napi_callback_info info) { |
|||
const napi_extended_error_info *error_info = 0; |
|||
NAPI_CALL(env, napi_get_last_error_info(env, &error_info)); |
|||
|
|||
napi_value result; |
|||
bool is_ok = error_info->error_code == napi_ok; |
|||
NAPI_CALL(env, napi_get_boolean(env, is_ok, &result)); |
|||
|
|||
return result; |
|||
} |
|||
|
|||
void Init(napi_env env, napi_value exports, napi_value module, void* priv) { |
|||
napi_property_descriptor descriptors[] = { |
|||
DECLARE_NAPI_PROPERTY("createNapiError", createNapiError), |
|||
DECLARE_NAPI_PROPERTY("testNapiErrorCleanup", testNapiErrorCleanup), |
|||
}; |
|||
|
|||
NAPI_CALL_RETURN_VOID(env, napi_define_properties( |
|||
env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors)); |
|||
} |
|||
|
|||
NAPI_MODULE(addon, Init) |
Loading…
Reference in new issue