class ParamConversionEnhancerTest

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest
  2. 8.9.x core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest
  3. 11.x core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest

@coversDefaultClass \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer
@group Enhancer

Hierarchy

Expanded class hierarchy of ParamConversionEnhancerTest

File

core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php, line 18

Namespace

Drupal\Tests\Core\Enhancer
View source
class ParamConversionEnhancerTest extends UnitTestCase {
  
  /**
   * @var \Drupal\Core\Routing\Enhancer\ParamConversionEnhancer
   */
  protected $paramConversionEnhancer;
  
  /**
   * @var \Drupal\Core\ParamConverter\ParamConverterManagerInterface|\PHPUnit\Framework\MockObject\MockObject
   */
  protected $paramConverterManager;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->paramConverterManager = $this->createMock('Drupal\\Core\\ParamConverter\\ParamConverterManagerInterface');
    $this->paramConversionEnhancer = new ParamConversionEnhancer($this->paramConverterManager);
  }
  
  /**
   * @covers ::enhance
   */
  public function testEnhance() : void {
    $route = new Route('/test/{id}/{literal}/{null}');
    $raw_variables = [
      'id' => 1,
      'literal' => 'this is a literal',
      'null' => NULL,
    ];
    $defaults = [
      RouteObjectInterface::ROUTE_OBJECT => $route,
    ] + $raw_variables;
    $expected = $defaults;
    $expected['id'] = 'something_better!';
    $expected['_raw_variables'] = new InputBag($raw_variables);
    $this->paramConverterManager
      ->expects($this->once())
      ->method('convert')
      ->with($this->isType('array'))
      ->willReturn($expected);
    $result = $this->paramConversionEnhancer
      ->enhance($defaults, new Request());
    $this->assertEquals($expected, $result);
    // Now run with the results as the new defaults to ensure that the
    // conversion is just run once.
    $result = $this->paramConversionEnhancer
      ->enhance($result, new Request());
    $this->assertEquals($expected, $result);
  }
  
  /**
   * @covers ::copyRawVariables
   */
  public function testCopyRawVariables() : void {
    $route = new Route('/test/{id}');
    $route->setDefault('node_type', 'page');
    $defaults = [
      RouteObjectInterface::ROUTE_OBJECT => $route,
      'id' => '1',
    ];
    // Set one default to mirror another by reference.
    $defaults['bar'] =& $defaults['id'];
    $this->paramConverterManager
      ->expects($this->any())
      ->method('convert')
      ->with($this->isType('array'))
      ->willReturnCallback(function ($defaults) {
      // Convert the mirrored default to another value.
      $defaults['bar'] = '2';
      return $defaults;
    });
    $expected = new InputBag([
      'id' => '1',
      'node_type' => 'page',
    ]);
    $result = $this->paramConversionEnhancer
      ->enhance($defaults, new Request());
    $this->assertEquals($result['_raw_variables'], $expected);
  }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
ParamConversionEnhancerTest::$paramConversionEnhancer protected property
ParamConversionEnhancerTest::$paramConverterManager protected property
ParamConversionEnhancerTest::setUp protected function Overrides UnitTestCase::setUp
ParamConversionEnhancerTest::testCopyRawVariables public function @covers ::copyRawVariables[[api-linebreak]]
ParamConversionEnhancerTest::testEnhance public function @covers ::enhance[[api-linebreak]]
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.