class ForumManagerTest
Same name in other branches
- 9 core/modules/forum/tests/src/Unit/ForumManagerTest.php \Drupal\Tests\forum\Unit\ForumManagerTest
- 8.9.x core/modules/forum/tests/src/Unit/ForumManagerTest.php \Drupal\Tests\forum\Unit\ForumManagerTest
- 10 core/modules/forum/tests/src/Unit/ForumManagerTest.php \Drupal\Tests\forum\Unit\ForumManagerTest
@coversDefaultClass \Drupal\forum\ForumManager @group forum @group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait
- class \Drupal\Tests\forum\Unit\ForumManagerTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of ForumManagerTest
File
-
core/
modules/ forum/ tests/ src/ Unit/ ForumManagerTest.php, line 16
Namespace
Drupal\Tests\forum\UnitView source
class ForumManagerTest extends UnitTestCase {
/**
* Tests ForumManager::getIndex().
*/
public function testGetIndex() {
$entity_field_manager = $this->createMock(EntityFieldManagerInterface::class);
$entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
$storage = $this->getMockBuilder('\\Drupal\\taxonomy\\VocabularyStorage')
->disableOriginalConstructor()
->getMock();
$config_factory = $this->createMock('\\Drupal\\Core\\Config\\ConfigFactoryInterface');
$config = $this->getMockBuilder('\\Drupal\\Core\\Config\\Config')
->disableOriginalConstructor()
->getMock();
$config_factory->expects($this->once())
->method('get')
->willReturn($config);
$config->expects($this->once())
->method('get')
->willReturn('forums');
$entity_type_manager->expects($this->once())
->method('getStorage')
->willReturn($storage);
// This is sufficient for testing purposes.
$term = new \stdClass();
$storage->expects($this->once())
->method('create')
->willReturn($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->getMockBuilder('\\Drupal\\forum\\ForumManager')
->onlyMethods([
'getChildren',
])
->setConstructorArgs([
$config_factory,
$entity_type_manager,
$connection,
$translation_manager,
$comment_manager,
$entity_field_manager,
])
->getMock();
$manager->expects($this->once())
->method('getChildren')
->willReturn([]);
// 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
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
ExpectDeprecationTrait::getCallableName | private static | function | Returns a callable as a string suitable for inclusion in a message. | |
ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
ForumManagerTest::testGetIndex | public | function | Tests ForumManager::getIndex(). | |
RandomGeneratorTrait::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait::randomMachineName | protected | function | Generates a unique random string containing letters and numbers. | |
RandomGeneratorTrait::randomObject | public | function | Generates a random PHP object. | |
RandomGeneratorTrait::randomString | public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
UnitTestCase::$root | protected | property | The app root. | |
UnitTestCase::getClassResolverStub | protected | function | Returns a stub class resolver. | |
UnitTestCase::getConfigFactoryStub | public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase::getConfigStorageStub | public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase::setUp | protected | function | 358 | |
UnitTestCase::setUpBeforeClass | public static | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.