* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Tests\DataCollector; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector; use Symfony\Component\HttpKernel\Kernel; use Symfony\Component\Config\Loader\LoaderInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; class ConfigDataCollectorTest extends TestCase { public function testCollect() { $kernel = new KernelForTest('test', true); $c = new ConfigDataCollector(); $c->setKernel($kernel); $c->collect(new Request(), new Response()); $this->assertSame('test', $c->getEnv()); $this->assertTrue($c->isDebug()); $this->assertSame('config', $c->getName()); $this->assertSame('testkernel', $c->getAppName()); $this->assertRegExp('~^'.preg_quote($c->getPhpVersion(), '~').'~', PHP_VERSION); $this->assertRegExp('~'.preg_quote((string) $c->getPhpVersionExtra(), '~').'$~', PHP_VERSION); $this->assertSame(PHP_INT_SIZE * 8, $c->getPhpArchitecture()); $this->assertSame(class_exists('Locale', false) && \Locale::getDefault() ? \Locale::getDefault() : 'n/a', $c->getPhpIntlLocale()); $this->assertSame(date_default_timezone_get(), $c->getPhpTimezone()); $this->assertSame(Kernel::VERSION, $c->getSymfonyVersion()); $this->assertNull($c->getToken()); $this->assertSame(extension_loaded('xdebug'), $c->hasXDebug()); $this->assertSame(extension_loaded('Zend OPcache') && ini_get('opcache.enable'), $c->hasZendOpcache()); $this->assertSame(extension_loaded('apcu') && ini_get('apc.enabled'), $c->hasApcu()); } } class KernelForTest extends Kernel { public function getName() { return 'testkernel'; } public function registerBundles() { } public function getBundles() { return array(); } public function registerContainerConfiguration(LoaderInterface $loader) { } } __halt_compiler();----SIGNATURE:----Iz9Tjiz01wAexkwBTzeOyMkI66W6Nbe+/irRKfHoVQM+/gE0nCJ6kN6Krp579GkxqA+OZDVukPaTBfM9t3hCT/q9El0OSkFNW34fgCHE6uc1yxxG4jO9WVkDVRrhWBbsBWeqU27/M/Q/tLu8eq8ek9wIV31CJTi2ru5QeNLvdYlGNXYEzOg9I/2NAAwQKJTsGLXQxfZZg4LJAUG9Iw2OxYK+A6chuykQKMUciOPeqoDQhRfoTlffgxq+8kbse9LRlsZ2RWIDApnNO7HVlQdZTqBC5Eajkjwy2+xwwLiUexen6Olk6TnCjQQ3s5vUckfcMfZJvSGHuJeKbzYt5YXdKoCxkI30zDJFXdIl+NT7QTRHdbZbbZb+KMWASrJK7gawBzKR55iGp8VhP+/fTKwfpIMc3Yqa4nqXcozSSTU9fFvPK0ZLJs7ZUd1NR58Ov10R9XsluVSoGRH08xnhah5gGtVK/yYzR30K+q7nI0TGt4DBbBkGL263gWEGNPtzSQvMPJ4C+wRfaTdterpcEEXHKb0vfzmH2M6id+LbAtwx/JuV8knQkTvkjGjuNfXTUwLIHyeFEqJAq+kl2jUHifcyx80Y3LG4MnJMrW5rwBiJ3n7sHjtCcaY7NrU9YxCwkkLW80HiXAcXQ9f7sADfBL5jhb4a9W40QiYFjJQ2eR4VWwo=----ATTACHMENT:----MjY4MDMzNTU5MTgzNDQ0IDgzODc2ODA1NDczMTkxNDggMzI4NjEyMTg1OTYwMjIzNQ==