/**
  * @test
  */
 public function theDefaultFactoryMethodNameIsCreate()
 {
     $this->assertSame('create', $this->objectConfiguration->getFactoryMethodName());
 }
 /**
  * Parses the configuration for properties of type OBJECT
  *
  * @param string $propertyName Name of the property
  * @param mixed $objectNameOrConfiguration Value of the "object" section of the property configuration - either a string or an array
  * @param Configuration $parentObjectConfiguration The Configuration object this property belongs to
  * @return ConfigurationProperty A configuration property of type object
  * @throws InvalidObjectConfigurationException
  */
 protected function parsePropertyOfTypeObject($propertyName, $objectNameOrConfiguration, Configuration $parentObjectConfiguration)
 {
     if (is_array($objectNameOrConfiguration)) {
         if (isset($objectNameOrConfiguration['name'])) {
             $objectName = $objectNameOrConfiguration['name'];
             unset($objectNameOrConfiguration['name']);
         } else {
             if (isset($objectNameOrConfiguration['factoryObjectName'])) {
                 $objectName = NULL;
             } else {
                 $annotations = $this->reflectionService->getPropertyTagValues($parentObjectConfiguration->getClassName(), $propertyName, 'var');
                 if (count($annotations) !== 1) {
                     throw new InvalidObjectConfigurationException(sprintf('Object %s, for property "%s", contains neither object name, nor factory object name, and nor is the property properly @var - annotated.', $parentObjectConfiguration->getConfigurationSourceHint(), $propertyName, $parentObjectConfiguration->getClassName()), 1297097815);
                 }
                 $objectName = $annotations[0];
             }
         }
         $objectConfiguration = $this->parseConfigurationArray($objectName, $objectNameOrConfiguration, $parentObjectConfiguration->getConfigurationSourceHint() . ', property "' . $propertyName . '"');
         $property = new ConfigurationProperty($propertyName, $objectConfiguration, ConfigurationProperty::PROPERTY_TYPES_OBJECT);
     } else {
         $property = new ConfigurationProperty($propertyName, $objectNameOrConfiguration, ConfigurationProperty::PROPERTY_TYPES_OBJECT);
     }
     return $property;
 }
 /**
  * Builds code which registers the lifecycle shutdown method, if any.
  *
  * @param Configuration $objectConfiguration
  * @return string
  */
 protected function buildLifecycleShutdownCode(Configuration $objectConfiguration)
 {
     $lifecycleShutdownMethodName = $objectConfiguration->getLifecycleShutdownMethodName();
     if (!$this->reflectionService->hasMethod($objectConfiguration->getClassName(), $lifecycleShutdownMethodName)) {
         return '';
     }
     $className = $objectConfiguration->getClassName();
     $code = "\n" . '		if (get_class($this) === \'' . $className . '\') {' . "\n";
     $code .= '		\\TYPO3\\Flow\\Core\\Bootstrap::$staticObjectManager->registerShutdownObject($this, \'' . $lifecycleShutdownMethodName . '\');' . PHP_EOL;
     $code .= '		}' . "\n";
     return $code;
 }
 /**
  * @test
  */
 public function itIsPossibleToPassArraysAsStraightArgumentOrPropertyValues()
 {
     $configurationArray = array();
     $configurationArray['properties']['straightValueProperty']['value'] = array('foo' => 'bar', 'object' => 'nö');
     $configurationArray['arguments'][1]['value'] = array('foo' => 'bar', 'object' => 'nö');
     $objectConfiguration = new \TYPO3\Flow\Object\Configuration\Configuration('TestObject', 'TestObject');
     $objectConfiguration->setProperty(new \TYPO3\Flow\Object\Configuration\ConfigurationProperty('straightValueProperty', array('foo' => 'bar', 'object' => 'nö')));
     $objectConfiguration->setArgument(new \TYPO3\Flow\Object\Configuration\ConfigurationArgument(1, array('foo' => 'bar', 'object' => 'nö')));
     $configurationBuilder = $this->getAccessibleMock('TYPO3\\Flow\\Object\\Configuration\\ConfigurationBuilder', array('dummy'));
     $builtObjectConfiguration = $configurationBuilder->_call('parseConfigurationArray', 'TestObject', $configurationArray, __CLASS__);
     $this->assertEquals($objectConfiguration, $builtObjectConfiguration);
 }