1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<?php
namespace Illuminate\Tests\Integration\Session;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Str;
use Orchestra\Testbench\TestCase;
class CookieSessionHandlerTest extends TestCase
{
public function testCookieSessionDriverCookiesCanExpireOnClose()
{
Route::get('/', fn () => '')->middleware('web');
$response = $this->get('/');
$sessionIdCookie = $response->getCookie('laravel_session');
$sessionValueCookie = $response->getCookie($sessionIdCookie->getValue());
$this->assertEquals(0, $sessionIdCookie->getExpiresTime());
$this->assertEquals(0, $sessionValueCookie->getExpiresTime());
}
protected function defineEnvironment($app)
{
$app['config']->set('app.key', Str::random(32));
$app['config']->set('session.driver', 'cookie');
$app['config']->set('session.expire_on_close', true);
}
}
|