class PathMatcherTest

Basic tests for the UrlMatcherDumper.

Hierarchy

Expanded class hierarchy of PathMatcherTest

File

drupal/core/modules/system/lib/Drupal/system/Tests/Routing/PathMatcherTest.php, line 25
Definition of Drupal\system\Tests\Routing\PartialMatcherTest.

Namespace

Drupal\system\Tests\Routing
View source
class PathMatcherTest extends UnitTestBase {

  /**
   * A collection of shared fixture data for tests.
   *
   * @var RoutingFixtures
   */
  protected $fixtures;
  public static function getInfo() {
    return array(
      'name' => 'Path matcher tests',
      'description' => 'Confirm that the path matching library is working correctly.',
      'group' => 'Routing',
    );
  }
  function __construct($test_id = NULL) {
    parent::__construct($test_id);
    $this->fixtures = new RoutingFixtures();
  }
  public function tearDown() {
    $this->fixtures
      ->dropTables(Database::getConnection());
    parent::tearDown();
  }

  /**
   * Confirms that the correct candidate outlines are generated.
   */
  public function testCandidateOutlines() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection);
    $parts = array(
      'node',
      '5',
      'edit',
    );
    $candidates = $matcher
      ->getCandidateOutlines($parts);
    $candidates = array_flip($candidates);
    $this
      ->assertTrue(count($candidates) == 4, 'Correct number of candidates found');
    $this
      ->assertTrue(array_key_exists('/node/5/edit', $candidates), 'First candidate found.');
    $this
      ->assertTrue(array_key_exists('/node/5/%', $candidates), 'Second candidate found.');
    $this
      ->assertTrue(array_key_exists('/node/%/edit', $candidates), 'Third candidate found.');
    $this
      ->assertTrue(array_key_exists('/node/%/%', $candidates), 'Fourth candidate found.');
  }

  /**
   * Confirms that we can find routes with the exact incoming path.
   */
  function testExactPathMatch() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($this->fixtures
      ->sampleRouteCollection());
    $dumper
      ->dump();
    $path = '/path/one';
    $request = Request::create($path, 'GET');
    $routes = $matcher
      ->matchRequestPartial($request);
    foreach ($routes as $route) {
      $this
        ->assertEqual($route
        ->getPattern(), $path, 'Found path has correct pattern');
    }
  }

  /**
   * Confirms that we can find routes whose pattern would match the request.
   */
  function testOutlinePathMatch() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($this->fixtures
      ->complexRouteCollection());
    $dumper
      ->dump();
    $path = '/path/1/one';
    $request = Request::create($path, 'GET');
    $routes = $matcher
      ->matchRequestPartial($request);

    // All of the matching paths have the correct pattern.
    foreach ($routes as $route) {
      $this
        ->assertEqual($route
        ->compile()
        ->getPatternOutline(), '/path/%/one', 'Found path has correct pattern');
    }
    $this
      ->assertEqual(count($routes
      ->all()), 2, 'The correct number of routes was found.');
    $this
      ->assertNotNull($routes
      ->get('route_a'), 'The first matching route was found.');
    $this
      ->assertNotNull($routes
      ->get('route_b'), 'The second matching route was not found.');
  }

  /**
   * Confirms that a trailing slash on the request doesn't result in a 404.
   */
  function testOutlinePathMatchTrailingSlash() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($this->fixtures
      ->complexRouteCollection());
    $dumper
      ->dump();
    $path = '/path/1/one/';
    $request = Request::create($path, 'GET');
    $routes = $matcher
      ->matchRequestPartial($request);

    // All of the matching paths have the correct pattern.
    foreach ($routes as $route) {
      $this
        ->assertEqual($route
        ->compile()
        ->getPatternOutline(), '/path/%/one', 'Found path has correct pattern');
    }
    $this
      ->assertEqual(count($routes
      ->all()), 2, 'The correct number of routes was found.');
    $this
      ->assertNotNull($routes
      ->get('route_a'), 'The first matching route was found.');
    $this
      ->assertNotNull($routes
      ->get('route_b'), 'The second matching route was not found.');
  }

  /**
   * Confirms that we can find routes whose pattern would match the request.
   */
  function testOutlinePathMatchDefaults() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $collection = new RouteCollection();
    $collection
      ->add('poink', new Route('/some/path/{value}', array(
      'value' => 'poink',
    )));
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($collection);
    $dumper
      ->dump();
    $path = '/some/path';
    $request = Request::create($path, 'GET');
    try {
      $routes = $matcher
        ->matchRequestPartial($request);

      // All of the matching paths have the correct pattern.
      foreach ($routes as $route) {
        $compiled = $route
          ->compile();
        $this
          ->assertEqual($route
          ->compile()
          ->getPatternOutline(), '/some/path', 'Found path has correct pattern');
      }
      $this
        ->assertEqual(count($routes
        ->all()), 1, 'The correct number of routes was found.');
      $this
        ->assertNotNull($routes
        ->get('poink'), 'The first matching route was found.');
    } catch (ResourceNotFoundException $e) {
      $this
        ->fail('No matching route found with default argument value.');
    }
  }

  /**
   * Confirms that we can find routes whose pattern would match the request.
   */
  function testOutlinePathMatchDefaultsCollision() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $collection = new RouteCollection();
    $collection
      ->add('poink', new Route('/some/path/{value}', array(
      'value' => 'poink',
    )));
    $collection
      ->add('narf', new Route('/some/path/here'));
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($collection);
    $dumper
      ->dump();
    $path = '/some/path';
    $request = Request::create($path, 'GET');
    try {
      $routes = $matcher
        ->matchRequestPartial($request);

      // All of the matching paths have the correct pattern.
      foreach ($routes as $route) {
        $compiled = $route
          ->compile();
        $this
          ->assertEqual($route
          ->compile()
          ->getPatternOutline(), '/some/path', 'Found path has correct pattern');
      }
      $this
        ->assertEqual(count($routes
        ->all()), 1, 'The correct number of routes was found.');
      $this
        ->assertNotNull($routes
        ->get('poink'), 'The first matching route was found.');
    } catch (ResourceNotFoundException $e) {
      $this
        ->fail('No matching route found with default argument value.');
    }
  }

  /**
   * Confirms that we can find routes whose pattern would match the request.
   */
  function testOutlinePathMatchDefaultsCollision2() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $collection = new RouteCollection();
    $collection
      ->add('poink', new Route('/some/path/{value}', array(
      'value' => 'poink',
    )));
    $collection
      ->add('narf', new Route('/some/path/here'));
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($collection);
    $dumper
      ->dump();
    $path = '/some/path/here';
    $request = Request::create($path, 'GET');
    try {
      $routes = $matcher
        ->matchRequestPartial($request);

      // All of the matching paths have the correct pattern.
      foreach ($routes as $route) {
        $this
          ->assertEqual($route
          ->compile()
          ->getPatternOutline(), '/some/path/here', 'Found path has correct pattern');
      }
      $this
        ->assertEqual(count($routes
        ->all()), 1, 'The correct number of routes was found.');
      $this
        ->assertNotNull($routes
        ->get('narf'), 'The first matching route was found.');
    } catch (ResourceNotFoundException $e) {
      $this
        ->fail('No matching route found with default argument value.');
    }
  }

  /**
   * Confirms that an exception is thrown when no matching path is found.
   */
  function testOutlinePathNoMatch() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($this->fixtures
      ->complexRouteCollection());
    $dumper
      ->dump();
    $path = '/no/such/path';
    $request = Request::create($path, 'GET');
    try {
      $routes = $matcher
        ->matchRequestPartial($request);
      $this
        ->fail(t('No exception was thrown.'));
    } catch (Exception $e) {
      $this
        ->assertTrue($e instanceof ResourceNotFoundException, 'The correct exception was thrown.');
    }
  }

  /**
   * Confirms that system_path attribute overrides request path.
   */
  function testSystemPathMatch() {
    $connection = Database::getConnection();
    $matcher = new PathMatcher($connection, 'test_routes');
    $this->fixtures
      ->createTables($connection);
    $dumper = new MatcherDumper($connection, 'test_routes');
    $dumper
      ->addRoutes($this->fixtures
      ->sampleRouteCollection());
    $dumper
      ->dump();
    $request = Request::create('/path/one', 'GET');
    $request->attributes
      ->set('system_path', 'path/two');
    $routes = $matcher
      ->matchRequestPartial($request);
    foreach ($routes as $route) {
      $this
        ->assertEqual($route
        ->getPattern(), '/path/two', 'Found path has correct pattern');
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PathMatcherTest::$fixtures protected property A collection of shared fixture data for tests.
PathMatcherTest::getInfo public static function
PathMatcherTest::tearDown public function Deletes created files, database tables, and reverts all environment changes. Overrides TestBase::tearDown
PathMatcherTest::testCandidateOutlines public function Confirms that the correct candidate outlines are generated.
PathMatcherTest::testExactPathMatch function Confirms that we can find routes with the exact incoming path.
PathMatcherTest::testOutlinePathMatch function Confirms that we can find routes whose pattern would match the request.
PathMatcherTest::testOutlinePathMatchDefaults function Confirms that we can find routes whose pattern would match the request.
PathMatcherTest::testOutlinePathMatchDefaultsCollision function Confirms that we can find routes whose pattern would match the request.
PathMatcherTest::testOutlinePathMatchDefaultsCollision2 function Confirms that we can find routes whose pattern would match the request.
PathMatcherTest::testOutlinePathMatchTrailingSlash function Confirms that a trailing slash on the request doesn't result in a 404.
PathMatcherTest::testOutlinePathNoMatch function Confirms that an exception is thrown when no matching path is found.
PathMatcherTest::testSystemPathMatch function Confirms that system_path attribute overrides request path.
PathMatcherTest::__construct function Constructor for UnitTestBase. Overrides UnitTestBase::__construct
TestBase::$assertions protected property Assertions thrown in that test case.
TestBase::$databasePrefix protected property The database prefix of this test run.
TestBase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
TestBase::$originalPrefix protected property The original database prefix when running inside Simpletest.
TestBase::$results public property Current results of this test case.
TestBase::$setup protected property Flag to indicate whether the test has been set up.
TestBase::$setupDatabasePrefix protected property
TestBase::$setupEnvironment protected property
TestBase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
TestBase::$testId protected property The test run ID.
TestBase::$timeLimit protected property Time limit for the test.
TestBase::$verbose protected property TRUE if verbose debugging is enabled.
TestBase::$verboseClassName protected property Safe class name for use in verbose output filenames.
TestBase::$verboseDirectory protected property Directory where verbose output files are put.
TestBase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
TestBase::$verboseId protected property Incrementing identifier for verbose output filenames.
TestBase::assert protected function Internal helper: stores the assert.
TestBase::assertEqual protected function Check to see if two values are equal.
TestBase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
TestBase::assertIdentical protected function Check to see if two values are identical.
TestBase::assertIdenticalObject protected function Checks to see if two objects are identical.
TestBase::assertNotEqual protected function Check to see if two values are not equal.
TestBase::assertNotIdentical protected function Check to see if two values are not identical.
TestBase::assertNotNull protected function Check to see if a value is not NULL.
TestBase::assertNull protected function Check to see if a value is NULL.
TestBase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
TestBase::changeDatabasePrefix protected function Changes the database connection to the prefixed one.
TestBase::checkRequirements protected function Checks the matching requirements for Test. 3
TestBase::deleteAssert public static function Delete an assertion record by message ID.
TestBase::error protected function Fire an error assertion. 1
TestBase::errorHandler public function Handle errors during test runs.
TestBase::exceptionHandler protected function Handle exceptions.
TestBase::fail protected function Fire an assertion that is always negative.
TestBase::filePreDeleteCallback public static function Ensures test files are deletable within file_unmanaged_delete_recursive().
TestBase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
TestBase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
TestBase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
TestBase::insertAssert public static function Store an assertion from outside the testing context.
TestBase::pass protected function Fire an assertion that is always positive.
TestBase::prepareDatabasePrefix protected function Generates a database prefix for running tests.
TestBase::prepareEnvironment protected function Prepares the current environment for running the test.
TestBase::randomName public static function Generates a random string containing letters and numbers.
TestBase::randomObject public static function Generates a random PHP object.
TestBase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
TestBase::rebuildContainer protected function Rebuild drupal_container().
TestBase::run public function Run all tests in this class.
TestBase::verbose protected function Logs verbose message in a text file.
UnitTestBase::$configDirectories protected property
UnitTestBase::setUp protected function Sets up unit test environment. 22