class RouteProcessorManagerTest
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/RouteProcessor/RouteProcessorManagerTest.php \Drupal\Tests\Core\RouteProcessor\RouteProcessorManagerTest
- 8.9.x core/tests/Drupal/Tests/Core/RouteProcessor/RouteProcessorManagerTest.php \Drupal\Tests\Core\RouteProcessor\RouteProcessorManagerTest
- 10 core/tests/Drupal/Tests/Core/RouteProcessor/RouteProcessorManagerTest.php \Drupal\Tests\Core\RouteProcessor\RouteProcessorManagerTest
@coversDefaultClass \Drupal\Core\RouteProcessor\RouteProcessorManager @group RouteProcessor
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\RandomGeneratorTrait
- class \Drupal\Tests\Core\RouteProcessor\RouteProcessorManagerTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of RouteProcessorManagerTest
File
-
core/
tests/ Drupal/ Tests/ Core/ RouteProcessor/ RouteProcessorManagerTest.php, line 17
Namespace
Drupal\Tests\Core\RouteProcessorView source
class RouteProcessorManagerTest extends UnitTestCase {
/**
* The route processor manager.
*
* @var \Drupal\Core\RouteProcessor\RouteProcessorManager
*/
protected $processorManager;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->processorManager = new RouteProcessorManager();
}
/**
* Tests the Route process manager functionality.
*/
public function testRouteProcessorManager() : void {
$route = new Route('');
$parameters = [
'test' => 'test',
];
$route_name = 'test_name';
$processors = [
10 => $this->getMockProcessor($route_name, $route, $parameters),
5 => $this->getMockProcessor($route_name, $route, $parameters),
0 => $this->getMockProcessor($route_name, $route, $parameters),
];
// Add the processors in reverse order.
foreach ($processors as $priority => $processor) {
$this->processorManager
->addOutbound($processor, $priority);
}
$bubbleable_metadata = new BubbleableMetadata();
$this->processorManager
->processOutbound($route_name, $route, $parameters, $bubbleable_metadata);
// Default cacheability is: permanently cacheable, no cache tags/contexts.
$this->assertEquals((new BubbleableMetadata())->setCacheMaxAge(Cache::PERMANENT), $bubbleable_metadata);
}
/**
* Returns a mock Route processor object.
*
* @param string $route_name
* The route name.
* @param \Symfony\Component\Routing\Route $route
* The Route to use in mock with() expectation.
* @param array $parameters
* The parameters to use in mock with() expectation.
*
* @return \Drupal\Core\RouteProcessor\OutboundRouteProcessorInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected function getMockProcessor($route_name, $route, $parameters) {
$processor = $this->createMock('Drupal\\Core\\RouteProcessor\\OutboundRouteProcessorInterface');
$processor->expects($this->once())
->method('processOutbound')
->with($route_name, $route, $parameters);
return $processor;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title |
---|---|---|---|---|
ExpectDeprecationTrait::expectDeprecation | public | function | Adds an expected deprecation. | |
ExpectDeprecationTrait::getCallableName | private static | function | Returns a callable as a string suitable for inclusion in a message. | |
ExpectDeprecationTrait::setUpErrorHandler | public | function | Sets up the test error handler. | |
ExpectDeprecationTrait::tearDownErrorHandler | public | function | Tears down the test error handler. | |
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. | |
RouteProcessorManagerTest::$processorManager | protected | property | The route processor manager. | |
RouteProcessorManagerTest::getMockProcessor | protected | function | Returns a mock Route processor object. | |
RouteProcessorManagerTest::setUp | protected | function | Overrides UnitTestCase::setUp | |
RouteProcessorManagerTest::testRouteProcessorManager | public | function | Tests the Route process manager functionality. | |
UnitTestCase::$root | protected | property | The app root. | |
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 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.