class PathProcessorFrontTest in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/PathProcessor/PathProcessorFrontTest.php \Drupal\Tests\Core\PathProcessor\PathProcessorFrontTest
- 10 core/tests/Drupal/Tests/Core/PathProcessor/PathProcessorFrontTest.php \Drupal\Tests\Core\PathProcessor\PathProcessorFrontTest
Test front page path processing.
@group PathProcessor @coversDefaultClass \Drupal\Core\PathProcessor\PathProcessorFront
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\Core\PathProcessor\PathProcessorFrontTest
Expanded class hierarchy of PathProcessorFrontTest
File
- core/
tests/ Drupal/ Tests/ Core/ PathProcessor/ PathProcessorFrontTest.php, line 18
Namespace
Drupal\Tests\Core\PathProcessorView source
class PathProcessorFrontTest extends UnitTestCase {
/**
* Test basic inbound processing functionality.
*
* @covers ::processInbound
* @dataProvider providerProcessInbound
*/
public function testProcessInbound($frontpage_path, $path, $expected, array $expected_query = []) {
$config_factory = $this
->prophesize(ConfigFactoryInterface::class);
$config = $this
->prophesize(ImmutableConfig::class);
$config_factory
->get('system.site')
->willReturn($config
->reveal());
$config
->get('page.front')
->willReturn($frontpage_path);
$processor = new PathProcessorFront($config_factory
->reveal());
$request = new Request();
$this
->assertEquals($expected, $processor
->processInbound($path, $request));
$this
->assertEquals($expected_query, $request->query
->all());
}
/**
* Inbound paths and expected results.
*/
public function providerProcessInbound() {
return [
'accessing frontpage' => [
'/node',
'/',
'/node',
],
'accessing non frontpage' => [
'/node',
'/user',
'/user',
],
'accessing frontpage with query parameters' => [
'/node?example=muh',
'/',
'/node',
[
'example' => 'muh',
],
],
];
}
/**
* Test inbound failure with broken config.
*
* @covers ::processInbound
*/
public function testProcessInboundBadConfig() {
$config_factory = $this
->prophesize(ConfigFactoryInterface::class);
$config = $this
->prophesize(ImmutableConfig::class);
$config_factory
->get('system.site')
->willReturn($config
->reveal());
$config
->get('page.front')
->willReturn('');
$processor = new PathProcessorFront($config_factory
->reveal());
$this
->expectException(NotFoundHttpException::class);
$processor
->processInbound('/', new Request());
}
/**
* Test basic outbound processing functionality.
*
* @covers ::processOutbound
* @dataProvider providerProcessOutbound
*/
public function testProcessOutbound($path, $expected) {
$config_factory = $this
->prophesize(ConfigFactoryInterface::class);
$processor = new PathProcessorFront($config_factory
->reveal());
$this
->assertEquals($expected, $processor
->processOutbound($path));
}
/**
* Outbound paths and expected results.
*/
public function providerProcessOutbound() {
return [
[
'/<front>',
'/',
],
[
'<front>',
'<front>',
],
[
'/user',
'/user',
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PathProcessorFrontTest:: |
public | function | Inbound paths and expected results. | |
PathProcessorFrontTest:: |
public | function | Outbound paths and expected results. | |
PathProcessorFrontTest:: |
public | function | Test basic inbound processing functionality. | |
PathProcessorFrontTest:: |
public | function | Test inbound failure with broken config. | |
PathProcessorFrontTest:: |
public | function | Test basic outbound processing functionality. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |