mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-06-05 01:15:36 +00:00
3a8775fa52
- ✅ Implemented handling for `CorruptComponentPayloadException` to prevent logging noise and improve exception management. - 🛠️ Added IP-based throttling (120 requests/min) for the `/livewire/update` endpoint with middleware integration for better traffic control. - ✅ Introduced unit tests to validate throttle settings and middleware application. - 🧪 Enhanced tests for ensuring silent handling of corrupt payload scenarios and reduced log noise.
28 lines
844 B
PHP
28 lines
844 B
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\RateLimiter;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
it('registers a generous Livewire update throttle keyed by IP', function () {
|
|
$limiter = RateLimiter::limiter('livewire');
|
|
|
|
expect($limiter)->not->toBeNull();
|
|
|
|
$request = Request::create('/livewire/update', 'POST');
|
|
$request->server->set('REMOTE_ADDR', '203.0.113.10');
|
|
|
|
$limit = $limiter($request);
|
|
|
|
expect($limit->maxAttempts)->toBe(120)
|
|
->and($limit->decaySeconds)->toBe(60)
|
|
->and($limit->key)->toBe('203.0.113.10');
|
|
});
|
|
|
|
it('applies the livewire throttle middleware to the update route', function () {
|
|
$route = Route::getRoutes()->getByName('livewire.update');
|
|
|
|
expect($route)->not->toBeNull()
|
|
->and($route->gatherMiddleware())->toContain('throttle:livewire');
|
|
});
|