summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Proxy/setPrototypeOf/not-extensible-target-same-target-prototype.js
blob: 8910a2ddcdfd4807e46eb1359966a3910c4ccef3 (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
// Copyright (C) 2015 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: >
  Handler can only return true for non-extensible targets if the given prototype
  is the same as target's prototype
info: |
  [[SetPrototypeOf]] (V)

  12. Let targetProto be ? target.[[GetPrototypeOf]]().
  13. If SameValue(V, targetProto) is false, throw a TypeError exception.
  14. Return true.
features: [Proxy, Reflect, Reflect.setPrototypeOf]
---*/

var proto = {};
var target = Object.setPrototypeOf({}, proto);

Object.preventExtensions(target);

var proxy;

proxy = new Proxy(target, {
  setPrototypeOf: function() {
    return true;
  }
});

assert.sameValue(
  Reflect.setPrototypeOf(proxy, proto),
  true,
  "prototype arg is the same in target"
);

var outro = {};
proxy = new Proxy(outro, {
  setPrototypeOf: function(t, p) {
    Object.setPrototypeOf(t, p);
    Object.preventExtensions(t);
    return true;
  }
});

assert.sameValue(
  Reflect.setPrototypeOf(proxy, proto),
  true,
  "prototype is set to target inside handler trap"
);
assert.sameValue(
  Object.getPrototypeOf(outro),
  proto,
  "target has the custom set prototype"
);

reportCompare(0, 0);