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.');
}
}