You are here

class ForumManagerTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/forum/tests/src/Unit/ForumManagerTest.php \Drupal\Tests\forum\Unit\ForumManagerTest
  2. 10 core/modules/forum/tests/src/Unit/ForumManagerTest.php \Drupal\Tests\forum\Unit\ForumManagerTest

@coversDefaultClass \Drupal\forum\ForumManager @group forum

Hierarchy

Expanded class hierarchy of ForumManagerTest

File

core/modules/forum/tests/src/Unit/ForumManagerTest.php, line 13

Namespace

Drupal\Tests\forum\Unit
View 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')
      ->will($this
      ->returnValue($config));
    $config
      ->expects($this
      ->once())
      ->method('get')
      ->will($this
      ->returnValue('forums'));
    $entity_type_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
      ->getMockBuilder('\\Drupal\\forum\\ForumManager')
      ->setMethods([
      'getChildren',
    ])
      ->setConstructorArgs([
      $config_factory,
      $entity_type_manager,
      $connection,
      $translation_manager,
      $comment_manager,
      $entity_field_manager,
    ])
      ->getMock();
    $manager
      ->expects($this
      ->once())
      ->method('getChildren')
      ->will($this
      ->returnValue([]));

    // 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

Namesort descending Modifiers Type Description Overrides
ForumManagerTest::testGetIndex public function Tests ForumManager::getIndex().
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
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::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340