Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.61
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
contracts /
Tests /
Service /
Delete
Unzip
Name
Size
Permission
Date
Action
ServiceLocatorTest.php
2.79
KB
-rw-r--r--
2018-11-24 09:00
ServiceSubscriberTraitTest.php
1.57
KB
-rw-r--r--
2018-11-24 09:00
Save
Rename
<?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\Contracts\Tests\Service; use PHPUnit\Framework\TestCase; use Psr\Container\ContainerInterface; use Symfony\Contracts\Service\ServiceLocatorTrait; class ServiceLocatorTest extends TestCase { public function getServiceLocator(array $factories) { return new class($factories) implements ContainerInterface { use ServiceLocatorTrait; }; } public function testHas() { $locator = $this->getServiceLocator(array( 'foo' => function () { return 'bar'; }, 'bar' => function () { return 'baz'; }, function () { return 'dummy'; }, )); $this->assertTrue($locator->has('foo')); $this->assertTrue($locator->has('bar')); $this->assertFalse($locator->has('dummy')); } public function testGet() { $locator = $this->getServiceLocator(array( 'foo' => function () { return 'bar'; }, 'bar' => function () { return 'baz'; }, )); $this->assertSame('bar', $locator->get('foo')); $this->assertSame('baz', $locator->get('bar')); } public function testGetDoesNotMemoize() { $i = 0; $locator = $this->getServiceLocator(array( 'foo' => function () use (&$i) { ++$i; return 'bar'; }, )); $this->assertSame('bar', $locator->get('foo')); $this->assertSame('bar', $locator->get('foo')); $this->assertSame(2, $i); } /** * @expectedException \Psr\Container\NotFoundExceptionInterface * @expectedExceptionMessage The service "foo" has a dependency on a non-existent service "bar". This locator only knows about the "foo" service. */ public function testThrowsOnUndefinedInternalService() { $locator = $this->getServiceLocator(array( 'foo' => function () use (&$locator) { return $locator->get('bar'); }, )); $locator->get('foo'); } /** * @expectedException \Psr\Container\ContainerExceptionInterface * @expectedExceptionMessage Circular reference detected for service "bar", path: "bar -> baz -> bar". */ public function testThrowsOnCircularReference() { $locator = $this->getServiceLocator(array( 'foo' => function () use (&$locator) { return $locator->get('bar'); }, 'bar' => function () use (&$locator) { return $locator->get('baz'); }, 'baz' => function () use (&$locator) { return $locator->get('bar'); }, )); $locator->get('foo'); } }