Basic tests for the UrlMatcherDumper.
Expanded class hierarchy of PathMatcherTest
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');
    }
  }
}| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            PathMatcherTest:: | 
                  protected | property | A collection of shared fixture data for tests. | |
| 
            PathMatcherTest:: | 
                  public static | function | ||
| 
            PathMatcherTest:: | 
                  public | function | 
            Deletes created files, database tables, and reverts all environment changes. Overrides TestBase:: | 
                  |
| 
            PathMatcherTest:: | 
                  public | function | Confirms that the correct candidate outlines are generated. | |
| 
            PathMatcherTest:: | 
                  function | Confirms that we can find routes with the exact incoming path. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that we can find routes whose pattern would match the request. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that we can find routes whose pattern would match the request. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that we can find routes whose pattern would match the request. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that we can find routes whose pattern would match the request. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that a trailing slash on the request doesn't result in a 404. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that an exception is thrown when no matching path is found. | ||
| 
            PathMatcherTest:: | 
                  function | Confirms that system_path attribute overrides request path. | ||
| 
            PathMatcherTest:: | 
                  function | 
            Constructor for UnitTestBase. Overrides UnitTestBase:: | 
                  ||
| 
            TestBase:: | 
                  protected | property | Assertions thrown in that test case. | |
| 
            TestBase:: | 
                  protected | property | The database prefix of this test run. | |
| 
            TestBase:: | 
                  protected | property | The original file directory, before it was changed for testing purposes. | |
| 
            TestBase:: | 
                  protected | property | The original database prefix when running inside Simpletest. | |
| 
            TestBase:: | 
                  public | property | Current results of this test case. | |
| 
            TestBase:: | 
                  protected | property | Flag to indicate whether the test has been set up. | |
| 
            TestBase:: | 
                  protected | property | ||
| 
            TestBase:: | 
                  protected | property | ||
| 
            TestBase:: | 
                  protected | property | This class is skipped when looking for the source of an assertion. | |
| 
            TestBase:: | 
                  protected | property | The test run ID. | |
| 
            TestBase:: | 
                  protected | property | Time limit for the test. | |
| 
            TestBase:: | 
                  protected | property | TRUE if verbose debugging is enabled. | |
| 
            TestBase:: | 
                  protected | property | Safe class name for use in verbose output filenames. | |
| 
            TestBase:: | 
                  protected | property | Directory where verbose output files are put. | |
| 
            TestBase:: | 
                  protected | property | URL to the verbose output file directory. | |
| 
            TestBase:: | 
                  protected | property | Incrementing identifier for verbose output filenames. | |
| 
            TestBase:: | 
                  protected | function | Internal helper: stores the assert. | |
| 
            TestBase:: | 
                  protected | function | Check to see if two values are equal. | |
| 
            TestBase:: | 
                  protected | function | Check to see if a value is false (an empty string, 0, NULL, or FALSE). | |
| 
            TestBase:: | 
                  protected | function | Check to see if two values are identical. | |
| 
            TestBase:: | 
                  protected | function | Checks to see if two objects are identical. | |
| 
            TestBase:: | 
                  protected | function | Check to see if two values are not equal. | |
| 
            TestBase:: | 
                  protected | function | Check to see if two values are not identical. | |
| 
            TestBase:: | 
                  protected | function | Check to see if a value is not NULL. | |
| 
            TestBase:: | 
                  protected | function | Check to see if a value is NULL. | |
| 
            TestBase:: | 
                  protected | function | Check to see if a value is not false (not an empty string, 0, NULL, or FALSE). | |
| 
            TestBase:: | 
                  protected | function | Changes the database connection to the prefixed one. | |
| 
            TestBase:: | 
                  protected | function | Checks the matching requirements for Test. | 3 | 
| 
            TestBase:: | 
                  public static | function | Delete an assertion record by message ID. | |
| 
            TestBase:: | 
                  protected | function | Fire an error assertion. | 1 | 
| 
            TestBase:: | 
                  public | function | Handle errors during test runs. | |
| 
            TestBase:: | 
                  protected | function | Handle exceptions. | |
| 
            TestBase:: | 
                  protected | function | Fire an assertion that is always negative. | |
| 
            TestBase:: | 
                  public static | function | Ensures test files are deletable within file_unmanaged_delete_recursive(). | |
| 
            TestBase:: | 
                  public static | function | Converts a list of possible parameters into a stack of permutations. | |
| 
            TestBase:: | 
                  protected | function | Cycles through backtrace until the first non-assertion method is found. | |
| 
            TestBase:: | 
                  public static | function | Returns the database connection to the site running Simpletest. | |
| 
            TestBase:: | 
                  public static | function | Store an assertion from outside the testing context. | |
| 
            TestBase:: | 
                  protected | function | Fire an assertion that is always positive. | |
| 
            TestBase:: | 
                  protected | function | Generates a database prefix for running tests. | |
| 
            TestBase:: | 
                  protected | function | Prepares the current environment for running the test. | |
| 
            TestBase:: | 
                  public static | function | Generates a random string containing letters and numbers. | |
| 
            TestBase:: | 
                  public static | function | Generates a random PHP object. | |
| 
            TestBase:: | 
                  public static | function | Generates a random string of ASCII characters of codes 32 to 126. | |
| 
            TestBase:: | 
                  protected | function | Rebuild drupal_container(). | |
| 
            TestBase:: | 
                  public | function | Run all tests in this class. | |
| 
            TestBase:: | 
                  protected | function | Logs verbose message in a text file. | |
| 
            UnitTestBase:: | 
                  protected | property | ||
| 
            UnitTestBase:: | 
                  protected | function | Sets up unit test environment. | 22 |