* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Test\Util; use Composer\Util\Silencer; use Composer\Test\TestCase; /** * SilencerTest * * @author Niels Keurentjes */ class SilencerTest extends TestCase { /** * Test succeeds when no warnings are emitted externally, and original level is restored. */ public function testSilencer(): void { $before = error_reporting(); // Check warnings are suppressed correctly Silencer::suppress(); @trigger_error('Test', E_USER_WARNING); Silencer::restore(); // Check all parameters and return values are passed correctly in a silenced call. $result = Silencer::call(function ($a, $b, $c) { @trigger_error('Test', E_USER_WARNING); return $a * $b * $c; }, 2, 3, 4); $this->assertEquals(24, $result); // Check the error reporting setting was restored correctly $this->assertEquals($before, error_reporting()); } /** * Test whether exception from silent callbacks are correctly forwarded. */ public function testSilencedException(): void { $verification = microtime(); self::expectException('RuntimeException'); self::expectExceptionMessage($verification); Silencer::call(function () use ($verification): void { throw new \RuntimeException($verification); }); } }