class PathMatcherTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Path/PathMatcherTest.php \Drupal\Tests\Core\Path\PathMatcherTest
@coversDefaultClass \Drupal\Core\Path\PathMatcher @group Path
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Path\PathMatcherTest
Expanded class hierarchy of PathMatcherTest
File
- core/
tests/ Drupal/ Tests/ Core/ Path/ PathMatcherTest.php, line 17 - Contains \Drupal\Tests\Core\Path\PathMatcherTest.
Namespace
Drupal\Tests\Core\PathView source
class PathMatcherTest extends UnitTestCase {
/**
* The path matcher under test.
*
* @var \Drupal\Core\Path\PathMatcher
*/
protected $pathMatcher;
/**
* {@inheritdoc}
*/
protected function setUp() {
// Create a stub config factory with all config settings that will be
// checked during this test.
$config_factory_stub = $this
->getConfigFactoryStub(array(
'system.site' => array(
'page.front' => '/dummy',
),
));
$route_match = $this
->getMock('Drupal\\Core\\Routing\\RouteMatchInterface');
$this->pathMatcher = new PathMatcher($config_factory_stub, $route_match);
}
/**
* Test that standard paths works with multiple patterns.
*
* @dataProvider getMatchPathData
*/
public function testMatchPath($patterns, $paths) {
foreach ($paths as $path => $expected_result) {
$actual_result = $this->pathMatcher
->matchPath($path, $patterns);
$this
->assertEquals($actual_result, $expected_result, "Tried matching the path '{$path}' to the pattern '{$patterns}'.");
}
}
/**
* Provides test path data.
*
* @return array
* A nested array of pattern arrays and path arrays.
*/
public function getMatchPathData() {
return array(
array(
// Single absolute paths.
'/example/1',
array(
'/example/1' => TRUE,
'/example/2' => FALSE,
'/test' => FALSE,
),
),
array(
// Single paths with wildcards.
'/example/*',
array(
'/example/1' => TRUE,
'/example/2' => TRUE,
'/example/3/edit' => TRUE,
'/example/' => TRUE,
'/example' => FALSE,
'/test' => FALSE,
),
),
array(
// Single paths with multiple wildcards.
'/node/*/revisions/*',
array(
'/node/1/revisions/3' => TRUE,
'/node/345/revisions/test' => TRUE,
'/node/23/edit' => FALSE,
'/test' => FALSE,
),
),
array(
// Single paths with '<front>'.
"<front>",
array(
'/dummy' => TRUE,
"/dummy/" => FALSE,
"/dummy/edit" => FALSE,
'/node' => FALSE,
'' => FALSE,
),
),
array(
// Paths with both '<front>' and wildcards (should not work).
"<front>/*",
array(
'/dummy' => FALSE,
'/dummy/' => FALSE,
'/dummy/edit' => FALSE,
'/node/12' => FALSE,
'/' => FALSE,
),
),
array(
// Multiple paths with the \n delimiter.
"/node/*\n/node/*/edit",
array(
'/node/1' => TRUE,
'/node/view' => TRUE,
'/node/32/edit' => TRUE,
'/node/delete/edit' => TRUE,
'/node/50/delete' => TRUE,
'/test/example' => FALSE,
),
),
array(
// Multiple paths with the \r delimiter.
"/user/*\r/example/*",
array(
'/user/1' => TRUE,
'/example/1' => TRUE,
'/user/1/example/1' => TRUE,
'/user/example' => TRUE,
'/test/example' => FALSE,
'/user' => FALSE,
'/example' => FALSE,
),
),
array(
// Multiple paths with the \r\n delimiter.
"/test\r\n<front>",
array(
'/test' => TRUE,
'/dummy' => TRUE,
'/example' => FALSE,
),
),
array(
// Test existing regular expressions (should be escaped).
'[^/]+?/[0-9]',
array(
'/test/1' => FALSE,
'[^/]+?/[0-9]' => TRUE,
),
),
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PathMatcherTest:: |
protected | property | The path matcher under test. | |
PathMatcherTest:: |
public | function | Provides test path data. | |
PathMatcherTest:: |
protected | function |
Overrides UnitTestCase:: |
|
PathMatcherTest:: |
public | function | Test that standard paths works with multiple patterns. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in 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. |