Merge branch '2.8' into 3.2

* 2.8:
  [Console] Fix too strict test
  [FrameworkBundle] Execute the PhpDocExtractor earlier
  [validator] Updated croatian translation
  ignore invalid cookies expires date format
  [TwigBundle] Fix the name of the cache warming test class
  [Console] Fix TableCell issues with decoration
  Add missing pieces in the upgrade guide to 3.0
This commit is contained in:
Nicolas Grekas 2017-01-31 22:49:23 +01:00
commit 5b9e75e4a0
10 changed files with 125 additions and 19 deletions

View File

@ -1907,3 +1907,9 @@ UPGRADE FROM 2.x to 3.0
```php ```php
$request->query->get('foo')['bar']; $request->query->get('foo')['bar'];
``` ```
### Monolog Bridge
* `Symfony\Bridge\Monolog\Logger::emerg()` was removed. Use `emergency()` which is PSR-3 compatible.
* `Symfony\Bridge\Monolog\Logger::crit()` was removed. Use `critical()` which is PSR-3 compatible.
* `Symfony\Bridge\Monolog\Logger::err()` was removed. Use `error()` which is PSR-3 compatible.
* `Symfony\Bridge\Monolog\Logger::warn()` was removed. Use `warning()` which is PSR-3 compatible.

View File

@ -15,7 +15,7 @@
<!-- Extractor --> <!-- Extractor -->
<service id="property_info.reflection_extractor" class="Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor" public="false"> <service id="property_info.reflection_extractor" class="Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor" public="false">
<tag name="property_info.list_extractor" priority="-1000" /> <tag name="property_info.list_extractor" priority="-1000" />
<tag name="property_info.type_extractor" priority="-1000" /> <tag name="property_info.type_extractor" priority="-1002" />
<tag name="property_info.access_extractor" priority="-1000" /> <tag name="property_info.access_extractor" priority="-1000" />
</service> </service>
</services> </services>

View File

@ -0,0 +1,35 @@
<?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\Bundle\FrameworkBundle\Tests\Functional;
use Symfony\Component\PropertyInfo\Type;
class PropertyInfoTest extends WebTestCase
{
public function testPhpDocPriority()
{
static::bootKernel(array('test_case' => 'Serializer'));
$container = static::$kernel->getContainer();
$this->assertEquals(array(new Type(Type::BUILTIN_TYPE_ARRAY, false, null, true, new Type(Type::BUILTIN_TYPE_INT), new Type(Type::BUILTIN_TYPE_INT))), $container->get('property_info')->getTypes(Dummy::class, 'codes'));
}
}
class Dummy
{
/**
* @param int[] $codes
*/
public function setCodes(array $codes)
{
}
}

View File

