Skip to content

Fix support for PHP 7.2 #23711

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 2 commits into from
Oct 10, 2017
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
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ matrix:
- php: 5.5
- php: 5.6
- php: 7.0
env: deps=high
- php: 7.1
env: deps=high
- php: 7.2
env: deps=low
fast_finish: true

Expand Down
3 changes: 3 additions & 0 deletions src/Symfony/Bridge/Twig/Tests/AppVariableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ public function testEnvironment()
$this->assertEquals('dev', $this->appVariable->getEnvironment());
}

/**
* @runInSeparateProcess
*/
public function testGetSession()
{
$request = $this->getMockBuilder('Symfony\Component\HttpFoundation\Request')->getMock();
Expand Down
1 change: 1 addition & 0 deletions src/Symfony/Bridge/Twig/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"symfony/asset": "~2.7",
"symfony/finder": "~2.3",
"symfony/form": "~2.7.30|^2.8.23",
"symfony/http-foundation": "~2.7.36|^2.8.29",
"symfony/http-kernel": "~2.3",
"symfony/intl": "~2.3",
"symfony/routing": "~2.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testCacheIsFreshAfterCacheClearedWithWarmup()
$finder = new Finder();
$metaFiles = $finder->files()->in($this->kernel->getCacheDir())->name('*.php.meta');
// simply check that cache is warmed up
$this->assertGreaterThanOrEqual(1, count($metaFiles));
$this->assertNotEmpty($metaFiles);
foreach ($metaFiles as $file) {
$configCache = new ConfigCache(substr($file, 0, -5), true);
$this->assertTrue(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ public function testRedirectToRoute()
$this->assertSame(302, $response->getStatusCode());
}

/**
* @runInSeparateProcess
*/
public function testAddFlash()
{
$flashBag = new FlashBag();
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/FrameworkBundle/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"symfony/config": "~2.4",
"symfony/event-dispatcher": "~2.5",
"symfony/finder": "^2.0.5",
"symfony/http-foundation": "~2.7",
"symfony/http-foundation": "~2.7.36|^2.8.29",
"symfony/http-kernel": "~2.7.29|^2.8.22",
"symfony/filesystem": "~2.3",
"symfony/routing": "~2.7.24|^2.8.17",
Expand Down
4 changes: 3 additions & 1 deletion src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ public function testNotice()
$this->assertEquals(E_NOTICE, $exception->getSeverity());
$this->assertEquals(__FILE__, $exception->getFile());
$this->assertRegExp('/^Notice: Undefined variable: (foo|bar)/', $exception->getMessage());
$this->assertArrayHasKey('foobar', $exception->getContext());
if (\PHP_VERSION_ID < 70200) {
$this->assertArrayHasKey('foobar', $exception->getContext());
}

$trace = $exception->getTrace();
$this->assertEquals(__FILE__, $trace[0]['file']);
Expand Down
4 changes: 3 additions & 1 deletion src/Symfony/Component/Debug/Tests/Fixtures/Throwing.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<?php

throw new \Exception('boo');
if (!function_exists('__phpunit_run_isolated_test')) {
throw new \Exception('boo');
}
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,9 @@ public function testExtensionInPhar()
if (extension_loaded('suhosin') && false === strpos(ini_get('suhosin.executor.include.whitelist'), 'phar')) {
$this->markTestSkipped('To run this test, add "phar" to the "suhosin.executor.include.whitelist" settings in your php.ini file.');
}
if (defined('HHVM_VERSION')) {
$this->markTestSkipped('HHVM makes this test conflict with those run in separate processes.');
}

require_once self::$fixturesPath.'/includes/ProjectWithXsdExtensionInPhar.phar';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ class LegacyDefaultCsrfProviderTest extends TestCase
{
protected $provider;

public static function setUpBeforeClass()
{
ini_set('session.save_handler', 'files');
ini_set('session.save_path', sys_get_temp_dir());
}

protected function setUp()
{
$this->provider = new DefaultCsrfProvider('SECRET');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,11 @@ class NativeSessionStorage implements SessionStorageInterface
*/
public function __construct(array $options = array(), $handler = null, MetadataBag $metaBag = null)
{
session_cache_limiter(''); // disable by default because it's managed by HeaderBag (if used)
ini_set('session.use_cookies', 1);
$options += array(
// disable by default because it's managed by HeaderBag (if used)
'cache_limiter' => '',
'use_cookies' => 1,
);

if (\PHP_VERSION_ID >= 50400) {
session_register_shutdown();
Expand Down Expand Up @@ -208,6 +211,10 @@ public function regenerate($destroy = false, $lifetime = null)
return false;
}

if (headers_sent()) {
return false;
}

if (null !== $lifetime) {
ini_set('session.cookie_lifetime', $lifetime);
}
Expand Down Expand Up @@ -332,6 +339,10 @@ public function isStarted()
*/
public function setOptions(array $options)
{
if (headers_sent()) {
return;
}

$validOptions = array_flip(array(
'cache_limiter', 'cookie_domain', 'cookie_httponly',
'cookie_lifetime', 'cookie_path', 'cookie_secure',
Expand Down Expand Up @@ -383,6 +394,10 @@ public function setSaveHandler($saveHandler = null)
throw new \InvalidArgumentException('Must be instance of AbstractProxy or NativeSessionHandler; implement \SessionHandlerInterface; or be null.');
}

if (headers_sent($file, $line)) {
throw new \RuntimeException(sprintf('Failed to set the session handler because headers have already been sent by "%s" at line %d.', $file, $line));
Copy link
Contributor

@sroze sroze Nov 13, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Simperfit @nicolas-grekas why do we throw in here while we return in the other cases? This definitely smells BC break 🤔

}

// Wrap $saveHandler in proxy and prevent double wrapping of proxy
if (!$saveHandler instanceof AbstractProxy && $saveHandler instanceof \SessionHandlerInterface) {
$saveHandler = new SessionHandlerProxy($saveHandler);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@ public function testSessionDestroy()
$this->assertSame('', $data, 'Destroyed session returns empty string');
}

/**
* @runInSeparateProcess
*/
public function testSessionGC()
{
$previousLifeTime = ini_set('session.gc_maxlifetime', 1000);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ public function testDefaultLocaleWithoutSession()
public function testLocaleFromRequestAttribute()
{
$request = Request::create('/');
session_name('foo');
$request->cookies->set('foo', 'value');
$request->cookies->set(session_name(), 'value');

$request->attributes->set('_locale', 'es');
$listener = new LocaleListener('fr', null, $this->requestStack);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ public function testDoesNotDeleteCookieIfUsingSessionLifetime()
{
$this->sessionHasBeenStarted();

$params = session_get_cookie_params();
session_set_cookie_params(0, $params['path'], $params['domain'], $params['secure'], $params['httponly']);
@ini_set('session.cookie_lifetime', 0);

$response = $this->filterResponse(new Request(), HttpKernelInterface::MASTER_REQUEST);
$cookies = $response->headers->getCookies();
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpKernel/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": ">=5.3.9",
"symfony/event-dispatcher": "^2.6.7",
"symfony/http-foundation": "~2.7.20|^2.8.13",
"symfony/http-foundation": "~2.7.36|^2.8.29",
"symfony/debug": "^2.6.2",
"psr/log": "~1.0"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?php

if (function_exists('__phpunit_run_isolated_test')) {
return;
}
/** @var $loader \Symfony\Component\Routing\Loader\PhpFileLoader */
/** @var \Symfony\Component\Routing\RouteCollection $collection */
$collection = $loader->import('validpattern.php');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,6 @@ class NativeSessionTokenStorageTest extends TestCase
*/
private $storage;

public static function setUpBeforeClass()
{
ini_set('session.save_handler', 'files');
ini_set('session.save_path', sys_get_temp_dir());

parent::setUpBeforeClass();
}

protected function setUp()
{
$_SESSION = array();
Expand Down