-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatternIteratorTest.phpt
More file actions
598 lines (471 loc) · 16.7 KB
/
PatternIteratorTest.phpt
File metadata and controls
598 lines (471 loc) · 16.7 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
<?php declare(strict_types = 1);
/**
* @testCase
*/
namespace NextrasTests\MultiQueryParser;
use ArrayIterator;
use Iterator;
use Nextras\MultiQueryParser\Exception\RuntimeException;
use Nextras\MultiQueryParser\PatternIterator;
use Tester\Assert;
use Tester\TestCase;
require_once __DIR__ . '/../bootstrap.php';
class PatternIteratorTest extends TestCase
{
/**
* @return Iterator<string>
*/
private function stream(string ...$chunks): Iterator
{
return new ArrayIterator($chunks);
}
/**
* @return Iterator<string>
*/
private function generatorStream(string ...$chunks): Iterator
{
foreach ($chunks as $chunk) {
yield $chunk;
}
}
/**
* @return list<array<int|string, string>>
*/
private function collect(PatternIterator $iter): array
{
$results = [];
foreach ($iter as $match) {
$results[] = $match;
}
return $results;
}
// =====================================================================
// Empty / trivial inputs
// =====================================================================
public function testEmptyStream(): void
{
$iter = new PatternIterator($this->stream(), '~\w+~A');
Assert::same([], $this->collect($iter));
}
public function testSingleEmptyChunk(): void
{
$iter = new PatternIterator($this->stream(''), '~\w+~A');
Assert::same([], $this->collect($iter));
}
public function testMultipleEmptyChunks(): void
{
$iter = new PatternIterator($this->stream('', '', ''), '~\w+~A');
Assert::same([], $this->collect($iter));
}
public function testEmptyChunkBeforeData(): void
{
$iter = new PatternIterator($this->stream('', 'ab;cd;'), '~[^;]+;~A');
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('ab;', $results[0][0]);
Assert::same('cd;', $results[1][0]);
}
public function testEmptyChunkBeforeDataWithZeroLengthPattern(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('', 'a;b;'), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('a', $results[0]['query']);
Assert::same('b', $results[1]['query']);
}
public function testMultipleEmptyChunksBeforeData(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('', '', '', 'a;b;'), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('a', $results[0]['query']);
Assert::same('b', $results[1]['query']);
}
public function testEmptyChunksBetweenData(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('a;', '', '', 'b;'), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('a', $results[0]['query']);
Assert::same('b', $results[1]['query']);
}
public function testEmptyChunkAfterData(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('a;b;', ''), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('a', $results[0]['query']);
Assert::same('b', $results[1]['query']);
}
// =====================================================================
// Single chunk – basic matching
// =====================================================================
public function testSingleMatchInSingleChunk(): void
{
$iter = new PatternIterator($this->stream('hello'), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('hello', $results[0][0]);
}
public function testMultipleMatchesInSingleChunk(): void
{
$iter = new PatternIterator($this->stream('aa;bb;cc'), '~[^;]+;?~A');
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same('aa;', $results[0][0]);
Assert::same('bb;', $results[1][0]);
Assert::same('cc', $results[2][0]);
}
public function testSingleChunkWithTrailingDelimiter(): void
{
$iter = new PatternIterator($this->stream('aa;bb;'), '~[^;]+;~A');
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('aa;', $results[0][0]);
Assert::same('bb;', $results[1][0]);
}
// =====================================================================
// Single chunk – capture groups
// =====================================================================
public function testNamedCaptureGroups(): void
{
$iter = new PatternIterator(
$this->stream('key=val'),
'~(?<key>\w+)=(?<value>\w+)~A',
);
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('key', $results[0]['key']);
Assert::same('val', $results[0]['value']);
}
public function testNumericCaptureGroups(): void
{
$iter = new PatternIterator(
$this->stream('2025-01-15'),
'~(\d{4})-(\d{2})-(\d{2})~A',
);
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('2025-01-15', $results[0][0]);
Assert::same('2025', $results[0][1]);
Assert::same('01', $results[0][2]);
Assert::same('15', $results[0][3]);
}
// =====================================================================
// Multi-chunk – match spanning chunks
// =====================================================================
public function testMatchSpanningTwoChunks(): void
{
$iter = new PatternIterator($this->stream('hel', 'lo'), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('hello', $results[0][0]);
}
public function testMatchSpanningManyChunks(): void
{
$iter = new PatternIterator($this->stream('h', 'e', 'l', 'l', 'o'), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('hello', $results[0][0]);
}
public function testMultipleMatchesAcrossChunks(): void
{
// "aa b" + "b cc" → should produce: "aa ", "bb ", "cc"
$iter = new PatternIterator($this->stream('aa b', 'b cc'), '~\w+\s*~A');
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same('aa ', $results[0][0]);
Assert::same('bb ', $results[1][0]);
Assert::same('cc', $results[2][0]);
}
public function testDelimiterSplitAcrossChunks(): void
{
// "SELECT 1" + ";" + " SELECT 2;"
$iter = new PatternIterator(
$this->stream('SELECT 1', ';', ' SELECT 2;'),
'~\s*([^;]+);~A',
);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('SELECT 1', $results[0][1]);
Assert::same('SELECT 2', $results[1][1]);
}
// =====================================================================
// Boundary safety – match at end of chunk
// =====================================================================
public function testMatchAtEndOfChunkWaitsForMoreData(): void
{
// "abc" + "def": in the first chunk, "abc" matches \w+ but reaches end;
// PatternIterator should wait for more data and yield "abcdef".
$iter = new PatternIterator($this->stream('abc', 'def'), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('abcdef', $results[0][0]);
}
public function testMatchAtEndOfChunkWithEmptyFollowingChunk(): void
{
$iter = new PatternIterator($this->stream('abc', ''), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('abc', $results[0][0]);
}
public function testMatchInMiddleOfChunkFollowedByBoundaryMatch(): void
{
// "aa;bb" + "cc" → first match "aa;" does not reach end, yields.
// Then "bb" reaches end, waits for "cc", then yields "bbcc".
$iter = new PatternIterator($this->stream('aa;bb', 'cc'), '~[^;]+;?~A');
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('aa;', $results[0][0]);
Assert::same('bbcc', $results[1][0]);
}
// =====================================================================
// Generator-based stream (vs ArrayIterator)
// =====================================================================
public function testGeneratorStreamSingleChunk(): void
{
$iter = new PatternIterator($this->generatorStream('hello'), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('hello', $results[0][0]);
}
public function testGeneratorStreamMultiChunk(): void
{
$iter = new PatternIterator($this->generatorStream('ab', 'cd'), '~\w+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('abcd', $results[0][0]);
}
public function testGeneratorStreamMultipleMatches(): void
{
$iter = new PatternIterator(
$this->generatorStream('aa;bb;cc'),
'~[^;]+;?~A',
);
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same('aa;', $results[0][0]);
Assert::same('bb;', $results[1][0]);
Assert::same('cc', $results[2][0]);
}
// =====================================================================
// Very small chunks (single-byte)
// =====================================================================
public function testSingleByteChunks(): void
{
$input = 'ab;cd';
$chunks = str_split($input, 1);
$iter = new PatternIterator(new ArrayIterator($chunks), '~[^;]+;?~A');
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('ab;', $results[0][0]);
Assert::same('cd', $results[1][0]);
}
public function testSingleByteChunksLongerInput(): void
{
$input = 'SELECT 1;SELECT 2;';
$chunks = str_split($input, 1);
$iter = new PatternIterator(new ArrayIterator($chunks), '~[^;]+;~A');
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('SELECT 1;', $results[0][0]);
Assert::same('SELECT 2;', $results[1][0]);
}
// =====================================================================
// Pattern mutation via setPattern()
// =====================================================================
public function testGetPattern(): void
{
$iter = new PatternIterator($this->stream(), '~test~A');
Assert::same('~test~A', $iter->getPattern());
}
public function testSetPatternDuringIteration(): void
{
// Start with pattern matching "word;" then switch to "word//"
$iter = new PatternIterator(
$this->stream('aa;bb//cc//'),
'~[^;]+;~A',
);
$results = [];
foreach ($iter as $match) {
$results[] = $match[0];
if (count($results) === 1) {
$iter->setPattern('~[^/]+//~A');
}
}
Assert::same(['aa;', 'bb//', 'cc//'], $results);
}
public function testSetPatternChangesGetPattern(): void
{
$iter = new PatternIterator($this->stream(), '~old~A');
$iter->setPattern('~new~A');
Assert::same('~new~A', $iter->getPattern());
}
// =====================================================================
// Error handling – unmatched content
// =====================================================================
public function testThrowsOnUnmatchedTrailingContent(): void
{
// Pattern matches digits only but input has trailing letters
$iter = new PatternIterator($this->stream('123abc'), '~\d+~A');
Assert::exception(function () use ($iter) {
$this->collect($iter);
}, RuntimeException::class);
}
public function testThrowsOnCompletelyUnmatchableContent(): void
{
$iter = new PatternIterator($this->stream('!!!'), '~\w+~A');
Assert::exception(function () use ($iter) {
$this->collect($iter);
}, RuntimeException::class);
}
public function testThrowsOnUnmatchedContentAcrossChunks(): void
{
$iter = new PatternIterator($this->stream('aa;', '???'), '~[^;]+;~A');
Assert::exception(function () use ($iter) {
$this->collect($iter);
}, RuntimeException::class);
}
// =====================================================================
// SQL-like patterns (semicolon-delimited queries)
// =====================================================================
public function testSqlSemicolonDelimitedQueries(): void
{
$sql = "SELECT 1;\nSELECT 2;\nSELECT 3;";
$pattern = '~\s*(?<query>[^;]+);~As';
$iter = new PatternIterator($this->stream($sql), $pattern);
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same('SELECT 1', $results[0]['query']);
Assert::same('SELECT 2', $results[1]['query']);
Assert::same('SELECT 3', $results[2]['query']);
}
public function testSqlQueriesAcrossSmallChunks(): void
{
$sql = "SELECT 1;\nSELECT 2;";
$chunks = str_split($sql, 3);
$pattern = '~\s*(?<query>[^;]+);~As';
$iter = new PatternIterator(new ArrayIterator($chunks), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('SELECT 1', $results[0]['query']);
Assert::same('SELECT 2', $results[1]['query']);
}
public function testSqlWithTrailingWhitespace(): void
{
$sql = "SELECT 1;\n \n";
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream($sql), $pattern);
$results = [];
foreach ($iter as $match) {
if (isset($match['query']) && $match['query'] !== '') {
$results[] = $match['query'];
} else {
break; // \z match
}
}
Assert::same(['SELECT 1'], $results);
}
// =====================================================================
// Zero-length matches (e.g. \z)
// =====================================================================
public function testZeroLengthMatchIsNeverYielded(): void
{
// Pattern with \z alternative that matches empty string at end;
// zero-length matches are not yielded to prevent infinite loops
// and inconsistent results across chunk counts.
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('SELECT 1;'), $pattern);
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same('SELECT 1', $results[0]['query']);
}
public function testZeroLengthMatchOnEmptyInput(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream(''), $pattern);
Assert::same([], $this->collect($iter));
}
public function testZeroLengthMatchAfterMultipleQueries(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('a;b;c;'), $pattern);
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same('a', $results[0]['query']);
Assert::same('b', $results[1]['query']);
Assert::same('c', $results[2]['query']);
}
public function testZeroLengthMatchWithTrailingWhitespace(): void
{
// Trailing whitespace is consumed by \s*, making the \z match non-zero-length;
// that match IS yielded. The final \z-only match is zero-length and not yielded.
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream("a;\n \n"), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('a', $results[0]['query']);
Assert::same("\n \n", $results[1][0]);
}
public function testZeroLengthMatchMidBufferLoadsMoreData(): void
{
// Pattern matches exactly 3 chars, or empty. When only 1 char remains in the
// buffer but the stream has more data, the empty match mid-buffer must not abort;
// loading the next chunk makes the 3-char alternative succeed.
$iter = new PatternIterator($this->stream('abXY', 'Zmore'), '~.{3}|~A');
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same('abX', $results[0][0]);
Assert::same('YZm', $results[1][0]);
Assert::same('ore', $results[2][0]);
}
public function testZeroLengthMatchAcrossChunks(): void
{
$pattern = '~\s*(?:(?<query>[^;]+);|\z)~As';
$iter = new PatternIterator($this->stream('a;', 'b;'), $pattern);
$results = $this->collect($iter);
Assert::count(2, $results);
Assert::same('a', $results[0]['query']);
Assert::same('b', $results[1]['query']);
}
// =====================================================================
// Whitespace-only and special content
// =====================================================================
public function testWhitespaceOnlyContent(): void
{
$iter = new PatternIterator($this->stream(' '), '~\s+~A');
$results = $this->collect($iter);
Assert::count(1, $results);
Assert::same(' ', $results[0][0]);
}
public function testMultilineContent(): void
{
$input = "line1\nline2\nline3\n";
$iter = new PatternIterator($this->stream($input), '~[^\n]+\n~A');
$results = $this->collect($iter);
Assert::count(3, $results);
Assert::same("line1\n", $results[0][0]);
Assert::same("line2\n", $results[1][0]);
Assert::same("line3\n", $results[2][0]);
}
// =====================================================================
// Buffer trimming – large content across many chunks
// =====================================================================
public function testManyChunksAccumulateCorrectly(): void
{
$chunks = [];
for ($i = 0; $i < 100; $i++) {
$chunks[] = "q$i;";
}
$iter = new PatternIterator(new ArrayIterator($chunks), '~[^;]+;~A');
$results = $this->collect($iter);
Assert::count(100, $results);
Assert::same('q0;', $results[0][0]);
Assert::same('q99;', $results[99][0]);
}
}
(new PatternIteratorTest())->run();