* @author Gediminas Morkevicius * @link http://www.gediminasm.org * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ class MaterializedPathTreeMappingTest extends BaseTestCaseOM { /** * @var Doctrine\ORM\EntityManager */ private $em; /** * @var Gedmo\Tree\TreeListener */ private $tree; public function setUp() { parent::setUp(); $reader = new AnnotationReader(); $annotationDriver = new AnnotationDriver($reader); $xmlDriver = new XmlDriver(__DIR__.'/../Driver/Xml'); $chain = new DriverChain; $chain->addDriver($xmlDriver, 'Mapping\Fixture\Xml'); $chain->addDriver($annotationDriver, 'Mapping\Fixture'); $chain->addDriver($annotationDriver, 'Gedmo\Tree'); $this->tree = new TreeListener; $this->evm = new EventManager; $this->evm->addEventSubscriber($this->tree); $this->em = $this->getMockSqliteEntityManager(array( 'Mapping\Fixture\Xml\MaterializedPathTree' ), $chain); } public function testTreeMetadata() { $meta = $this->em->getClassMetadata('Mapping\Fixture\Xml\MaterializedPathTree'); $config = $this->tree->getConfiguration($this->em, $meta->name); $this->assertArrayHasKey('strategy', $config); $this->assertEquals('materializedPath', $config['strategy']); $this->assertArrayHasKey('activate_locking', $config); $this->assertTrue($config['activate_locking']); $this->assertArrayHasKey('locking_timeout', $config); $this->assertEquals(10, $config['locking_timeout']); $this->assertArrayHasKey('level', $config); $this->assertEquals('level', $config['level']); $this->assertArrayHasKey('parent', $config); $this->assertEquals('parent', $config['parent']); $this->assertArrayHasKey('path_source', $config); $this->assertEquals('title', $config['path_source']); $this->assertArrayHasKey('path', $config); $this->assertEquals('path', $config['path']); $this->assertArrayHasKey('lock_time', $config); $this->assertEquals('lockTime', $config['lock_time']); } }