Skip to content

Commit 8ea1fc9

Browse files
committed
Add test to cover the removal of repeated routes from controller inheritance
1 parent 05de167 commit 8ea1fc9

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

tests/Routing/RoutingAnnotationScannerTest.php

+13
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,19 @@ public function testPrefixAnnotation()
6868
$this->assertEquals(trim(file_get_contents(__DIR__.'/results/annotation-prefix.php')), $definition);
6969
}
7070

71+
public function testInheritedControllerAnnotations()
72+
{
73+
require_once __DIR__.'/fixtures/annotations/AnyController.php';
74+
require_once __DIR__.'/fixtures/annotations/ChildController.php';
75+
$scanner = $this->makeScanner([
76+
'App\Http\Controllers\AnyController',
77+
'App\Http\Controllers\ChildController'
78+
]);
79+
80+
$definition = str_replace(PHP_EOL, "\n", $scanner->getRouteDefinitions());
81+
$this->assertEquals(trim(file_get_contents(__DIR__.'/results/annotation-child.php')), $definition);
82+
}
83+
7184
/**
7285
* Construct a route annotation scanner.
7386
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace App\Http\Controllers;
4+
5+
class ChildController extends AnyController
6+
{
7+
/**
8+
* @Get("/child/{id}")
9+
*/
10+
public function childMethodAnnotations($id)
11+
{
12+
}
13+
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
$router->any('my-any-route', [
2+
'uses' => 'App\Http\Controllers\AnyController@anyAnnotations',
3+
'as' => NULL,
4+
'middleware' => [],
5+
'where' => [],
6+
'domain' => NULL,
7+
]);
8+
9+
$router->get('child/{id}', [
10+
'uses' => 'App\Http\Controllers\ChildController@childMethodAnnotations',
11+
'as' => NULL,
12+
'middleware' => [],
13+
'where' => [],
14+
'domain' => NULL,
15+
]);

0 commit comments

Comments
 (0)