You are here

class ParamConversionEnhancerTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Enhancer/ParamConversionEnhancerTest.php \Drupal\Tests\Core\Enhancer\ParamConversionEnhancerTest
  2. 10 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 16

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() {
    parent::setUp();
    $this->paramConverterManager = $this
      ->createMock('Drupal\\Core\\ParamConverter\\ParamConverterManagerInterface');
    $this->paramConversionEnhancer = new ParamConversionEnhancer($this->paramConverterManager);
  }

  /**
   * @covers ::enhance
   */
  public function testEnhance() {
    $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 ParameterBag($raw_variables);
    $this->paramConverterManager
      ->expects($this
      ->once())
      ->method('convert')
      ->with($this
      ->isType('array'))
      ->will($this
      ->returnValue($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() {
    $route = new Route('/test/{id}');
    $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'))
      ->will($this
      ->returnCallback(function ($defaults) {

      // Convert the mirrored default to another value.
      $defaults['bar'] = '2';
      return $defaults;
    }));
    $expected = new ParameterBag([
      'id' => 1,
    ]);
    $result = $this->paramConversionEnhancer
      ->enhance($defaults, new Request());
    $this
      ->assertEquals($result['_raw_variables'], $expected);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ParamConversionEnhancerTest::$paramConversionEnhancer protected property
ParamConversionEnhancerTest::$paramConverterManager protected property
ParamConversionEnhancerTest::setUp protected function Overrides UnitTestCase::setUp
ParamConversionEnhancerTest::testCopyRawVariables public function @covers ::copyRawVariables
ParamConversionEnhancerTest::testEnhance public function @covers ::enhance
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.