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
|
<?php
declare(strict_types=1);
namespace Doctrine\Tests\Common\Collections;
use Doctrine\Common\Collections\Criteria;
use Doctrine\Common\Collections\Expr\Comparison;
use Doctrine\Common\Collections\Expr\CompositeExpression;
use Doctrine\Common\Collections\ExpressionBuilder;
use Doctrine\Common\Collections\Order;
use Doctrine\Deprecations\PHPUnit\VerifyDeprecations;
use PHPUnit\Framework\TestCase;
class CriteriaTest extends TestCase
{
use VerifyDeprecations;
public function testCreate(): void
{
$criteria = Criteria::create();
self::assertInstanceOf(Criteria::class, $criteria);
}
public function testConstructor(): void
{
$expr = new Comparison('field', '=', 'value');
$criteria = new Criteria($expr, ['foo' => Order::Ascending], 10, 20);
self::assertSame($expr, $criteria->getWhereExpression());
self::assertSame(['foo' => Order::Ascending->value], $criteria->getOrderings());
self::assertSame(10, $criteria->getFirstResult());
self::assertSame(20, $criteria->getMaxResults());
}
public function testDeprecatedNullOffset(): void
{
$expr = new Comparison('field', '=', 'value');
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/collections/pull/311');
$criteria = new Criteria($expr, ['foo' => Order::Ascending], null, 20);
self::assertSame($expr, $criteria->getWhereExpression());
self::assertSame(['foo' => 'ASC'], $criteria->getOrderings());
self::assertSame(['foo' => Order::Ascending], $criteria->orderings());
self::assertNull($criteria->getFirstResult());
self::assertSame(20, $criteria->getMaxResults());
}
public function testDefaultConstructor(): void
{
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/collections/pull/311');
$criteria = new Criteria();
self::assertNull($criteria->getWhereExpression());
self::assertSame([], $criteria->getOrderings());
self::assertNull($criteria->getFirstResult());
self::assertNull($criteria->getMaxResults());
}
public function testWhere(): void
{
$expr = new Comparison('field', '=', 'value');
$criteria = new Criteria();
$criteria->where($expr);
self::assertSame($expr, $criteria->getWhereExpression());
}
public function testAndWhere(): void
{
$expr = new Comparison('field', '=', 'value');
$criteria = new Criteria();
$criteria->where($expr);
$expr = $criteria->getWhereExpression();
$criteria->andWhere($expr);
$where = $criteria->getWhereExpression();
self::assertInstanceOf(CompositeExpression::class, $where);
self::assertEquals(CompositeExpression::TYPE_AND, $where->getType());
self::assertSame([$expr, $expr], $where->getExpressionList());
}
public function testAndWhereWithoutWhere(): void
{
$expr = new Comparison('field', '=', 'value');
$criteria = new Criteria();
$criteria->andWhere($expr);
self::assertSame($expr, $criteria->getWhereExpression());
}
public function testOrWhere(): void
{
$expr = new Comparison('field', '=', 'value');
$criteria = new Criteria();
$criteria->where($expr);
$expr = $criteria->getWhereExpression();
$criteria->orWhere($expr);
$where = $criteria->getWhereExpression();
self::assertInstanceOf(CompositeExpression::class, $where);
self::assertEquals(CompositeExpression::TYPE_OR, $where->getType());
self::assertSame([$expr, $expr], $where->getExpressionList());
}
public function testOrWhereWithoutWhere(): void
{
$expr = new Comparison('field', '=', 'value');
$criteria = new Criteria();
$criteria->orWhere($expr);
self::assertSame($expr, $criteria->getWhereExpression());
}
public function testOrderings(): void
{
$criteria = Criteria::create()
->orderBy(['foo' => Order::Ascending]);
self::assertEquals(['foo' => Order::Ascending], $criteria->orderings());
}
public function testExpr(): void
{
self::assertInstanceOf(ExpressionBuilder::class, Criteria::expr());
}
public function testPassingNonOrderEnumToOrderByIsDeprecated(): void
{
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/collections/pull/389');
$criteria = Criteria::create()->orderBy(['foo' => 'ASC']);
}
public function testConstructingCriteriaWithNonOrderEnumIsDeprecated(): void
{
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/collections/pull/389');
$criteria = new Criteria(null, ['foo' => 'ASC']);
}
public function testUsingOrderEnumIsTheRightWay(): void
{
$this->expectNoDeprecationWithIdentifier('https://github.com/doctrine/collections/pull/389');
Criteria::create()->orderBy(['foo' => Order::Ascending]);
new Criteria(null, ['foo' => Order::Ascending]);
}
public function testCallingGetOrderingsIsDeprecated(): void
{
$criteria = Criteria::create()->orderBy(['foo' => Order::Ascending]);
$this->expectDeprecationWithIdentifier('https://github.com/doctrine/collections/pull/389');
$criteria->getOrderings();
}
}
|