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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\CatalogUrlRewrite\Test\Unit\Model;
use Magento\Framework\DataObject;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
class ObjectRegistryTest extends \PHPUnit\Framework\TestCase
{
/** @var \Magento\CatalogUrlRewrite\Model\ObjectRegistry */
protected $objectRegistry;
/** @var \Magento\Framework\DataObject|\PHPUnit_Framework_MockObject_MockObject */
protected $object;
protected function setUp()
{
$this->object = new \Magento\Framework\DataObject(['id' => 1]);
$this->objectRegistry = (new ObjectManager($this))->getObject(
\Magento\CatalogUrlRewrite\Model\ObjectRegistry::class,
['entities' => [$this->object]]
);
}
public function testGet()
{
$this->assertEquals($this->object, $this->objectRegistry->get(1));
}
public function testGetNotExistObject()
{
$this->assertEquals(null, $this->objectRegistry->get('no-id'));
}
public function testGetList()
{
$this->assertEquals([1 => $this->object], $this->objectRegistry->getList());
}
public function testGetEmptyList()
{
$objectRegistry = (new ObjectManager($this))->getObject(
\Magento\CatalogUrlRewrite\Model\ObjectRegistry::class,
['entities' => []]
);
$this->assertEquals([], $objectRegistry->getList());
}
}