Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Illuminate\Tests\Integration\Http; use Carbon\CarbonInterval; use Illumi..
Decoded Output download
<?php
namespace Illuminate\Tests\Integration\Http;
use Carbon\CarbonInterval;
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Route;
use Orchestra\Testbench\TestCase;
class RequestDurationThresholdTest extends TestCase
{
public function testItCanHandleExceedingRequestDuration()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1)->addMilliseconds(1));
$kernel->terminate($request, $response);
$this->assertTrue($called);
}
public function testItDoesntCallWhenExactlyThresholdDuration()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1));
$kernel->terminate($request, $response);
$this->assertFalse($called);
}
public function testItProvidesRequestToHandler()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$url = null;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function ($startedAt, $request) use (&$url) {
$url = $request->url();
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(2));
$kernel->terminate($request, $response);
$this->assertSame('http://localhost/test-route', $url);
}
public function testUsesTheConfiguredDateTimezone()
{
Config::set('app.timezone', 'UTC');
Route::get('test-route', fn () => 'ok');
$kernel = $this->app[Kernel::class];
$startedAt = null;
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function ($started) use (&$startedAt) {
$startedAt = $started;
});
Config::set('app.timezone', 'Australia/Melbourne');
Carbon::setTestNow(now()->startOfDay());
$kernel->handle($request = Request::create('http://localhost/test-route'));
Carbon::setTestNow(now()->addMinute());
$kernel->terminate($request, new Response);
$this->assertSame('Australia/Melbourne', $startedAt->timezone->getName());
}
public function testItCanExceedThresholdWhenSpecifyingDurationAsMilliseconds()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(1000, function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1)->addMilliseconds(1));
$kernel->terminate($request, $response);
$this->assertTrue($called);
}
public function testItCanStayUnderThresholdWhenSpecifyingDurationAsMilliseconds()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(1000, function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1));
$kernel->terminate($request, $response);
$this->assertFalse($called);
}
public function testItCanExceedThresholdWhenSpecifyingDurationAsDateTime()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(now()->addSeconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1)->addMilliseconds(1));
$kernel->terminate($request, $response);
$this->assertTrue($called);
}
public function testItCanStayUnderThresholdWhenSpecifyingDurationAsDateTime()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(now()->addSeconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1));
$kernel->terminate($request, $response);
$this->assertFalse($called);
}
public function testItClearsStartTimeAfterHandlingRequest()
{
$kernel = $this->app[Kernel::class];
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
Carbon::setTestNow(now());
$kernel->handle($request);
$this->assertTrue(Carbon::now()->eq($kernel->requestStartedAt()));
$kernel->terminate($request, $response);
$this->assertNull($kernel->requestStartedAt());
}
public function testItHandlesCallingTerminateWithoutHandle()
{
$this->app[Kernel::class]->terminate(Request::create('http://localhost/test-route'), new Response);
// this is a placeholder just to show that the above did not throw an exception.
$this->assertTrue(true);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Integration\Http;
use Carbon\CarbonInterval;
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\Route;
use Orchestra\Testbench\TestCase;
class RequestDurationThresholdTest extends TestCase
{
public function testItCanHandleExceedingRequestDuration()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1)->addMilliseconds(1));
$kernel->terminate($request, $response);
$this->assertTrue($called);
}
public function testItDoesntCallWhenExactlyThresholdDuration()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1));
$kernel->terminate($request, $response);
$this->assertFalse($called);
}
public function testItProvidesRequestToHandler()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$url = null;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function ($startedAt, $request) use (&$url) {
$url = $request->url();
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(2));
$kernel->terminate($request, $response);
$this->assertSame('http://localhost/test-route', $url);
}
public function testUsesTheConfiguredDateTimezone()
{
Config::set('app.timezone', 'UTC');
Route::get('test-route', fn () => 'ok');
$kernel = $this->app[Kernel::class];
$startedAt = null;
$kernel->whenRequestLifecycleIsLongerThan(CarbonInterval::seconds(1), function ($started) use (&$startedAt) {
$startedAt = $started;
});
Config::set('app.timezone', 'Australia/Melbourne');
Carbon::setTestNow(now()->startOfDay());
$kernel->handle($request = Request::create('http://localhost/test-route'));
Carbon::setTestNow(now()->addMinute());
$kernel->terminate($request, new Response);
$this->assertSame('Australia/Melbourne', $startedAt->timezone->getName());
}
public function testItCanExceedThresholdWhenSpecifyingDurationAsMilliseconds()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(1000, function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1)->addMilliseconds(1));
$kernel->terminate($request, $response);
$this->assertTrue($called);
}
public function testItCanStayUnderThresholdWhenSpecifyingDurationAsMilliseconds()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(1000, function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1));
$kernel->terminate($request, $response);
$this->assertFalse($called);
}
public function testItCanExceedThresholdWhenSpecifyingDurationAsDateTime()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(now()->addSeconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1)->addMilliseconds(1));
$kernel->terminate($request, $response);
$this->assertTrue($called);
}
public function testItCanStayUnderThresholdWhenSpecifyingDurationAsDateTime()
{
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
$called = false;
$kernel = $this->app[Kernel::class];
$kernel->whenRequestLifecycleIsLongerThan(now()->addSeconds(1), function () use (&$called) {
$called = true;
});
Carbon::setTestNow(now());
$kernel->handle($request);
Carbon::setTestNow(Carbon::now()->addSeconds(1));
$kernel->terminate($request, $response);
$this->assertFalse($called);
}
public function testItClearsStartTimeAfterHandlingRequest()
{
$kernel = $this->app[Kernel::class];
Route::get('test-route', fn () => 'ok');
$request = Request::create('http://localhost/test-route');
$response = new Response();
Carbon::setTestNow(now());
$kernel->handle($request);
$this->assertTrue(Carbon::now()->eq($kernel->requestStartedAt()));
$kernel->terminate($request, $response);
$this->assertNull($kernel->requestStartedAt());
}
public function testItHandlesCallingTerminateWithoutHandle()
{
$this->app[Kernel::class]->terminate(Request::create('http://localhost/test-route'), new Response);
// this is a placeholder just to show that the above did not throw an exception.
$this->assertTrue(true);
}
}
Function Calls
None |
Stats
MD5 | 8c212733a454e570b94378537f0dae29 |
Eval Count | 0 |
Decode Time | 102 ms |