Skip to content

Commit

Permalink
Merge branch '2.6' into 2.7
Browse files Browse the repository at this point in the history
* 2.6:
  [Form] NativeRequestHandler file handling fix
  [VarDumper] Workaround stringy numeric keys
  [HttpKernel] Throw double-bounce exceptions
  minor symfony#13377 [Console] Change greater by greater or equal for isFresh in FileResource
  [2.3] [HttpFoundation] fixed param order for Nginx's x-accel-redirect
  • Loading branch information
nicolas-grekas committed Feb 25, 2015
2 parents 2777e96 + c9da1ae commit 2b036ec
Show file tree
Hide file tree
Showing 15 changed files with 177 additions and 31 deletions.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Config/Resource/FileResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function isFresh($timestamp)
return false;
}

return filemtime($this->resource) < $timestamp;
return filemtime($this->resource) <= $timestamp;
}

public function serialize()
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Config/Tests/ConfigCacheTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private function makeCacheFresh()

private function makeCacheStale()
{
touch($this->cacheFile, time() - 3600);
touch($this->cacheFile, filemtime($this->resourceFile) - 3600);
}

private function generateMetaFile()
Expand Down
11 changes: 7 additions & 4 deletions src/Symfony/Component/Config/Tests/Resource/FileResourceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ class FileResourceTest extends \PHPUnit_Framework_TestCase
{
protected $resource;
protected $file;
protected $time;

protected function setUp()
{
$this->file = realpath(sys_get_temp_dir()).'/tmp.xml';
touch($this->file);
$this->time = time();
touch($this->file, $this->time);
$this->resource = new FileResource($this->file);
}

Expand All @@ -42,11 +44,12 @@ public function testToString()

public function testIsFresh()
{
$this->assertTrue($this->resource->isFresh(time() + 10), '->isFresh() returns true if the resource has not changed');
$this->assertFalse($this->resource->isFresh(time() - 86400), '->isFresh() returns false if the resource has been updated');
$this->assertTrue($this->resource->isFresh($this->time), '->isFresh() returns true if the resource has not changed in same second');
$this->assertTrue($this->resource->isFresh($this->time + 10), '->isFresh() returns true if the resource has not changed');
$this->assertFalse($this->resource->isFresh($this->time - 86400), '->isFresh() returns false if the resource has been updated');

$resource = new FileResource('/____foo/foobar'.rand(1, 999999));
$this->assertFalse($resource->isFresh(time()), '->isFresh() returns false if the resource does not exist');
$this->assertFalse($resource->isFresh($this->time), '->isFresh() returns false if the resource does not exist');
}

public function testSerializeUnserialize()
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/Form/NativeRequestHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ public function handleRequest(FormInterface $form, $request = null)
}

$fixedFiles = array();
foreach ($_FILES as $name => $file) {
$fixedFiles[$name] = self::stripEmptyFiles(self::fixPhpFilesArray($file));
foreach ($_FILES as $fileKey => $file) {
$fixedFiles[$fileKey] = self::stripEmptyFiles(self::fixPhpFilesArray($file));
}

if ('' === $name) {
Expand Down
46 changes: 45 additions & 1 deletion src/Symfony/Component/Form/Tests/AbstractRequestHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,50 @@ public function testSubmitFileIfNoParam($method)
$this->requestHandler->handleRequest($form, $this->request);
}

/**
* @dataProvider methodExceptGetProvider
*/
public function testSubmitMultipleFiles($method)
{
$form = $this->getMockForm('param1', $method);
$file = $this->getMockFile();

$this->setRequestData($method, array(
'param1' => null,
), array(
'param2' => $this->getMockFile('2'),
'param1' => $file,
'param3' => $this->getMockFile('3'),
));

$form->expects($this->once())
->method('submit')
->with($file, 'PATCH' !== $method);

$this->requestHandler->handleRequest($form, $this->request);
}

/**
* @dataProvider methodExceptGetProvider
*/
public function testSubmitFileWithNamelessForm($method)
{
$form = $this->getMockForm(null, $method);
$file = $this->getMockFile();

$this->setRequestData($method, array(
'' => null,
), array(
'' => $file,
));

$form->expects($this->once())
->method('submit')
->with($file, 'PATCH' !== $method);

$this->requestHandler->handleRequest($form, $this->request);
}

/**
* @dataProvider getPostMaxSizeFixtures
*/
Expand Down Expand Up @@ -314,7 +358,7 @@ abstract protected function setRequestData($method, $data, $files = array());

abstract protected function getRequestHandler();

abstract protected function getMockFile();
abstract protected function getMockFile($suffix = '');

protected function getMockForm($name, $method = null, $compound = true)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ protected function getRequestHandler()
return new HttpFoundationRequestHandler($this->serverParams);
}

