class BookManagerTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/book/tests/src/Unit/BookManagerTest.php \Drupal\Tests\book\Unit\BookManagerTest
@coversDefaultClass \Drupal\book\BookManager @group book
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\book\Unit\BookManagerTest
Expanded class hierarchy of BookManagerTest
File
- core/
modules/ book/ tests/ src/ Unit/ BookManagerTest.php, line 17 - Contains \Drupal\Tests\book\Unit\BookManagerTest.
Namespace
Drupal\Tests\book\UnitView source
class BookManagerTest extends UnitTestCase {
/**
* The mocked entity manager.
*
* @var \Drupal\Core\Entity\EntityManager|\PHPUnit_Framework_MockObject_MockObject
*/
protected $entityManager;
/**
* The mocked config factory.
*
* @var \Drupal\Core\Config\ConfigFactory|\PHPUnit_Framework_MockObject_MockObject
*/
protected $configFactory;
/**
* The mocked translation manager.
*
* @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $translation;
/**
* The mocked renderer.
*
* @var \Drupal\Core\Render\RendererInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $renderer;
/**
* The tested book manager.
*
* @var \Drupal\book\BookManager
*/
protected $bookManager;
/**
* Book outline storage.
*
* @var \Drupal\book\BookOutlineStorageInterface
*/
protected $bookOutlineStorage;
/**
* {@inheritdoc}
*/
protected function setUp() {
$this->entityManager = $this
->getMock('Drupal\\Core\\Entity\\EntityManagerInterface');
$this->translation = $this
->getStringTranslationStub();
$this->configFactory = $this
->getConfigFactoryStub(array());
$this->bookOutlineStorage = $this
->getMock('Drupal\\book\\BookOutlineStorageInterface');
$this->renderer = $this
->getMock('\\Drupal\\Core\\Render\\RendererInterface');
$this->bookManager = new BookManager($this->entityManager, $this->translation, $this->configFactory, $this->bookOutlineStorage, $this->renderer);
}
/**
* Tests the getBookParents() method.
*
* @dataProvider providerTestGetBookParents
*/
public function testGetBookParents($book, $parent, $expected) {
$this
->assertEquals($expected, $this->bookManager
->getBookParents($book, $parent));
}
/**
* Provides test data for testGetBookParents.
*
* @return array
* The test data.
*/
public function providerTestGetBookParents() {
$empty = array(
'p1' => 0,
'p2' => 0,
'p3' => 0,
'p4' => 0,
'p5' => 0,
'p6' => 0,
'p7' => 0,
'p8' => 0,
'p9' => 0,
);
return array(
// Provides a book without an existing parent.
array(
array(
'pid' => 0,
'nid' => 12,
),
array(),
array(
'depth' => 1,
'p1' => 12,
) + $empty,
),
// Provides a book with an existing parent.
array(
array(
'pid' => 11,
'nid' => 12,
),
array(
'nid' => 11,
'depth' => 1,
'p1' => 11,
),
array(
'depth' => 2,
'p1' => 11,
'p2' => 12,
) + $empty,
),
// Provides a book with two existing parents.
array(
array(
'pid' => 11,
'nid' => 12,
),
array(
'nid' => 11,
'depth' => 2,
'p1' => 10,
'p2' => 11,
),
array(
'depth' => 3,
'p1' => 10,
'p2' => 11,
'p3' => 12,
) + $empty,
),
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BookManagerTest:: |
protected | property | The tested book manager. | |
BookManagerTest:: |
protected | property | Book outline storage. | |
BookManagerTest:: |
protected | property | The mocked config factory. | |
BookManagerTest:: |
protected | property | The mocked entity manager. | |
BookManagerTest:: |
protected | property | The mocked renderer. | |
BookManagerTest:: |
protected | property | The mocked translation manager. | |
BookManagerTest:: |
public | function | Provides test data for testGetBookParents. | |
BookManagerTest:: |
protected | function |
Overrides UnitTestCase:: |
|
BookManagerTest:: |
public | function | Tests the getBookParents() method. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |