Skip to content

Commit fa2ca3f

Browse files
committed
Add nested controller route grouping
1 parent 934b2a7 commit fa2ca3f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

tests/Feature/Recorders/SlowRequestsTest.php

+24
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,30 @@
488488
Pulse::ignore(fn () => expect(DB::table('pulse_values')->count())->toBe(0));
489489
});
490490

491+
it('handles controller nested route groups', function () {
492+
Config::set('pulse.recorders.'.SlowRequests::class.'.threshold', 0);
493+
494+
Route::controller(MyController::class)->group(function () {
495+
Route::get('index', 'index')->name('test')->withoutMiddleware('auth:admin');
496+
})->withoutMiddleware('auth');
497+
498+
$response = get('/index');
499+
Pulse::stopRecording();
500+
501+
$response->assertContent('ok');
502+
$entries = DB::table('pulse_entries')->get();
503+
expect($entries)->toHaveCount(1);
504+
expect($entries[0]->key)->toBe(json_encode(['GET', '/index', 'MyController@index']));
505+
});
506+
507+
class MyController
508+
{
509+
public function index()
510+
{
511+
return 'ok';
512+
}
513+
}
514+
491515
class ExceptionThrowingRecorder
492516
{
493517
public function register(callable $record, Application $app): void

0 commit comments

Comments
 (0)