| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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\Component\DependencyInjection\Tests;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\DependencyInjection\ServiceLocator;
- class ServiceLocatorTest extends TestCase
- {
- public function testHas()
- {
- $locator = new ServiceLocator(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 = new ServiceLocator(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 = new ServiceLocator(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 You have requested a non-existent service "dummy"
- */
- public function testGetThrowsOnUndefinedService()
- {
- $locator = new ServiceLocator(array(
- 'foo' => function () { return 'bar'; },
- 'bar' => function () { return 'baz'; },
- ));
- $locator->get('dummy');
- }
- public function testInvoke()
- {
- $locator = new ServiceLocator(array(
- 'foo' => function () { return 'bar'; },
- 'bar' => function () { return 'baz'; },
- ));
- $this->assertSame('bar', $locator('foo'));
- $this->assertSame('baz', $locator('bar'));
- $this->assertNull($locator('dummy'), '->__invoke() should return null on invalid service');
- }
- }
|