1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Migration\ResourceModel;
- class DocumentTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Migration\ResourceModel\Record\CollectionFactory|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $recordCollectionFactory;
- /**
- * @var \Migration\ResourceModel\Structure|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $structure;
- /**
- * @var \Migration\ResourceModel\Document
- */
- protected $document;
- /**
- * @return void
- */
- protected function setUp()
- {
- $this->structure = $this->createMock(\Migration\ResourceModel\Structure::class);
- $this->recordCollectionFactory = $this->getMockBuilder(\Migration\ResourceModel\Record\CollectionFactory::class)
- ->disableOriginalConstructor()
- ->setMethods(['create'])
- ->getMock();
- $this->document = new \Migration\ResourceModel\Document(
- $this->recordCollectionFactory,
- $this->structure,
- 'test_document'
- );
- }
- /**
- * @return void
- */
- public function testGetRecords()
- {
- $recordCollection = $this->createMock(\Migration\ResourceModel\Record\Collection::class);
- $this->recordCollectionFactory->expects($this->atLeastOnce())
- ->method('create')
- ->with($this->equalTo([
- 'structure' => $this->structure,
- 'documentName' => 'test_document',
- ]))
- ->will($this->returnValue($recordCollection));
- $this->assertSame($recordCollection, $this->document->getRecords());
- }
- /**
- * @return void
- */
- public function testGetName()
- {
- $this->assertEquals('test_document', $this->document->getName());
- }
- /**
- * @return void
- */
- public function testGetStructure()
- {
- $this->assertSame($this->structure, $this->document->getStructure());
- }
- }
|