|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @copyright Copyright (C) eZ Systems AS. All rights reserved. |
|
5
|
|
|
* @license For full copyright and license information view LICENSE file distributed with this source code. |
|
6
|
|
|
*/ |
|
7
|
|
|
namespace eZ\Publish\Core\Persistence\Legacy\Tests\URL\Query\CriterionHandler; |
|
8
|
|
|
|
|
9
|
|
|
use eZ\Publish\API\Repository\Values\URL\Query\Criterion\VisibleOnly; |
|
10
|
|
|
use eZ\Publish\API\Repository\Values\URL\Query\Criterion; |
|
11
|
|
|
use eZ\Publish\Core\Persistence\Database\Expression; |
|
12
|
|
|
use eZ\Publish\Core\Persistence\Database\SelectQuery; |
|
13
|
|
|
use eZ\Publish\Core\Persistence\Legacy\URL\Query\CriteriaConverter; |
|
14
|
|
|
use eZ\Publish\Core\Persistence\Legacy\URL\Query\CriterionHandler\VisibleOnly as VisibleOnlyHandler; |
|
15
|
|
|
|
|
16
|
|
|
class VisibleOnlyTest extends CriterionHandlerTest |
|
17
|
|
|
{ |
|
18
|
|
|
/** |
|
19
|
|
|
* {@inheritdoc} |
|
20
|
|
|
*/ |
|
21
|
|
|
public function testAccept() |
|
22
|
|
|
{ |
|
23
|
|
|
$handler = new VisibleOnlyHandler(); |
|
24
|
|
|
|
|
25
|
|
|
$this->assertHandlerAcceptsCriterion($handler, VisibleOnly::class); |
|
26
|
|
|
$this->assertHandlerRejectsCriterion($handler, Criterion::class); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* {@inheritdoc} |
|
31
|
|
|
*/ |
|
32
|
|
|
public function testHandle() |
|
33
|
|
|
{ |
|
34
|
|
|
$criterion = new VisibleOnly(); |
|
35
|
|
|
$expected = 'ezurl.id IN (SUBQUERY)'; |
|
36
|
|
|
|
|
37
|
|
|
$expr = $this->createMock(Expression::class); |
|
38
|
|
|
$expr |
|
39
|
|
|
->expects($this->once()) |
|
40
|
|
|
->method('in') |
|
41
|
|
|
->with('ezurl.id', '(SUBQUERY)') |
|
42
|
|
|
->willReturn($expected); |
|
43
|
|
|
|
|
44
|
|
|
$query = $this->createMock(SelectQuery::class); |
|
45
|
|
|
$query->expr = $expr; |
|
46
|
|
|
|
|
47
|
|
|
$converter = $this->createMock(CriteriaConverter::class); |
|
48
|
|
|
|
|
49
|
|
|
$handler = $this |
|
50
|
|
|
->getMockBuilder(VisibleOnlyHandler::class) |
|
51
|
|
|
->setMethods(['getVisibleOnlySubQuery']) |
|
52
|
|
|
->getMock(); |
|
53
|
|
|
$handler |
|
54
|
|
|
->expects($this->once()) |
|
55
|
|
|
->method('getVisibleOnlySubQuery') |
|
56
|
|
|
->with($query) |
|
57
|
|
|
->willReturn('(SUBQUERY)'); |
|
58
|
|
|
|
|
59
|
|
|
$actual = $handler->handle($converter, $query, $criterion); |
|
60
|
|
|
|
|
61
|
|
|
$this->assertEquals($expected, $actual); |
|
62
|
|
|
} |
|
63
|
|
|
} |
|
64
|
|
|
|