class ForumNodeBreadcrumbBuilderTest

Same name and namespace in other branches
  1. 9 core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php \Drupal\Tests\forum\Unit\Breadcrumb\ForumNodeBreadcrumbBuilderTest
  2. 8.9.x core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php \Drupal\Tests\forum\Unit\Breadcrumb\ForumNodeBreadcrumbBuilderTest
  3. 11.x core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php \Drupal\Tests\forum\Unit\Breadcrumb\ForumNodeBreadcrumbBuilderTest

@coversDefaultClass \Drupal\forum\Breadcrumb\ForumNodeBreadcrumbBuilder
@group forum @group legacy

Hierarchy

Expanded class hierarchy of ForumNodeBreadcrumbBuilderTest

File

core/modules/forum/tests/src/Unit/Breadcrumb/ForumNodeBreadcrumbBuilderTest.php, line 21

Namespace

Drupal\Tests\forum\Unit\Breadcrumb
View source
class ForumNodeBreadcrumbBuilderTest extends UnitTestCase {
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $cache_contexts_manager = $this->getMockBuilder('Drupal\\Core\\Cache\\Context\\CacheContextsManager')
      ->disableOriginalConstructor()
      ->getMock();
    $cache_contexts_manager->method('assertValidTokens')
      ->willReturn(TRUE);
    $container = new Container();
    $container->set('cache_contexts_manager', $cache_contexts_manager);
    \Drupal::setContainer($container);
  }
  
  /**
   * Tests ForumNodeBreadcrumbBuilder::applies().
   *
   * @param bool $expected
   *   ForumNodeBreadcrumbBuilder::applies() expected result.
   * @param string|null $route_name
   *   (optional) A route name.
   * @param array $parameter_map
   *   (optional) An array of parameter names and values.
   *
   * @dataProvider providerTestApplies
   * @covers ::applies
   */
  public function testApplies(bool $expected, ?string $route_name = NULL, array $parameter_map = []) : void {
    // Make some test doubles.
    $entity_type_manager = $this->createMock(EntityTypeManagerInterface::class);
    $config_factory = $this->getConfigFactoryStub([]);
    $map = [];
    if ($parameter_map) {
      foreach ($parameter_map as $parameter) {
        $map[] = [
          $parameter[0],
          $parameter[1] === TRUE ? $this->getMockBuilder(Node::class)
            ->disableOriginalConstructor()
            ->getMock() : $parameter[1],
        ];
      }
    }
    $forum_manager = $this->createMock('Drupal\\forum\\ForumManagerInterface');
    $forum_manager->expects($this->any())
      ->method('checkNodeType')
      ->willReturn(TRUE);
    $translation_manager = $this->createMock('Drupal\\Core\\StringTranslation\\TranslationInterface');
    // Make an object to test.
    $builder = new ForumNodeBreadcrumbBuilder($entity_type_manager, $config_factory, $forum_manager, $translation_manager);
    $route_match = $this->createMock('Drupal\\Core\\Routing\\RouteMatchInterface');
    $route_match->expects($this->once())
      ->method('getRouteName')
      ->willReturn($route_name);
    $route_match->expects($this->any())
      ->method('getParameter')
      ->willReturnMap($map);
    $this->assertEquals($expected, $builder->applies($route_match));
  }
  
  /**
   * Provides test data for testApplies().
   *
   * Note that this test is incomplete, because we can't mock NodeInterface.
   *
   * @return \Generator
   *   Datasets for testApplies(). Structured as such:
   *   - ForumNodeBreadcrumbBuilder::applies() expected result.
   *   - ForumNodeBreadcrumbBuilder::applies() $attributes input array.
   */
  public static function providerTestApplies() : \Generator {
    (yield [
      FALSE,
    ]);
    (yield [
      FALSE,
      'NOT.entity.node.canonical',
    ]);
    (yield [
      FALSE,
      'entity.node.canonical',
    ]);
    (yield [
      FALSE,
      'entity.node.canonical',
      [
        [
          'node',
          NULL,
        ],
      ],
    ]);
    (yield [
      TRUE,
      'entity.node.canonical',
      [
        [
          'node',
          TRUE,
        ],
      ],
    ]);
  }
  
  /**
   * Tests ForumNodeBreadcrumbBuilder::build().
   *
   * @see \Drupal\forum\ForumNodeBreadcrumbBuilder::build()
   * @covers ::build
   */
  public function testBuild() : void {
    // Build all our dependencies, backwards.
    $translation_manager = $this->getMockBuilder('Drupal\\Core\\StringTranslation\\TranslationInterface')
      ->disableOriginalConstructor()
      ->getMock();
    $prophecy = $this->prophesize('Drupal\\taxonomy\\Entity\\Term');
    $prophecy->label()
      ->willReturn('Something');
    $prophecy->id()
      ->willReturn(1);
    $prophecy->getCacheTags()
      ->willReturn([
      'taxonomy_term:1',
    ]);
    $prophecy->getCacheContexts()
      ->willReturn([]);
    $prophecy->getCacheMaxAge()
      ->willReturn(Cache::PERMANENT);
    $term1 = $prophecy->reveal();
    $prophecy = $this->prophesize('Drupal\\taxonomy\\Entity\\Term');
    $prophecy->label()
      ->willReturn('Something else');
    $prophecy->id()
      ->willReturn(2);
    $prophecy->getCacheTags()
      ->willReturn([
      'taxonomy_term:2',
    ]);
    $prophecy->getCacheContexts()
      ->willReturn([]);
    $prophecy->getCacheMaxAge()
      ->willReturn(Cache::PERMANENT);
    $term2 = $prophecy->reveal();
    $forum_manager = $this->getMockBuilder('Drupal\\forum\\ForumManagerInterface')
      ->disableOriginalConstructor()
      ->getMock();
    $term_storage = $this->getMockBuilder(TermStorageInterface::class)
      ->getMock();
    $term_storage->expects($this->exactly(2))
      ->method('loadAllParents')
      ->willReturnOnConsecutiveCalls([
      $term1,
    ], [
      $term1,
      $term2,
    ]);
    $prophecy = $this->prophesize('Drupal\\taxonomy\\VocabularyInterface');
    $prophecy->label()
      ->willReturn('Forums');
    $prophecy->id()
      ->willReturn(5);
    $prophecy->getCacheTags()
      ->willReturn([
      'taxonomy_vocabulary:5',
    ]);
    $prophecy->getCacheContexts()
      ->willReturn([]);
    $prophecy->getCacheMaxAge()
      ->willReturn(Cache::PERMANENT);
    $vocab_storage = $this->createMock('Drupal\\Core\\Entity\\EntityStorageInterface');
    $vocab_storage->expects($this->any())
      ->method('load')
      ->willReturnMap([
      [
        'forums',
        $prophecy->reveal(),
      ],
    ]);
    $entity_type_manager = $this->getMockBuilder(EntityTypeManagerInterface::class)
      ->disableOriginalConstructor()
      ->getMock();
    $entity_type_manager->expects($this->any())
      ->method('getStorage')
      ->willReturnMap([
      [
        'taxonomy_vocabulary',
        $vocab_storage,
      ],
      [
        'taxonomy_term',
        $term_storage,
      ],
    ]);
    $config_factory = $this->getConfigFactoryStub([
      'forum.settings' => [
        'vocabulary' => 'forums',
      ],
    ]);
    // Build a breadcrumb builder to test.
    $breadcrumb_builder = new ForumNodeBreadcrumbBuilder($entity_type_manager, $config_factory, $forum_manager, $translation_manager);
    // Add a translation manager for t().
    $translation_manager = $this->getStringTranslationStub();
    $breadcrumb_builder->setStringTranslation($translation_manager);
    // The forum node we need a breadcrumb back from.
    $forum_node = $this->getMockBuilder('Drupal\\node\\Entity\\Node')
      ->disableOriginalConstructor()
      ->getMock();
    // Our data set.
    $route_match = $this->createMock('Drupal\\Core\\Routing\\RouteMatchInterface');
    $route_match->expects($this->exactly(2))
      ->method('getParameter')
      ->with('node')
      ->willReturn($forum_node);
    // First test.
    $expected1 = [
      Link::createFromRoute('Home', '<front>'),
      Link::createFromRoute('Forums', 'forum.index'),
      Link::createFromRoute('Something', 'forum.page', [
        'taxonomy_term' => 1,
      ]),
    ];
    $breadcrumb = $breadcrumb_builder->build($route_match);
    $this->assertEquals($expected1, $breadcrumb->getLinks());
    $this->assertEqualsCanonicalizing([
      'route',
    ], $breadcrumb->getCacheContexts());
    $this->assertEqualsCanonicalizing([
      'taxonomy_term:1',
      'taxonomy_vocabulary:5',
    ], $breadcrumb->getCacheTags());
    $this->assertEquals(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
    // Second test.
    $expected2 = [
      Link::createFromRoute('Home', '<front>'),
      Link::createFromRoute('Forums', 'forum.index'),
      Link::createFromRoute('Something else', 'forum.page', [
        'taxonomy_term' => 2,
      ]),
      Link::createFromRoute('Something', 'forum.page', [
        'taxonomy_term' => 1,
      ]),
    ];
    $breadcrumb = $breadcrumb_builder->build($route_match);
    $this->assertEquals($expected2, $breadcrumb->getLinks());
    $this->assertEqualsCanonicalizing([
      'route',
    ], $breadcrumb->getCacheContexts());
    $this->assertEqualsCanonicalizing([
      'taxonomy_term:1',
      'taxonomy_term:2',
      'taxonomy_vocabulary:5',
    ], $breadcrumb->getCacheTags());
    $this->assertEquals(Cache::PERMANENT, $breadcrumb->getCacheMaxAge());
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
ForumNodeBreadcrumbBuilderTest::providerTestApplies public static function Provides test data for testApplies().
ForumNodeBreadcrumbBuilderTest::setUp protected function Overrides UnitTestCase::setUp
ForumNodeBreadcrumbBuilderTest::testApplies public function Tests ForumNodeBreadcrumbBuilder::applies().
ForumNodeBreadcrumbBuilderTest::testBuild public function Tests ForumNodeBreadcrumbBuilder::build().
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
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.
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
UnitTestCase::$root protected property The app root. 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::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.