123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /*
- * This file is part of Composer.
- *
- * (c) Nils Adermann <naderman@naderman.de>
- * Jordi Boggiano <j.boggiano@seld.be>
- *
- * 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 <niels.keurentjes@omines.com>
- */
- class SilencerTest extends TestCase
- {
- /**
- * Test succeeds when no warnings are emitted externally, and original level is restored.
- */
- public function testSilencer()
- {
- $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()
- {
- $verification = microtime();
- $this->setExpectedException('\RuntimeException', $verification);
- Silencer::call(function () use ($verification) {
- throw new \RuntimeException($verification);
- });
- }
- }
|