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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\EntityManager\Test\Unit\Operation;
use Magento\Framework\App\ResourceConnection;
use Magento\Framework\DataObject;
use Magento\Framework\DB\Adapter\AdapterInterface;
use Magento\Framework\DB\Adapter\DuplicateException;
use Magento\Framework\EntityManager\EntityMetadataInterface;
use Magento\Framework\EntityManager\MetadataPool;
use Magento\Framework\EntityManager\Operation\Update;
use Magento\Framework\EntityManager\Operation\Update\UpdateMain;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
class UpdateTest extends \PHPUnit\Framework\TestCase
{
/**
* @var MetadataPool|\PHPUnit_Framework_MockObject_MockObject
*/
private $metadataPool;
/**
* @var ResourceConnection|\PHPUnit_Framework_MockObject_MockObject
*/
private $resourceConnection;
/**
* @var UpdateMain|\PHPUnit_Framework_MockObject_MockObject
*/
private $updateMain;
/**
* @var Update
*/
private $update;
public function setUp()
{
$this->metadataPool = $this->getMockBuilder(MetadataPool::class)
->disableOriginalConstructor()
->getMock();
$this->resourceConnection = $this->getMockBuilder(ResourceConnection::class)
->disableOriginalConstructor()
->getMock();
$this->updateMain = $this->getMockBuilder(UpdateMain::class)
->disableOriginalConstructor()
->getMock();
$this->update = (new ObjectManager($this))->getObject(Update::class, [
'metadataPool' => $this->metadataPool,
'resourceConnection' => $this->resourceConnection,
'updateMain' => $this->updateMain,
]);
}
/**
* @expectedException \Magento\Framework\Exception\AlreadyExistsException
*/
public function testDuplicateExceptionProcessingOnExecute()
{
$metadata = $this->createMock(EntityMetadataInterface::class);
$this->metadataPool->expects($this->any())->method('getMetadata')->willReturn($metadata);
$connection = $this->createMock(AdapterInterface::class);
$connection->expects($this->once())->method('rollback');
$this->resourceConnection->expects($this->any())->method('getConnectionByName')->willReturn($connection);
$this->updateMain->expects($this->once())->method('execute')->willThrowException(new DuplicateException());
$entity = $this->getMockBuilder(DataObject::class)
->disableOriginalConstructor()
->getMock();
$this->update->execute($entity);
}
}