class ForumManagerTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/forum/tests/src/Unit/ForumManagerTest.php \Drupal\Tests\forum\Unit\ForumManagerTest
@coversDefaultClass \Drupal\forum\ForumManager @group forum
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\forum\Unit\ForumManagerTest
Expanded class hierarchy of ForumManagerTest
File
- core/
modules/ forum/ tests/ src/ Unit/ ForumManagerTest.php, line 16 - Contains \Drupal\Tests\forum\Unit\ForumManagerTest.
Namespace
Drupal\Tests\forum\UnitView source
class ForumManagerTest extends UnitTestCase {
/**
* Tests ForumManager::getIndex().
*/
public function testGetIndex() {
$entity_manager = $this
->getMock('Drupal\\Core\\Entity\\EntityManagerInterface');
$storage = $this
->getMockBuilder('\\Drupal\\taxonomy\\VocabularyStorage')
->disableOriginalConstructor()
->getMock();
$config_factory = $this
->getMock('\\Drupal\\Core\\Config\\ConfigFactoryInterface');
$config = $this
->getMockBuilder('\\Drupal\\Core\\Config\\Config')
->disableOriginalConstructor()
->getMock();
$config_factory
->expects($this
->once())
->method('get')
->will($this
->returnValue($config));
$config
->expects($this
->once())
->method('get')
->will($this
->returnValue('forums'));
$entity_manager
->expects($this
->once())
->method('getStorage')
->will($this
->returnValue($storage));
// This is sufficient for testing purposes.
$term = new \stdClass();
$storage
->expects($this
->once())
->method('create')
->will($this
->returnValue($term));
$connection = $this
->getMockBuilder('\\Drupal\\Core\\Database\\Connection')
->disableOriginalConstructor()
->getMock();
$translation_manager = $this
->getMockBuilder('\\Drupal\\Core\\StringTranslation\\TranslationManager')
->disableOriginalConstructor()
->getMock();
$comment_manager = $this
->getMockBuilder('\\Drupal\\comment\\CommentManagerInterface')
->disableOriginalConstructor()
->getMock();
$manager = $this
->getMock('\\Drupal\\forum\\ForumManager', array(
'getChildren',
), array(
$config_factory,
$entity_manager,
$connection,
$translation_manager,
$comment_manager,
));
$manager
->expects($this
->once())
->method('getChildren')
->will($this
->returnValue(array()));
// Get the index once.
$index1 = $manager
->getIndex();
// Get it again. This should not return the previously generated index. If
// it does not, then the test will fail as the mocked methods will be called
// more than once.
$index2 = $manager
->getIndex();
$this
->assertEquals($index1, $index2);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ForumManagerTest:: |
public | function | Tests ForumManager::getIndex(). | |
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. | |
UnitTestCase:: |
protected | function | 259 |