Spaces:
No application file
No application file
File size: 7,358 Bytes
d2897cd |
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 |
<?php
declare(strict_types=1);
namespace Mautic\LeadBundle\Tests\Entity;
use Doctrine\DBAL\ArrayParameterType;
use Doctrine\DBAL\Query\Expression\CompositeExpression;
use Doctrine\DBAL\Query\QueryBuilder;
use Doctrine\ORM\AbstractQuery;
use Mautic\CoreBundle\Test\Doctrine\DBALMocker;
use Mautic\CoreBundle\Test\Doctrine\RepositoryConfiguratorTrait;
use Mautic\LeadBundle\Entity\CustomFieldRepositoryTrait;
use Mautic\LeadBundle\Entity\Lead;
use Mautic\LeadBundle\Entity\LeadRepository;
use PHPUnit\Framework\Assert;
use PHPUnit\Framework\MockObject\MockObject;
class LeadRepositoryTest extends \PHPUnit\Framework\TestCase
{
use RepositoryConfiguratorTrait;
private LeadRepository $repository;
protected function setUp(): void
{
parent::setUp();
$this->repository = $this->configureRepository(Lead::class);
}
public function testBooleanWithPrepareDbalFieldsForSave(): void
{
$trait = $this->getMockForTrait(CustomFieldRepositoryTrait::class);
$fields = [
'true' => true,
'false' => false,
'string' => 'blah',
];
$reflection = new \ReflectionObject($trait);
$method = $reflection->getMethod('prepareDbalFieldsForSave');
$method->setAccessible(true);
$method->invokeArgs($trait, [&$fields]);
$this->assertEquals(1, $fields['true']);
$this->assertEquals(0, $fields['false']);
$this->assertEquals('blah', $fields['string']);
}
/**
* Ensure that the emails are bound separately as parameters according to
* https://www.doctrine-project.org/projects/doctrine-orm/en/2.6/reference/query-builder.html#line-number-0a267d5a2c69797a7656aae33fcc140d16b0a566-72.
*/
public function testBuildQueryForGetLeadsByFieldValue(): void
{
$dbalMock = new DBALMocker($this);
$mock = $this->getMockBuilder(LeadRepository::class)
->disableOriginalConstructor()
->onlyMethods(['getEntityManager'])
->getMock();
$mock->method('getEntityManager')
->will($this->returnValue($dbalMock->getMockEm()));
$reflection = new \ReflectionClass(LeadRepository::class);
$refMethod = $reflection->getMethod('buildQueryForGetLeadsByFieldValue');
$refMethod->setAccessible(true);
$refMethod->invoke($mock, 'email', ['[email protected]', '[email protected]']);
$parameters = $dbalMock->getQueryPart('parameters');
$this->assertCount(2, $parameters, 'There should be two parameters bound because that\'s the number of emails we passed into the method.');
}
/**
* Ensure that the array_combine return value matches the old style.
*/
public function testGetLeadsByFieldValueArrayMapReturn(): void
{
/** @var MockObject&LeadRepository */
$repository = $this->getMockBuilder(LeadRepository::class)
->disableOriginalConstructor()
->onlyMethods(['getEntities', 'buildQueryForGetLeadsByFieldValue'])
->getMock();
$contact = new Lead();
$contact->setEmail('[email protected]');
$contact2 = new Lead();
$contact2->setEmail('[email protected]');
$entities = [$contact, $contact2];
$repository->method('getEntities')->will($this->returnValue($entities));
$repository->method('buildQueryForGetLeadsByFieldValue')->will($this->returnValue(null));
$contacts = $repository->getLeadsByFieldValue('email', ['[email protected]', '[email protected]']);
$this->assertSame($entities, $contacts, 'When getting leads without indexing by column, it should match the expected result.');
$contacts = $repository->getLeadsByFieldValue('email', ['[email protected]', '[email protected]'], null, true);
$expected = ['[email protected]', '[email protected]'];
$this->assertSame($expected, array_keys($contacts), 'When getting leads with indexing by column, it should match the expected result.');
}
/**
* Ensure that we will join each table with the same alias only once.
*/
public function testApplySearchQueryRelationshipJoinOnlyOnce(): void
{
$queryBuilder = new QueryBuilder($this->connection);
$queryBuilder->select('*')->from(MAUTIC_TABLE_PREFIX.'table_a');
$tableB = [
'alias' => 'alias_b',
'from_alias' => MAUTIC_TABLE_PREFIX.'table_a',
'table' => 'table_b',
'condition' => 'condition_b',
];
$tableC = [
'alias' => 'alias_c',
'from_alias' => MAUTIC_TABLE_PREFIX.'table_a',
'table' => 'table_c',
'condition' => 'condition_c',
];
$this->repository->applySearchQueryRelationship(
$queryBuilder,
[$tableB, $tableC, $tableB], // Sending 2 table B here.
true
);
Assert::assertSame(
'SELECT * FROM '.MAUTIC_TABLE_PREFIX.'table_a INNER JOIN '.MAUTIC_TABLE_PREFIX.'table_b alias_b ON condition_b INNER JOIN '.MAUTIC_TABLE_PREFIX.'table_c alias_c ON condition_c GROUP BY l.id',
$queryBuilder->getSQL()
);
}
public function testGetContactIdsByEmails(): void
{
$emails = [
'[email protected]',
'[email protected]',
];
$query = $this->createMock(AbstractQuery::class);
$query->expects(self::once())
->method('setParameter')
->with('emails', $emails, ArrayParameterType::STRING)
->willReturn($query);
$query->expects(self::once())
->method('getArrayResult')
->willReturn([
0 => [
'id' => '1',
],
1 => [
'id' => '2',
],
]);
$this->entityManager->expects(self::once())
->method('createQuery')
->willReturn($query);
self::assertEquals(
[1, 2],
$this->repository->getContactIdsByEmails($emails)
);
}
public function testGetUniqueIdentifiersOperator(): void
{
$this->repository->setUniqueIdentifiersOperator(CompositeExpression::TYPE_AND);
$reflection = new \ReflectionClass(LeadRepository::class);
$refMethod = $reflection->getMethod('getUniqueIdentifiersWherePart');
$refMethod->setAccessible(true);
$this->assertEquals('andWhere', $refMethod->invoke($this->repository));
$this->repository->setUniqueIdentifiersOperator(CompositeExpression::TYPE_OR);
$this->assertEquals('orWhere', $refMethod->invoke($this->repository));
}
public function testUpdateLastActiveWithId(): void
{
$this->entityManager->expects($this->once())
->method('getConnection')
->willReturn($this->connection);
$this->repository->updateLastActive(1);
}
public function testUpdateLastActiveWithNoId(): void
{
$this->entityManager->expects($this->never())
->method('getConnection')
->willReturn($this->connection);
$this->repository->updateLastActive(null); // @phpstan-ignore-line this tests if we provide null instead which actually happens.
}
}
|