summaryrefslogtreecommitdiff
path: root/test/built-ins/Proxy/setPrototypeOf/toboolean-trap-result-true-target-is-extensible.js
blob: 5353aaf006752b7f94087d0443ba26cc6b6a6534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright (C) 2016 the V8 project authors. 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-setprototypeof-v
description: >
  Return true if ToBoolean(trap result) is true, and target.[[IsExtensible]] is
  true
info: |
  [[SetPrototypeOf]] (V)

  8. Let booleanTrapResult be ToBoolean(? Call(trap, handler, « target, V »)).
  9. If booleanTrapResult is false, return false.
  10. Let extensibleTarget be ? IsExtensible(target).
  11. If extensibleTarget is true, return true.
features: [Reflect.setPrototypeOf, Symbol]
---*/

var called;
var target = new Proxy({}, {
  isExtensible: function() {
    called += 1;
    return true;
  },
  getPrototypeOf: function() {
    throw new Test262Error("target.[[GetPrototypeOf]] is not called");
  }
});

var p = new Proxy(target, {
  setPrototypeOf: function(t, v) {
    return v.attr;
  }
});

var result;

called = 0;
result = Reflect.setPrototypeOf(p, {
  attr: true
});
assert.sameValue(result, true, "true");
assert.sameValue(called, 1, "true - isExtensible is called");

called = 0;
result = Reflect.setPrototypeOf(p, {
  attr: "false"
});
assert.sameValue(result, true, "string");
assert.sameValue(called, 1, "string - isExtensible is called");

called = 0;
result = Reflect.setPrototypeOf(p, {
  attr: 42
});
assert.sameValue(result, true, "42");
assert.sameValue(called, 1, "number - isExtensible is called");

called = 0;
result = Reflect.setPrototypeOf(p, {
  attr: p
});
assert.sameValue(result, true, "p");
assert.sameValue(called, 1, "object - isExtensible is called");

called = 0;
result = Reflect.setPrototypeOf(p, {
  attr: []
});
assert.sameValue(result, true, "[]");
assert.sameValue(called, 1, "[] - isExtensible is called");

called = 0;
result = Reflect.setPrototypeOf(p, {
  attr: Symbol(1)
});
assert.sameValue(result, true, "symbol");
assert.sameValue(called, 1, "symbol - isExtensible is called");