ControllerBaseTest.php

Same filename in this branch
  1. 10 core/tests/Drupal/KernelTests/Core/Controller/ControllerBaseTest.php
Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Controller/ControllerBaseTest.php
  2. 8.9.x core/tests/Drupal/Tests/Core/Controller/ControllerBaseTest.php
  3. 11.x core/tests/Drupal/KernelTests/Core/Controller/ControllerBaseTest.php
  4. 11.x core/tests/Drupal/Tests/Core/Controller/ControllerBaseTest.php

Namespace

Drupal\Tests\Core\Controller

File

core/tests/Drupal/Tests/Core/Controller/ControllerBaseTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Controller;

use Drupal\Tests\UnitTestCase;

/**
 * Tests that the base controller class.
 *
 * @group Controller
 */
class ControllerBaseTest extends UnitTestCase {
  
  /**
   * The tested controller base class.
   *
   * @var \Drupal\Core\Controller\ControllerBase|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $controllerBase;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->controllerBase = $this->getMockForAbstractClass('Drupal\\Core\\Controller\\ControllerBase');
  }
  
  /**
   * Tests the config method.
   */
  public function testGetConfig() : void {
    $config_factory = $this->getConfigFactoryStub([
      'config_name' => [
        'key' => 'value',
      ],
      'config_name2' => [
        'key2' => 'value2',
      ],
    ]);
    $container = $this->createMock('Symfony\\Component\\DependencyInjection\\ContainerInterface');
    $container->expects($this->once())
      ->method('get')
      ->with('config.factory')
      ->willReturn($config_factory);
    \Drupal::setContainer($container);
    $config_method = new \ReflectionMethod('Drupal\\Core\\Controller\\ControllerBase', 'config');
    // Call config twice to ensure that the container is just called once.
    $config = $config_method->invoke($this->controllerBase, 'config_name');
    $this->assertEquals('value', $config->get('key'));
    $config = $config_method->invoke($this->controllerBase, 'config_name2');
    $this->assertEquals('value2', $config->get('key2'));
  }

}

Classes

Title Deprecated Summary
ControllerBaseTest Tests that the base controller class.

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