test: added test for indexed properties

Currently, indexed properties are correctly copied
onto the sandbox by CopyProperties().
This will break when CopyProperties() is removed
after adjusting NamedPropertyHandlerConfiguration
config() to use property callbacks from the new
V8 API. To fix it, we will set a config for indexed
properties.

This test is a preparation step for the patch
that removes CopyProperties().

PR-URL: https://github.com/nodejs/node/pull/11769
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
This commit is contained in:
AnnaMag 2017-03-09 14:00:34 +00:00 коммит произвёл James M Snell
Родитель 71097744b2
Коммит 1a210c4ee4
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,17 @@
'use strict';
require('../common');
const assert = require('assert');
const vm = require('vm');
const code = `Object.defineProperty(this, 99, {
value: 20,
enumerable: true
});`;
const sandbox = {};
const ctx = vm.createContext(sandbox);
vm.runInContext(code, ctx);
assert.strictEqual(sandbox[99], 20);