<?php
namespace Drupal\system\Tests\Path;
use Drupal\simpletest\WebTestBase;
class MatchPathTest extends WebTestBase {
protected $front;
public static function getInfo() {
return array(
'name' => 'Drupal match path',
'description' => 'Tests the drupal_match_path() function to make sure it works properly.',
'group' => 'Path API',
);
}
function setUp() {
parent::setUp();
$this->front = $this
->randomName();
config('system.site')
->set('page.front', $this->front)
->save();
$this
->refreshVariables();
}
function testDrupalMatchPath() {
$tests = $this
->drupalMatchPathTests();
foreach ($tests as $patterns => $cases) {
foreach ($cases as $path => $expected_result) {
$actual_result = drupal_match_path($path, $patterns);
$this
->assertIdentical($actual_result, $expected_result, format_string('Tried matching the path <code>@path</code> to the pattern <pre>@patterns</pre> - expected @expected, got @actual.', array(
'@path' => $path,
'@patterns' => $patterns,
'@expected' => var_export($expected_result, TRUE),
'@actual' => var_export($actual_result, TRUE),
)));
}
}
}
private function drupalMatchPathTests() {
return array(
'example/1' => array(
'example/1' => TRUE,
'example/2' => FALSE,
'test' => FALSE,
),
'example/*' => array(
'example/1' => TRUE,
'example/2' => TRUE,
'example/3/edit' => TRUE,
'example/' => TRUE,
'example' => FALSE,
'test' => FALSE,
),
'node/*/revisions/*' => array(
'node/1/revisions/3' => TRUE,
'node/345/revisions/test' => TRUE,
'node/23/edit' => FALSE,
'test' => FALSE,
),
'<front>' => array(
$this->front => TRUE,
"{$this->front}/" => FALSE,
"{$this->front}/edit" => FALSE,
'node' => FALSE,
'' => FALSE,
),
'<front>/*' => array(
$this->front => FALSE,
"{$this->front}/" => FALSE,
"{$this->front}/edit" => FALSE,
'node/12' => FALSE,
'' => FALSE,
),
"node/*\nnode/*/edit" => array(
'node/1' => TRUE,
'node/view' => TRUE,
'node/32/edit' => TRUE,
'node/delete/edit' => TRUE,
'node/50/delete' => TRUE,
'test/example' => FALSE,
),
"user/*\rexample/*" => array(
'user/1' => TRUE,
'example/1' => TRUE,
'user/1/example/1' => TRUE,
'user/example' => TRUE,
'test/example' => FALSE,
'user' => FALSE,
'example' => FALSE,
),
"test\r\n<front>" => array(
'test' => TRUE,
$this->front => TRUE,
'example' => FALSE,
),
'[^/]+?/[0-9]' => array(
'test/1' => FALSE,
'[^/]+?/[0-9]' => TRUE,
),
);
}
}