@ -17,7 +17,7 @@ use Symfony\Component\Filesystem\Filesystem;
use Symfony\Bundle\FrameworkBundle\FrameworkBundle; use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\TwigBundle\TwigBundle; use Symfony\Bundle\TwigBundle\TwigBundle;
class NewCacheWamingTest extends \PHPUnit_Framework_TestCase class CacheWarmingTest extends \PHPUnit_Framework_TestCase
{ {
public function testCacheIsProperlyWarmedWhenTemplatingIsAvailable() public function testCacheIsProperlyWarmedWhenTemplatingIsAvailable()
{ {

View File

@ -213,8 +213,6 @@ class Cookie
if (false !== $date = date_create($dateValue, new \DateTimeZone('GMT'))) { if (false !== $date = date_create($dateValue, new \DateTimeZone('GMT'))) {
return $date->format('U'); return $date->format('U');
} }
throw new \InvalidArgumentException(sprintf('Could not parse date "%s".', $dateValue));
} }
/** /**

View File

@ -88,10 +88,11 @@ class CookieTest extends \PHPUnit_Framework_TestCase
Cookie::fromString('foo'); Cookie::fromString('foo');
} }
public function testFromStringThrowsAnExceptionIfCookieDateIsNotValid() public function testFromStringIgnoresInvalidExpiresDate()
{ {
$this->setExpectedException('InvalidArgumentException'); $cookie = Cookie::fromString('foo=bar; expires=Flursday July 31st 2020, 08:49:37 GMT');
Cookie::fromString('foo=bar; expires=Flursday July 31st 2020, 08:49:37 GMT');
$this->assertFalse($cookie->isExpired());
} }
public function testFromStringThrowsAnExceptionIfUrlIsNotValid() public function testFromStringThrowsAnExceptionIfUrlIsNotValid()

View File

@ -599,7 +599,7 @@ class Table
foreach ($row as $i => $cell) { foreach ($row as $i => $cell) {
if ($cell instanceof TableCell) { if ($cell instanceof TableCell) {
$textLength = strlen($cell); $textLength = Helper::strlenWithoutDecoration($this->output->getFormatter(), $cell);
if ($textLength > 0) { if ($textLength > 0) {
$contentColumns = str_split($cell, ceil($textLength / $cell->getColspan())); $contentColumns = str_split($cell, ceil($textLength / $cell->getColspan()));
foreach ($contentColumns as $position => $content) { foreach ($contentColumns as $position => $content) {

View File

@ -16,6 +16,7 @@ use Symfony\Component\Console\Helper\HelperSet;
use Symfony\Component\Console\Output\StreamOutput; use Symfony\Component\Console\Output\StreamOutput;
use Symfony\Component\Console\Helper\ProcessHelper; use Symfony\Component\Console\Helper\ProcessHelper;
use Symfony\Component\Process\Process; use Symfony\Component\Process\Process;
use Symfony\Component\Process\ProcessBuilder;
class ProcessHelperTest extends \PHPUnit_Framework_TestCase class ProcessHelperTest extends \PHPUnit_Framework_TestCase
{ {
@ -83,9 +84,9 @@ EOT;
EOT; EOT;
$errorMessage = 'An error occurred'; $errorMessage = 'An error occurred';
if ('\\' === DIRECTORY_SEPARATOR) { $args = new ProcessBuilder(array('php', '-r', 'echo 42;'));
$successOutputProcessDebug = str_replace("'", '"', $successOutputProcessDebug); $args = $args->getProcess()->getCommandLine();
} $successOutputProcessDebug = str_replace("'php' '-r' 'echo 42;'", $args, $successOutputProcessDebug);
return array( return array(
array('', 'php -r "echo 42;"', StreamOutput::VERBOSITY_VERBOSE, null), array('', 'php -r "echo 42;"', StreamOutput::VERBOSITY_VERBOSE, null),

View File

@ -35,9 +35,9 @@ class TableTest extends \PHPUnit_Framework_TestCase
/** /**
* @dataProvider testRenderProvider * @dataProvider testRenderProvider
*/ */
public function testRender($headers, $rows, $style, $expected) public function testRender($headers, $rows, $style, $expected, $decorated = false)
{ {
$table = new Table($output = $this->getOutputStream()); $table = new Table($output = $this->getOutputStream($decorated));
$table $table
->setHeaders($headers) ->setHeaders($headers)
->setRows($rows) ->setRows($rows)
@ -51,9 +51,9 @@ class TableTest extends \PHPUnit_Framework_TestCase
/** /**
* @dataProvider testRenderProvider * @dataProvider testRenderProvider
*/ */
public function testRenderAddRows($headers, $rows, $style, $expected) public function testRenderAddRows($headers, $rows, $style, $expected, $decorated = false)
{ {
$table = new Table($output = $this->getOutputStream()); $table = new Table($output = $this->getOutputStream($decorated));
$table $table
->setHeaders($headers) ->setHeaders($headers)
->addRows($rows) ->addRows($rows)
@ -67,9 +67,9 @@ class TableTest extends \PHPUnit_Framework_TestCase
/** /**
* @dataProvider testRenderProvider * @dataProvider testRenderProvider
*/ */
public function testRenderAddRowsOneByOne($headers, $rows, $style, $expected) public function testRenderAddRowsOneByOne($headers, $rows, $style, $expected, $decorated = false)
{ {
$table = new Table($output = $this->getOutputStream()); $table = new Table($output = $this->getOutputStream($decorated));
$table $table
->setHeaders($headers) ->setHeaders($headers)
->setStyle($style) ->setStyle($style)
@ -485,6 +485,35 @@ TABLE
TABLE TABLE
), ),
'Coslpan and table cells with comment style' => array(
array(
new TableCell('<comment>Long Title</comment>', array('colspan' => 3)),
),
array(
array(
new TableCell('9971-5-0210-0', array('colspan' => 3)),
),
new TableSeparator(),
array(
'Dante Alighieri',
'J. R. R. Tolkien',
'J. R. R',
),
),
'default',
<<<TABLE
+-----------------+------------------+---------+
|\033[32m \033[39m\033[33mLong Title\033[39m\033[32m \033[39m|
+-----------------+------------------+---------+
| 9971-5-0210-0 |
+-----------------+------------------+---------+
| Dante Alighieri | J. R. R. Tolkien | J. R. R |
+-----------------+------------------+---------+
TABLE
,
true,
),
); );
} }
@ -713,9 +742,9 @@ TABLE;
Table::getStyleDefinition('absent'); Table::getStyleDefinition('absent');
} }
protected function getOutputStream() protected function getOutputStream($decorated = false)
{ {
return new StreamOutput($this->stream, StreamOutput::VERBOSITY_NORMAL, false); return new StreamOutput($this->stream, StreamOutput::VERBOSITY_NORMAL, $decorated);
} }
protected function getOutputContent(StreamOutput $output) protected function getOutputContent(StreamOutput $output)

View File

@ -278,6 +278,42 @@
<source>This value should not be identical to {{ compared_value_type }} {{ compared_value }}.</source> <source>This value should not be identical to {{ compared_value_type }} {{ compared_value }}.</source>
<target>Ova vrijednost ne bi trebala biti {{ compared_value_type }} {{ compared_value }}.</target> <target>Ova vrijednost ne bi trebala biti {{ compared_value_type }} {{ compared_value }}.</target>
</trans-unit> </trans-unit>
<trans-unit id="73">
<source>The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.</source>
<target>Omjer slike je prevelik ({{ ratio }}). Dozvoljeni maksimalni omjer je {{ max_ratio }}.</target>
</trans-unit>
<trans-unit id="74">
<source>The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.</source>
<target>Omjer slike je premali ({{ ratio }}). Minimalni očekivani omjer je {{ min_ratio }}.</target>
</trans-unit>
<trans-unit id="75">
<source>The image is square ({{ width }}x{{ height }}px). Square images are not allowed.</source>
<target>Slika je kvadratnog oblika ({{ width }}x{{ height }}px). Kvadratne slike nisu dozvoljene.</target>
</trans-unit>
<trans-unit id="76">
<source>The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.</source>
<target>Slika je orijentirana horizontalno ({{ width }}x{{ height }}px). Horizontalno orijentirane slike nisu dozvoljene.</target>
</trans-unit>
<trans-unit id="77">
<source>The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.</source>
<target>Slika je orijentirana vertikalno ({{ width }}x{{ height }}px). Vertikalno orijentirane slike nisu dozvoljene.</target>
</trans-unit>
<trans-unit id="78">
<source>An empty file is not allowed.</source>
<target>Prazna datoteka nije dozvoljena.</target>
</trans-unit>
<trans-unit id="79">
<source>The host could not be resolved.</source>
<target>Poslužitelj nije mogao biti razriješen.</target>
</trans-unit>
<trans-unit id="80">
<source>This value does not match the expected {{ charset }} charset.</source>
<target>Znakovne oznake vrijednosti ne odgovaraju očekivanom {{ charset }} skupu.</target>
</trans-unit>
<trans-unit id="81">
<source>This is not a valid Business Identifier Code (BIC).</source>
<target>Ovo nije validan poslovni identifikacijski broj (BIC).</target>
</trans-unit>
</body> </body>
</file> </file>
</xliff> </xliff>