-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathQuerySql2OperationsTest.php
541 lines (468 loc) · 19.2 KB
/
QuerySql2OperationsTest.php
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
<?php
namespace PHPCR\Tests\Query;
use PHPCR\Query\QueryInterface;
require_once 'QueryBaseCase.php';
/**
* Run non-trivial queries to try out where, the join features and such
*/
class QuerySql2OperationsTest extends QueryBaseCase
{
public function testQueryField()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT foo
FROM [nt:unstructured]
WHERE foo = "bar"
AND (ISSAMENODE([/tests_general_base]) OR ISDESCENDANTNODE([/tests_general_base]))
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getNodes() as $node) {
$vals[] = $node->getPropertyValue('foo');
}
$this->assertEquals(array('bar'), $vals);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('foo');
}
$this->assertEquals(array('bar'), $vals);
}
public function testQueryFieldSomeNull()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT foo
FROM [nt:unstructured]
WHERE ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getNodes() as $node) {
$vals[] = ($node->hasProperty('foo') ? $node->getPropertyValue('foo') : null);
}
$this->assertContains('bar', $vals);
$this->assertEquals(9, count($vals));
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('foo');
}
$this->assertContains('bar', $vals);
$this->assertEquals(9, count($vals));
}
public function testQueryFieldSelector()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT [nt:unstructured].foo
FROM [nt:unstructured]
WHERE [nt:unstructured].foo = "bar"
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('foo');
}
$this->assertEquals(array('bar'), $vals);
}
public function testQueryFieldSelectorWithAlias()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.foo
FROM [nt:unstructured] AS data
WHERE data.foo = "bar"
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('data.foo');
}
$this->assertEquals(array('bar'), $vals);
}
public function testQueryJoin()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT [nt:unstructured].longNumber
FROM [nt:file]
INNER JOIN [nt:unstructured]
ON ISDESCENDANTNODE([nt:unstructured], [nt:file])
WHERE [nt:unstructured].longNumber = 999
AND ISDESCENDANTNODE([nt:file], [/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('nt:unstructured.longNumber');
}
$this->assertEquals(array(999), $vals);
}
public function testQueryJoinWithAlias()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT content.longNumber
FROM [nt:file] AS file
INNER JOIN [nt:unstructured] AS content
ON ISDESCENDANTNODE(content, file)
WHERE content.longNumber = 999
AND ISDESCENDANTNODE(file, [/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('content.longNumber');
}
$this->assertEquals(array(999), $vals);
}
public function testQueryLeftJoin()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery(
'SELECT file.[jcr:name], target.longNumberToCompare
FROM [nt:file] AS file
LEFT OUTER JOIN [nt:unstructured] AS target
ON ISDESCENDANTNODE(target, file)
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[basename($row->getPath('file'))] = $row->getValue('target.longNumberToCompare');
}
// We get 9 results (idExample comes back multiple times because of the join)
$this->assertCount(9, $result->getRows());
$this->assertEquals(array(
'index.txt' => null,
'idExample' => null,
'numberPropertyNode' => null,
'NumberPropertyNodeToCompare1' => 2,
'NumberPropertyNodeToCompare2' => 10,
), $vals);
}
public function testQueryRightJoin()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery(
'SELECT file.[jcr:name], target.stringToCompare
FROM [nt:unstructured] AS target
RIGHT OUTER JOIN [nt:file] AS file
ON ISDESCENDANTNODE(target, file)
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[basename($row->getPath('file'))] = $row->getValue('target.stringToCompare');
}
// We get 9 results (idExample comes back multiple times because of the join)
$this->assertCount(9, $result->getRows());
$this->assertEquals(array(
'index.txt' => null,
'idExample' => null,
'numberPropertyNode' => null,
'NumberPropertyNodeToCompare1' => '2',
'NumberPropertyNodeToCompare2' => '10',
), $vals);
}
public function testQueryJoinReference()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery(
'SELECT source.ref1, target.[jcr:uuid]
FROM [nt:unstructured] AS source
INNER JOIN [nt:unstructured] AS target
ON source.ref1 = target.[jcr:uuid]
WHERE ISCHILDNODE(source, "/tests_general_base/idExample/jcr:content")
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[$row->getValue('source.ref1')] = $row->getValue('target.jcr:uuid');
}
$this->assertEquals(array('13543fc6-1abf-4708-bfcc-e49511754b40' => '13543fc6-1abf-4708-bfcc-e49511754b40'), $vals);
}
public function testQueryJoinChildnode()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT [nt:unstructured].longNumber
FROM [nt:file]
INNER JOIN [nt:unstructured]
ON ISCHILDNODE([nt:unstructured], [nt:file])
WHERE [nt:unstructured].longNumber = 999
AND ISDESCENDANTNODE([nt:file], [/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('nt:unstructured.longNumber');
}
$this->assertEquals(array(999), $vals);
}
public function testQueryJoinSamenode()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT [nt:unstructured].longNumber
FROM [nt:unstructured]
INNER JOIN [nt:file]
ON ISSAMENODE([nt:unstructured], [nt:file], "jcr:content")
WHERE [nt:unstructured].longNumber = 999
AND ISDESCENDANTNODE([nt:unstructured], [/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('nt:file.path');
}
$this->assertEquals(array(999), $vals);
}
public function testQueryJoinSamenodeIdent()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT [nt:unstructured].longNumber
FROM [nt:unstructured]
INNER JOIN [mix:referenceable]
ON ISSAMENODE([mix:referenceable], [nt:unstructured])
WHERE [nt:unstructured].longNumber = 999
AND ISDESCENDANTNODE([nt:unstructured], [/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('nt:file.path');
}
$this->assertEquals(array(999), $vals);
}
public function testQueryOrder()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.foo
FROM [nt:unstructured] AS data
WHERE ISDESCENDANTNODE([/tests_general_base]) AND data.foo IS NOT NULL
ORDER BY data.foo
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('data.foo');
}
// rows that do not have that field are empty string. empty is before fields with values
$this->assertEquals(array('bar', 'bar2'), $vals);
}
public function testQueryOrderWithMissingProperty()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.zeronumber
FROM [nt:unstructured] AS data
WHERE ISDESCENDANTNODE([/tests_general_base])
ORDER BY data.zeronumber
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$vals = array();
foreach ($result->getRows() as $row) {
$vals[] = $row->getValue('data.zeronumber');
}
// rows that do not have that field are empty string. empty is before fields with values
$this->assertEquals(array('', '', '', '', '', '', '', '', 0), $vals);
}
public function testQueryMultiValuedProperty()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.tags
FROM [nt:unstructured] AS data
WHERE data.tags = "foo"
AND data.tags = "bar"
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(1, $rows, 'Expected one row with both tags present');
$this->assertSame('foo bar', $rows->current()->getValue('tags'));
}
public function testLengthOperandOnStringProperty()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE
data.foo IS NOT NULL
AND LENGTH(data.foo) = 3
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(1, $rows, 'Expected 1 node with property "foo" with a value with 3 characters (bar)');
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE
data.foo IS NOT NULL
AND LENGTH(data.foo) = 4
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(1, $rows, 'Expected 1 node with property "foo" with a value with 4 characters (bar2)');
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE
data.foo IS NOT NULL
AND LENGTH(data.foo) > 2
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(2, $rows, 'Expected 2 nodes with property "foo" with a value with more then 2 characters (bar and bar2)');
}
public function testLengthOperandOnEmptyProperty()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE
data.[empty-value] IS NOT NULL
AND LENGTH(data.[empty-value]) < 1
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(1, $rows, 'Expected 1 node with property "empty-value" with a length smaller then 1');
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE
data.[empty-value] IS NOT NULL
AND LENGTH(data.[empty-value]) = 0
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(1, $rows, 'Expected 1 node with property "empty-value" with a length equal to 0');
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE
data.[empty-value] IS NOT NULL
AND LENGTH(data.[empty-value]) > -1
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(1, $rows, 'Expected 1 node with property "empty-value" with a length greater then -1');
}
public function testLengthOperandOnBinaryProperty()
{
/** @var $query QueryInterface */
$query = $this->sharedFixture['qm']->createQuery('
SELECT data.*
FROM [nt:unstructured] AS data
WHERE LENGTH(data.[jcr:data]) = 121
AND ISDESCENDANTNODE([/tests_general_base])
',
QueryInterface::JCR_SQL2
);
$this->assertInstanceOf('\PHPCR\Query\QueryInterface', $query);
$result = $query->execute();
$this->assertInstanceOf('\PHPCR\Query\QueryResultInterface', $result);
$rows = $result->getRows();
$this->assertCount(3, $rows, 'Expected 3 nodes with a (binary) jcr:data property with length 121');
}
}