summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/toString/non-generic-realm.js
blob: 4f27e3528ef0a6a0221062427996de110502b8eb (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
// Copyright (C) 2019 Aleksey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-string.prototype.tostring
description: >
  Throws a TypeError if called on neither String primitive nor String object
  (honoring the Realm of the current execution context)
info: |
  String.prototype.toString ( )

  1. Return ? thisStringValue(this value).

  thisStringValue ( value )

  [...]
  3. Throw a TypeError exception.
features: [cross-realm]
---*/

var other = $262.createRealm().global;
var otherToString = other.String.prototype.toString;

assert.throws(other.TypeError, function() {
  otherToString.call(true);
});

assert.throws(other.TypeError, function() {
  otherToString.call(0);
});

assert.throws(other.TypeError, function() {
  otherToString.call(null);
});

assert.throws(other.TypeError, function() {
  otherToString.call();
});

assert.throws(other.TypeError, function() {
  otherToString.call(Symbol('desc'));
});

assert.throws(other.TypeError, function() {
  otherToString.call({
    valueOf: function() {
      return 'str';
    },
  });
});

assert.throws(other.TypeError, function() {
  otherToString.call([1]);
});

assert.throws(other.TypeError, function() {
  'str'.concat({toString: otherToString});
});

reportCompare(0, 0);