Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[HttpKernel] Fix setting the session on the main request when it's started by a subrequest #49265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[HttpKernel] Fix setting the session on the main request when it's st…
…arted by a subrequest
  • Loading branch information
nicolas-grekas committed Feb 6, 2023
commit 0fc6721473aff72b1b36102ffc587097a707b57a
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public function onKernelRequest(RequestEvent $event)
$request->setSessionFactory(function () use (&$sess, $request) {
if (!$sess) {
$sess = $this->getSession();
$request->setSession($sess);

/*
* For supporting sessions in php runtime with runners like roadrunner or swoole, the session
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,27 @@ public function testGetSessionIsCalledOnce()
$subRequest->getSession();
}

public function testGetSessionSetsSessionOnMainRequest()
{
$mainRequest = new Request();
$listener = $this->createListener($mainRequest, new NativeSessionStorageFactory());

$event = new RequestEvent($this->createMock(HttpKernelInterface::class), $mainRequest, HttpKernelInterface::MAIN_REQUEST);
$listener->onKernelRequest($event);

$this->assertFalse($mainRequest->hasSession(true));

$subRequest = $mainRequest->duplicate();

$event = new RequestEvent($this->createMock(HttpKernelInterface::class), $subRequest, HttpKernelInterface::SUB_REQUEST);
$listener->onKernelRequest($event);

$session = $subRequest->getSession();

$this->assertTrue($mainRequest->hasSession(true));
$this->assertSame($session, $mainRequest->getSession());
}

public function testSessionUsageExceptionIfStatelessAndSessionUsed()
{
$session = $this->createMock(Session::class);
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.