123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?php
- /*
- * This file is part of the Symfony package.
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Components\DependencyInjection;
- use Symfony\Components\DependencyInjection\Container;
- class ContainerTest extends \PHPUnit_Framework_TestCase
- {
- public function testConstructor()
- {
- $sc = new Container();
- $this->assertEquals(spl_object_hash($sc), spl_object_hash($sc->getService('service_container')), '__construct() automatically registers itself as a service');
- $sc = new Container(array('foo' => 'bar'));
- $this->assertEquals(array('foo' => 'bar'), $sc->getParameters(), '__construct() takes an array of parameters as its first argument');
- }
- public function testGetSetParameters()
- {
- $sc = new Container();
- $this->assertEquals(array(), $sc->getParameters(), '->getParameters() returns an empty array if no parameter has been defined');
- $sc->setParameters(array('foo' => 'bar'));
- $this->assertEquals(array('foo' => 'bar'), $sc->getParameters(), '->setParameters() sets the parameters');
- $sc->setParameters(array('bar' => 'foo'));
- $this->assertEquals(array('bar' => 'foo'), $sc->getParameters(), '->setParameters() overrides the previous defined parameters');
- $sc->setParameters(array('Bar' => 'foo'));
- $this->assertEquals(array('bar' => 'foo'), $sc->getParameters(), '->setParameters() converts the key to lowercase');
- }
- public function testGetSetParameter()
- {
- $sc = new Container(array('foo' => 'bar'));
- $sc->setParameter('bar', 'foo');
- $this->assertEquals('foo', $sc->getParameter('bar'), '->setParameter() sets the value of a new parameter');
- $this->assertEquals('foo', $sc['bar'], '->offsetGet() gets the value of a parameter');
- $sc['bar1'] = 'foo1';
- $this->assertEquals('foo1', $sc['bar1'], '->offsetset() sets the value of a parameter');
- unset($sc['bar1']);
- $this->assertFalse(isset($sc['bar1']), '->offsetUnset() removes a parameter');
- $sc->setParameter('foo', 'baz');
- $this->assertEquals('baz', $sc->getParameter('foo'), '->setParameter() overrides previously set parameter');
- $sc->setParameter('Foo', 'baz1');
- $this->assertEquals('baz1', $sc->getParameter('foo'), '->setParameter() converts the key to lowercase');
- $this->assertEquals('baz1', $sc->getParameter('FOO'), '->getParameter() converts the key to lowercase');
- $this->assertEquals('baz1', $sc['FOO'], '->offsetGet() converts the key to lowercase');
- try {
- $sc->getParameter('baba');
- $this->fail('->getParameter() thrown an \InvalidArgumentException if the key does not exist');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\InvalidArgumentException', $e, '->getParameter() thrown an \InvalidArgumentException if the key does not exist');
- $this->assertEquals('The parameter "baba" must be defined.', $e->getMessage(), '->getParameter() thrown an \InvalidArgumentException if the key does not exist');
- }
- try {
- $sc['baba'];
- $this->fail('->offsetGet() thrown an \InvalidArgumentException if the key does not exist');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\InvalidArgumentException', $e, '->offsetGet() thrown an \InvalidArgumentException if the key does not exist');
- $this->assertEquals('The parameter "baba" must be defined.', $e->getMessage(), '->offsetGet() thrown an \InvalidArgumentException if the key does not exist');
- }
- }
- public function testHasParameter()
- {
- $sc = new Container(array('foo' => 'bar'));
- $this->assertTrue($sc->hasParameter('foo'), '->hasParameter() returns true if a parameter is defined');
- $this->assertTrue($sc->hasParameter('Foo'), '->hasParameter() converts the key to lowercase');
- $this->assertTrue(isset($sc['Foo']), '->offsetExists() converts the key to lowercase');
- $this->assertFalse($sc->hasParameter('bar'), '->hasParameter() returns false if a parameter is not defined');
- $this->assertTrue(isset($sc['foo']), '->offsetExists() returns true if a parameter is defined');
- $this->assertFalse(isset($sc['bar']), '->offsetExists() returns false if a parameter is not defined');
- }
- public function testAddParameters()
- {
- $sc = new Container(array('foo' => 'bar'));
- $sc->addParameters(array('bar' => 'foo'));
- $this->assertEquals(array('foo' => 'bar', 'bar' => 'foo'), $sc->getParameters(), '->addParameters() adds parameters to the existing ones');
- $sc->addParameters(array('Bar' => 'fooz'));
- $this->assertEquals(array('foo' => 'bar', 'bar' => 'fooz'), $sc->getParameters(), '->addParameters() converts keys to lowercase');
- }
- public function testServices()
- {
- $sc = new Container();
- $sc->setService('foo', $obj = new \stdClass());
- $this->assertEquals(spl_object_hash($obj), spl_object_hash($sc->getService('foo')), '->setService() registers a service under a key name');
- $sc->foo1 = $obj1 = new \stdClass();
- $this->assertEquals(spl_object_hash($obj1), spl_object_hash($sc->foo1), '->__set() sets a service');
- $this->assertEquals(spl_object_hash($obj), spl_object_hash($sc->foo), '->__get() gets a service by name');
- $this->assertTrue($sc->hasService('foo'), '->hasService() returns true if the service is defined');
- $this->assertTrue(isset($sc->foo), '->__isset() returns true if the service is defined');
- $this->assertFalse($sc->hasService('bar'), '->hasService() returns false if the service is not defined');
- $this->assertFalse(isset($sc->bar), '->__isset() returns false if the service is not defined');
- }
- public function testGetServiceIds()
- {
- $sc = new Container();
- $sc->setService('foo', $obj = new \stdClass());
- $sc->setService('bar', $obj = new \stdClass());
- $this->assertEquals(array('service_container', 'foo', 'bar'), $sc->getServiceIds(), '->getServiceIds() returns all defined service ids');
- $sc = new ProjectServiceContainer();
- $this->assertEquals(spl_object_hash($sc->__bar), spl_object_hash($sc->getService('bar')), '->getService() looks for a getXXXService() method');
- $this->assertTrue($sc->hasService('bar'), '->hasService() returns true if the service has been defined as a getXXXService() method');
- $sc->setService('bar', $bar = new \stdClass());
- $this->assertEquals(spl_object_hash($sc->getService('bar')), spl_object_hash($bar), '->getService() prefers to return a service defined with a getXXXService() method than one defined with setService()');
- try {
- $sc->getService('baba');
- $this->fail('->getService() thrown an \InvalidArgumentException if the service does not exist');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\InvalidArgumentException', $e, '->getService() thrown an \InvalidArgumentException if the service does not exist');
- $this->assertEquals('The service "baba" does not exist.', $e->getMessage(), '->getService() thrown an \InvalidArgumentException if the service does not exist');
- }
- try {
- $sc->baba;
- $this->fail('->__get() thrown an \InvalidArgumentException if the service does not exist');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\InvalidArgumentException', $e, '->__get() thrown an \InvalidArgumentException if the service does not exist');
- $this->assertEquals('The service "baba" does not exist.', $e->getMessage(), '->__get() thrown an \InvalidArgumentException if the service does not exist');
- }
- try {
- unset($sc->baba);
- $this->fail('->__unset() thrown an LogicException if you try to remove a service');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\LogicException', $e, '->__unset() thrown an LogicException if you try to remove a service');
- $this->assertEquals('You can\'t unset a service.', $e->getMessage(), '->__unset() thrown an LogicException if you try to remove a service');
- }
- $this->assertEquals(spl_object_hash($sc->__foo_bar), spl_object_hash($sc->getService('foo_bar')), '->getService() camelizes the service id when looking for a method');
- $this->assertEquals(spl_object_hash($sc->__foo_baz), spl_object_hash($sc->getService('foo.baz')), '->getService() camelizes the service id when looking for a method');
- }
- public function testMagicCall()
- {
- $sc = new Container();
- $sc->setService('foo_bar.foo', $foo = new \stdClass());
- $this->assertEquals($foo, $sc->getFooBar_FooService(), '__call() finds services is the method is getXXXService()');
- try {
- $sc->getFooBar_Foo();
- $this->fail('__call() throws a \BadMethodCallException exception if the method is not a service method');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\BadMethodCallException', $e, '__call() throws a \BadMethodCallException exception if the method is not a service method');
- $this->assertEquals('Call to undefined method Symfony\Components\DependencyInjection\Container::getFooBar_Foo.', $e->getMessage(), '__call() throws a \BadMethodCallException exception if the method is not a service method');
- }
- }
- public function testGetService()
- {
- $sc = new Container();
- try {
- $sc->getService('');
- $this->fail('->getService() throws a \InvalidArgumentException exception if the service is empty');
- } catch (\Exception $e) {
- $this->assertInstanceOf('\InvalidArgumentException', $e, '->getService() throws a \InvalidArgumentException exception if the service is empty');
- $this->assertEquals('The service "" does not exist.', $e->getMessage(), '->getService() throws a \InvalidArgumentException exception if the service is empty');
- }
- }
- }
- class ProjectServiceContainer extends Container
- {
- public $__bar, $__foo_bar, $__foo_baz;
- public function __construct()
- {
- parent::__construct();
- $this->__bar = new \stdClass();
- $this->__foo_bar = new \stdClass();
- $this->__foo_baz = new \stdClass();
- }
- protected function getBarService()
- {
- return $this->__bar;
- }
- protected function getFooBarService()
- {
- return $this->__foo_bar;
- }
- protected function getFoo_BazService()
- {
- return $this->__foo_baz;
- }
- }
|