Skip to content

Commit

Permalink
bug #35557 [Config] dont catch instances of Error (nicolas-grekas)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.4 branch.

Discussion
----------

[Config] dont catch instances of Error

| Q             | A
| ------------- | ---
| Branch?       | 3.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #35445, fix #35256
| License       | MIT
| Doc PR        | -

Commits
-------

e94c3fb [Config] dont catch instances of Error
  • Loading branch information
nicolas-grekas committed Feb 3, 2020
2 parents e02e74d + e94c3fb commit 78641e0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Expand Up @@ -92,6 +92,8 @@ public function isFresh($timestamp)
}
} catch (\Throwable $e) {
$exists[1] = $e->getMessage();

throw $e;
} finally {
self::$autoloadedClass = $autoloadedClass;
if (!--self::$autoloadLevel) {
Expand Down
7 changes: 7 additions & 0 deletions src/Symfony/Component/Config/Tests/Fixtures/ParseError.php
@@ -0,0 +1,7 @@
<?php

namespace Symfony\Component\Config\Tests\Fixtures;

class ParseError
{
// missing closing bracket
Expand Up @@ -15,6 +15,7 @@
use Symfony\Component\Config\Resource\ClassExistenceResource;
use Symfony\Component\Config\Tests\Fixtures\BadFileName;
use Symfony\Component\Config\Tests\Fixtures\BadParent;
use Symfony\Component\Config\Tests\Fixtures\ParseError;
use Symfony\Component\Config\Tests\Fixtures\Resource\ConditionalClass;

class ClassExistenceResourceTest extends TestCase
Expand Down Expand Up @@ -115,4 +116,15 @@ public function testConditionalClass()

$this->assertFalse($res->isFresh(0));
}

/**
* @requires PHP 7
*/
public function testParseError()
{
$this->expectException('ParseError');

$res = new ClassExistenceResource(ParseError::class, false);
$res->isFresh(0);
}
}

0 comments on commit 78641e0

Please sign in to comment.