TYPO3  7.6
RepositoryRepositoryTest.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Extensionmanager\Tests\Unit\Domain\Repository;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
21 class RepositoryRepositoryTest extends \TYPO3\CMS\Core\Tests\UnitTestCase
22 {
26  protected $mockObjectManager;
27 
31  protected $subject;
32 
33  protected function setUp()
34  {
35  $this->mockObjectManager = $this->getMock(\TYPO3\CMS\Extbase\Object\ObjectManagerInterface::class);
37  $this->subject = $this->getMock(\TYPO3\CMS\Extensionmanager\Domain\Repository\RepositoryRepository::class, array('findAll'), array($this->mockObjectManager));
38  }
39 
44  {
45  $this->subject
46  ->expects($this->once())
47  ->method('findAll')
48  ->will($this->returnValue(array()));
49 
50  $this->assertNull($this->subject->findOneTypo3OrgRepository());
51  }
52 
57  {
58  $mockModelOne = $this->getMock(\TYPO3\CMS\Extensionmanager\Domain\Model\Repository::class);
59  $mockModelOne
60  ->expects(($this->once()))
61  ->method('getTitle')
62  ->will($this->returnValue('foo'));
63  $mockModelTwo = $this->getMock(\TYPO3\CMS\Extensionmanager\Domain\Model\Repository::class);
64  $mockModelTwo
65  ->expects(($this->once()))
66  ->method('getTitle')
67  ->will($this->returnValue('TYPO3.org Main Repository'));
68 
69  $this->subject
70  ->expects($this->once())
71  ->method('findAll')
72  ->will($this->returnValue(array($mockModelOne, $mockModelTwo)));
73 
74  $this->assertSame($mockModelTwo, $this->subject->findOneTypo3OrgRepository());
75  }
76 }