protected function getMockFile()
protected function getMockFile($suffix = '')
{
return new UploadedFile(__DIR__.'/../../Fixtures/foo', 'foo');
return new UploadedFile(__DIR__.'/../../Fixtures/foo'.$suffix, 'foo'.$suffix);
}
}
Empty file.
Empty file.
6 changes: 3 additions & 3 deletions src/Symfony/Component/Form/Tests/NativeRequestHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,12 +206,12 @@ protected function getRequestHandler()
return new NativeRequestHandler($this->serverParams);
}

protected function getMockFile()
protected function getMockFile($suffix = '')
{
return array(
'name' => 'upload.txt',
'name' => 'upload'.$suffix.'.txt',
'type' => 'text/plain',
'tmp_name' => 'owfdskjasdfsa',
'tmp_name' => 'owfdskjasdfsa'.$suffix,
'error' => UPLOAD_ERR_OK,
'size' => 100,
);
Expand Down
5 changes: 3 additions & 2 deletions src/Symfony/Component/HttpFoundation/BinaryFileResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,13 @@ public function prepare(Request $request)
$path = $this->file->getRealPath();
if (strtolower($type) == 'x-accel-redirect') {
// Do X-Accel-Mapping substitutions.
// @link http://wiki.nginx.org/X-accel#X-Accel-Redirect
foreach (explode(',', $request->headers->get('X-Accel-Mapping', '')) as $mapping) {
$mapping = explode('=', $mapping, 2);

if (2 == count($mapping)) {
$location = trim($mapping[0]);
$pathPrefix = trim($mapping[1]);
$pathPrefix = trim($mapping[0]);
$location = trim($mapping[1]);

if (substr($path, 0, strlen($pathPrefix)) == $pathPrefix) {
$path = $location.substr($path, strlen($pathPrefix));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ public function testAcceptRangeNotOverriden()
public function getSampleXAccelMappings()
{
return array(
array('/var/www/var/www/files/foo.txt', '/files/=/var/www/', '/files/var/www/files/foo.txt'),
array('/home/foo/bar.txt', '/files/=/var/www/,/baz/=/home/foo/', '/baz/bar.txt'),
array('/var/www/var/www/files/foo.txt', '/var/www/=/files/', '/files/var/www/files/foo.txt'),
array('/home/foo/bar.txt', '/var/www/=/files/,/home/foo/=/baz/', '/baz/bar.txt'),
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ public function onKernelException(GetResponseForExceptionEvent $event)
try {
$response = $event->getKernel()->handle($request, HttpKernelInterface::SUB_REQUEST, true);
} catch (\Exception $e) {
$this->logException($exception, sprintf('Exception thrown when handling an exception (%s: %s)', get_class($e), $e->getMessage()), false);
$this->logException($e, sprintf('Exception thrown when handling an exception (%s: %s at %s line %s)', get_class($e), $e->getMessage(), $e->getFile(), $e->getLine()), false);

// set handling to false otherwise it wont be able to handle further more
$handling = false;

// re-throw the exception from within HttpKernel as this is a catch-all
return;
// throwing $e, not $exception, is on purpose: fixing error handling code paths is the most important
throw $e;
}

$event->setResponse($response);
Expand All @@ -81,7 +81,7 @@ public static function getSubscribedEvents()
/**
* Logs an exception.
*
* @param \Exception $exception The original \Exception instance
* @param \Exception $exception The \Exception instance
* @param string $message The error message to log
* @param bool $original False when the handling of the exception thrown another exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,9 @@ public function testHandleWithoutLogger($event, $event2)

try {
$l->onKernelException($event2);
} catch (\Exception $e) {
$this->assertSame('foo', $e->getMessage());
$this->fail('RuntimeException expected');
} catch (\RuntimeException $e) {
$this->assertSame('bar', $e->getMessage());
}
}

Expand All @@ -73,8 +74,9 @@ public function testHandleWithLogger($event, $event2)

try {
$l->onKernelException($event2);
} catch (\Exception $e) {
$this->assertSame('foo', $e->getMessage());
$this->fail('RuntimeException expected');
} catch (\RuntimeException $e) {
$this->assertSame('bar', $e->getMessage());
}

$this->assertEquals(3, $logger->countErrors());
Expand Down Expand Up @@ -137,6 +139,6 @@ class TestKernelThatThrowsException implements HttpKernelInterface
{
public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
{
throw new \Exception('bar');
throw new \RuntimeException('bar');
}
}
10 changes: 6 additions & 4 deletions src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,15 +199,17 @@ protected function castObject(Stub $stub, $isNested)
}

if ($classInfo[1]) {
$a = $this->callCaster(function ($obj) {return $obj->__debugInfo();}, $obj, array(), null, $isNested);
$p = $this->callCaster(function ($obj) {return $obj->__debugInfo();}, $obj, array(), null, $isNested);
} else {
$a = (array) $obj;
$p = (array) $obj;
}

foreach ($a as $k => $p) {
$a = array();
foreach ($p as $k => $p) {
if (!isset($k[0]) || ("\0" !== $k[0] && !$classInfo[2]->hasProperty($k))) {
unset($a[$k]);
$a["\0+\0".$k] = $p;
} else {
$a[$k] = $p;
}
}

Expand Down
94 changes: 94 additions & 0 deletions src/Symfony/Component/VarDumper/Tests/VarClonerTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\VarDumper\Tests;

use Symfony\Component\VarDumper\Cloner\VarCloner;

/**
* @author Nicolas Grekas <p@tchwork.com>
*/
class VarClonerTest extends \PHPUnit_Framework_TestCase
{
public function testClone()
{
$json = json_decode('{"1":{"var":"val"},"2":{"var":"val"}}');

$cloner = new VarCloner();
$clone = $cloner->cloneVar($json);

$expected = <<<EOTXT
Symfony\Component\VarDumper\Cloner\Data Object
(
[data:Symfony\Component\VarDumper\Cloner\Data:private] => Array
(
[0] => Array
(
[0] => Symfony\Component\VarDumper\Cloner\Stub Object
(
[type] => object
[class] => stdClass
[value] =>
[cut] => 0
[handle] => %d
[refCount] => 0
[position] => 1
)
)
[1] => Array
(
[\000+\0001] => Symfony\Component\VarDumper\Cloner\Stub Object
(
[type] => object
[class] => stdClass
[value] =>
[cut] => 0
[handle] => %d
[refCount] => 0
[position] => 2
)
[\000+\0002] => Symfony\Component\VarDumper\Cloner\Stub Object
(
[type] => object
[class] => stdClass
[value] =>
[cut] => 0
[handle] => %d
[refCount] => 0
[position] => 3
)
)
[2] => Array
(
[\000+\000var] => val
)
[3] => Array
(
[\000+\000var] => val
)
)
[maxDepth:Symfony\Component\VarDumper\Cloner\Data:private] => 20
[maxItemsPerDepth:Symfony\Component\VarDumper\Cloner\Data:private] => -1
[useRefHandles:Symfony\Component\VarDumper\Cloner\Data:private] => -1
)
EOTXT;
$this->assertStringMatchesFormat($expected, print_r($clone, true));
}
}

0 comments on commit 2b036ec

Please sign in to comment.