12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
-
- namespace Gedmo\Mapping\Xml;
-
- use Doctrine\Common\EventManager;
- use Doctrine\Common\Annotations\AnnotationReader;
- use Doctrine\ORM\Mapping\Driver\DriverChain;
- use Doctrine\ORM\Mapping\Driver\XmlDriver;
- use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
- use Gedmo\Loggable\LoggableListener;
- use Tool\BaseTestCaseOM;
-
- /**
- * These are mapping extension tests
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo.Mapping
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class LoggableMappingTest extends BaseTestCaseOM
- {
- /**
- * @var Doctrine\ORM\EntityManager
- */
- private $em;
-
- /**
- * @var Gedmo\Loggable\LoggableListener
- */
- private $loggable;
-
- public function setUp()
- {
- parent::setUp();
-
- $reader = new AnnotationReader();
- $annotationDriver = new AnnotationDriver($reader);
-
- $xmlDriver = new XmlDriver(__DIR__.'/../Driver/Xml');
-
- $chain = new DriverChain;
- $chain->addDriver($annotationDriver, 'Gedmo\Loggable');
- $chain->addDriver($xmlDriver, 'Mapping\Fixture\Xml');
-
- $this->loggable = new LoggableListener;
- $this->evm = new EventManager;
- $this->evm->addEventSubscriber($this->loggable);
-
- $this->em = $this->getMockSqliteEntityManager(array(
- 'Gedmo\Loggable\Entity\LogEntry',
- 'Mapping\Fixture\Xml\Loggable',
- 'Mapping\Fixture\Xml\Status'
- ), $chain);
- }
-
- public function testLoggableMetadata()
- {
- $meta = $this->em->getClassMetadata('Mapping\Fixture\Xml\Loggable');
- $config = $this->loggable->getConfiguration($this->em, $meta->name);
-
- $this->assertArrayHasKey('logEntryClass', $config);
- $this->assertEquals('Gedmo\Loggable\Entity\LogEntry', $config['logEntryClass']);
- $this->assertArrayHasKey('loggable', $config);
- $this->assertTrue($config['loggable']);
-
- $this->assertArrayHasKey('versioned', $config);
- $this->assertCount(2, $config['versioned']);
- $this->assertContains('title', $config['versioned']);
- $this->assertContains('status', $config['versioned']);
- }
- }
|