-
-
Notifications
You must be signed in to change notification settings - Fork 482
Add Object missing tests #923
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
Closed
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
65d259d
Test that Object::GetPropertyNames does not return properties whose k…
JoseExposito 47fcf4a
Test that Object::Get returns undefined if the key does not exist
JoseExposito cdd5c9f
Add test for Object::InstanceOf
JoseExposito 785c38f
Add test for Object::Object empty constructor
JoseExposito cc65d0a
Add test for Object::operator[]
JoseExposito 896a746
Fix linter issues
JoseExposito 4abe5b8
Use IsEmpty to test Object constructor
JoseExposito 8e2ee12
Test that Object::operator[] overrides object keys by index
JoseExposito 61a0c76
Test that it is possible to create a JavaScript object from another J…
JoseExposito ca18766
Merge branch 'main' into object-tests
JoseExposito File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#include "napi.h" | ||
|
||
using namespace Napi; | ||
|
||
Value SubscriptGetWithCStyleString(const CallbackInfo& info) { | ||
Object obj = info[0].As<Object>(); | ||
String jsKey = info[1].As<String>(); | ||
return obj[jsKey.Utf8Value().c_str()]; | ||
} | ||
|
||
Value SubscriptGetWithCppStyleString(const CallbackInfo& info) { | ||
Object obj = info[0].As<Object>(); | ||
String jsKey = info[1].As<String>(); | ||
return obj[jsKey.Utf8Value()]; | ||
} | ||
|
||
Value SubscriptGetAtIndex(const CallbackInfo& info) { | ||
Object obj = info[0].As<Object>(); | ||
uint32_t index = info[1].As<Napi::Number>(); | ||
return obj[index]; | ||
} | ||
|
||
void SubscriptSetWithCStyleString(const CallbackInfo& info) { | ||
Object obj = info[0].As<Object>(); | ||
String jsKey = info[1].As<String>(); | ||
Value value = info[2]; | ||
obj[jsKey.Utf8Value().c_str()] = value; | ||
} | ||
|
||
void SubscriptSetWithCppStyleString(const CallbackInfo& info) { | ||
Object obj = info[0].As<Object>(); | ||
String jsKey = info[1].As<String>(); | ||
Value value = info[2]; | ||
obj[jsKey.Utf8Value()] = value; | ||
} | ||
|
||
void SubscriptSetAtIndex(const CallbackInfo& info) { | ||
Object obj = info[0].As<Object>(); | ||
uint32_t index = info[1].As<Napi::Number>(); | ||
Value value = info[2]; | ||
obj[index] = value; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
'use strict'; | ||
|
||
const buildType = process.config.target_defaults.default_configuration; | ||
const assert = require('assert'); | ||
|
||
test(require(`../build/${buildType}/binding.node`)); | ||
test(require(`../build/${buildType}/binding_noexcept.node`)); | ||
|
||
function test(binding) { | ||
function testProperty(obj, key, value, nativeGetProperty, nativeSetProperty) { | ||
nativeSetProperty(obj, key, value); | ||
assert.strictEqual(nativeGetProperty(obj, key), value); | ||
} | ||
|
||
testProperty({}, 'key', 'value', binding.object.subscriptGetWithCStyleString, binding.object.subscriptSetWithCStyleString); | ||
testProperty({ key: 'override me' }, 'key', 'value', binding.object.subscriptGetWithCppStyleString, binding.object.subscriptSetWithCppStyleString); | ||
testProperty({}, 0, 'value', binding.object.subscriptGetAtIndex, binding.object.subscriptSetAtIndex); | ||
testProperty({ key: 'override me' }, 0, 'value', binding.object.subscriptGetAtIndex, binding.object.subscriptSetAtIndex); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.