Skip to content

Commit b7659db

Browse files
authored
Merge pull request #1130 from meixg/main
Add test case for Object Set using uint32 as key
2 parents 2c88a7e + a840d51 commit b7659db

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

test/object/object.cc

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Value GetPropertyWithCStyleString(const CallbackInfo& info);
1111
Value GetPropertyWithCppStyleString(const CallbackInfo& info);
1212

1313
// Native wrappers for testing Object::Set()
14+
Value SetPropertyWithUint32(const CallbackInfo& info);
1415
Value SetPropertyWithNapiValue(const CallbackInfo& info);
1516
Value SetPropertyWithNapiWrapperValue(const CallbackInfo& info);
1617
Value SetPropertyWithCStyleString(const CallbackInfo& info);
@@ -299,6 +300,7 @@ Object InitObject(Env env) {
299300
exports["getPropertyWithCStyleString"] = Function::New(env, GetPropertyWithCStyleString);
300301
exports["getPropertyWithCppStyleString"] = Function::New(env, GetPropertyWithCppStyleString);
301302

303+
exports["setPropertyWithUint32"] = Function::New(env, SetPropertyWithUint32);
302304
exports["setPropertyWithNapiValue"] = Function::New(env, SetPropertyWithNapiValue);
303305
exports["setPropertyWithNapiWrapperValue"] = Function::New(env, SetPropertyWithNapiWrapperValue);
304306
exports["setPropertyWithCStyleString"] = Function::New(env, SetPropertyWithCStyleString);

test/object/set_property.cc

+8
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ Value SetPropertyWithNapiWrapperValue(const CallbackInfo& info) {
1919
return Boolean::New(info.Env(), MaybeUnwrapOr(obj.Set(key, value), false));
2020
}
2121

22+
Value SetPropertyWithUint32(const CallbackInfo& info) {
23+
Object obj = info[0].As<Object>();
24+
Number key = info[1].As<Number>();
25+
Value value = info[2];
26+
return Boolean::New(info.Env(),
27+
MaybeUnwrapOr(obj.Set(key.Uint32Value(), value), false));
28+
}
29+
2230
Value SetPropertyWithCStyleString(const CallbackInfo& info) {
2331
Object obj = info[0].As<Object>();
2432
String jsKey = info[1].As<String>();

test/object/set_property.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ const assert = require('assert');
44

55
module.exports = require('../common').runTest(test);
66

7-
function test(binding) {
8-
function testSetProperty(nativeSetProperty) {
7+
function test (binding) {
8+
function testSetProperty (nativeSetProperty, key = 'test') {
99
const obj = {};
10-
assert.strictEqual(nativeSetProperty(obj, 'test', 1), true);
11-
assert.strictEqual(obj.test, 1);
10+
assert.strictEqual(nativeSetProperty(obj, key, 1), true);
11+
assert.strictEqual(obj[key], 1);
1212
}
1313

14-
function testShouldThrowErrorIfKeyIsInvalid(nativeSetProperty) {
14+
function testShouldThrowErrorIfKeyIsInvalid (nativeSetProperty) {
1515
assert.throws(() => {
1616
nativeSetProperty(undefined, 'test', 1);
1717
}, /Cannot convert undefined or null to object/);
@@ -21,6 +21,7 @@ function test(binding) {
2121
testSetProperty(binding.object.setPropertyWithNapiWrapperValue);
2222
testSetProperty(binding.object.setPropertyWithCStyleString);
2323
testSetProperty(binding.object.setPropertyWithCppStyleString);
24+
testSetProperty(binding.object.setPropertyWithUint32, 12);
2425

2526
testShouldThrowErrorIfKeyIsInvalid(binding.object.setPropertyWithNapiValue);
2627
testShouldThrowErrorIfKeyIsInvalid(binding.object.setPropertyWithNapiWrapperValue);

0 commit comments

Comments
 (0)