summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/replaceAll/searchValue-get-flags-abrupt.js
blob: bf9bb3edc4515afd02e9d57acfc3ca4130dc7cc0 (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
79
80
81
82
83
84
85
86
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-string.prototype.replaceall
description: >
  Return Abrupt completion from Get(searchValue, "flags")
info: |
  String.prototype.replaceAll ( searchValue, replaceValue )

  1. Let O be RequireObjectCoercible(this value).
  2. If searchValue is neither undefined nor null, then
    a. Let isRegExp be ? IsRegExp(searchString).
    b. If isRegExp is true, then
      i. Let flags be ? Get(searchValue, "flags").
      ii. Perform ? RequireObjectCoercible(flags).
      iii. If ? ToString(flags) does not contain "g", throw a TypeError exception.
  ...
features: [String.prototype.replaceAll, Symbol.match]
---*/

var searchValue = {
  [Symbol.match]: true,
  get flags() {
    throw new Test262Error;
  }
};

var poisoned = 0;
var poison = {
  toString() {
    poisoned += 1;
    throw 'Should not call toString on this/replaceValue';
  },
};

assert.throws(Test262Error, function() {
  ''.replaceAll.call(poison, searchValue, poison);
}, 'from custom searchValue object');

var re1 = /./;
Object.defineProperty(re1, 'flags', {
  get() { throw new Test262Error(); }
});

assert.throws(Test262Error, function() {
  ''.replaceAll.call(poison, re1, poison);
}, 'from RE instance, using default Symbol.match check');

var called = 0;
var re2 = /./;
Object.defineProperty(re2, Symbol.match, {
  get() {
    called += 1;
    return true;
  }
});
Object.defineProperty(re2, 'flags', {
  get() { throw new Test262Error(); }
});

assert.throws(Test262Error, function() {
  ''.replaceAll.call(poison, re2, poison);
}, 'from RE instance, using Symbol.match check (true)');
assert.sameValue(called, 1);

called = 0;
var re3 = /./;
Object.defineProperty(re3, Symbol.match, {
  get() {
    called += 1;
    return 1;
  }
});
Object.defineProperty(re3, 'flags', {
  get() { throw new Test262Error(); }
});

assert.throws(Test262Error, function() {
  ''.replaceAll.call(poison, re3, poison);
}, 'from RE instance, using Symbol.match check (1), uses Internal for IsRegExp');
assert.sameValue(called, 1);

assert.sameValue(poisoned, 0);

reportCompare(0, 0);