summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/string-matchAll.js
blob: 39c2d0dfe3cfd2e321fc7fe1676fa573d54638fb (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
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

(function TestReceiverNonString() {
  const iter = 'a'.matchAll(/./);
  assertThrows(
    () => iter.next.call(0),
    TypeError
  );
})();


(function TestAncestry() {
  const iterProto = Object.getPrototypeOf('a'.matchAll(/./));
  const arrProto = Object.getPrototypeOf([][Symbol.iterator]());

  assertSame(Object.getPrototypeOf(iterProto), Object.getPrototypeOf(arrProto));
})();


function TestNoMatch(string, regex_or_string) {
  const next_result = string.matchAll(regex_or_string).next();
  assertSame(undefined, next_result.value);
  assertTrue(next_result.done);
}
TestNoMatch('a', /b/);
TestNoMatch('a', /b/g);
TestNoMatch('a', 'b');


(function NonGlobalRegex() {
  const iter = 'ab'.matchAll(/./);
  let next_result = iter.next();
  assertEquals(['a'], next_result.value);
  assertFalse(next_result.done);

  next_result = iter.next();
  assertEquals(undefined, next_result.value);
  assertTrue(next_result.done);
})();


function TestGlobalRegex(regex_or_string) {
  const iter = 'ab'.matchAll(/./g);
  let next_result = iter.next();
  assertEquals(['a'], next_result.value);
  assertFalse(next_result.done);

  next_result = iter.next();
  assertEquals(['b'], next_result.value);
  assertFalse(next_result.done);

  next_result = iter.next();
  assertSame(undefined, next_result.value);
  assertTrue(next_result.done);
}
TestGlobalRegex(/./g);
TestGlobalRegex('.');


function TestEmptyGlobalRegExp(regex_or_string) {
  const iter = 'd'.matchAll(regex_or_string);
  let next_result = iter.next();
  assertEquals([''], next_result.value);
  assertFalse(next_result.done);

  next_result = iter.next();
  assertEquals([''], next_result.value);
  assertFalse(next_result.done);

  next_result = iter.next();
  assertSame(undefined, next_result.value);
  assertTrue(next_result.done);
}
TestEmptyGlobalRegExp(undefined);
TestEmptyGlobalRegExp(/(?:)/g);
TestEmptyGlobalRegExp('');


(function TestGlobalRegExpLastIndex() {
  const regex = /./g;
  const string = 'abc';
  regex.exec(string);
  assertSame(1, regex.lastIndex);

  const iter = string.matchAll(regex);

  // Verify an internal RegExp is created and mutations to the provided RegExp
  // are not abservered.
  regex.exec(string);
  assertSame(2, regex.lastIndex);

  let next_result = iter.next();
  assertEquals(['b'], next_result.value);
  assertFalse(next_result.done);
  assertSame(2, regex.lastIndex);
})();