Add [[Call]] tests

This commit is contained in:
Alexey Shvayka 2020-03-13 15:03:22 +02:00 committed by Rick Waldron
parent 5c3ea18763
commit f72db7e12b
3 changed files with 90 additions and 0 deletions

View File

@ -0,0 +1,26 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist
description: >
If "apply" trap is null or undefined, [[Call]] is properly
forwarded to [[ProxyTarget]] (which is also a Proxy object).
info: |
[[Call]] ( thisArgument, argumentsList )
[...]
4. Let target be O.[[ProxyTarget]].
5. Let trap be ? GetMethod(handler, "apply").
6. If trap is undefined, then
a. Return ? Call(target, thisArgument, argumentsList).
features: [Proxy, Reflect]
---*/
var hasOwn = Object.prototype.hasOwnProperty;
var hasOwnTarget = new Proxy(hasOwn, {});
var hasOwnProxy = new Proxy(hasOwnTarget, {});
var obj = {foo: 1};
assert(hasOwnProxy.call(obj, "foo"));
assert(!Reflect.apply(hasOwnProxy, obj, ["bar"]));

View File

@ -0,0 +1,31 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist
description: >
If "apply" trap is null or undefined, [[Call]] is properly
forwarded to [[ProxyTarget]] (which is also a Proxy object).
info: |
[[Call]] ( thisArgument, argumentsList )
[...]
4. Let target be O.[[ProxyTarget]].
5. Let trap be ? GetMethod(handler, "apply").
6. If trap is undefined, then
a. Return ? Call(target, thisArgument, argumentsList).
features: [Proxy]
---*/
var sum = function(a, b) {
return this.foo + a + b;
};
var sumBound = sum.bind({foo: 10}, 1);
var sumTarget = new Proxy(sumBound, {});
var sumProxy = new Proxy(sumTarget, {
apply: null,
});
assert.sameValue(sumProxy(2), 13);
assert.sameValue(sumProxy.call({foo: 20}, 3), 14);

View File

@ -0,0 +1,33 @@
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-proxy-object-internal-methods-and-internal-slots-call-thisargument-argumentslist
description: >
If "apply" trap is null or undefined, [[Call]] is properly
forwarded to [[ProxyTarget]] (which is also a Proxy object).
info: |
[[Call]] ( thisArgument, argumentsList )
[...]
4. Let target be O.[[ProxyTarget]].
5. Let trap be ? GetMethod(handler, "apply").
6. If trap is undefined, then
a. Return ? Call(target, thisArgument, argumentsList).
features: [generators, Proxy, Reflect]
includes: [compareArray.js]
---*/
var sum = function* (arg) {
yield this.foo;
yield arg;
};
var sumTarget = new Proxy(sum, {});
var sumProxy = new Proxy(sumTarget, {
apply: undefined,
});
var gen = Reflect.apply(sumProxy, {foo: 10}, [1]);
assert.compareArray(Array.from(gen), [10, 1]);