| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | <?php
namespace Wrapper;
use Tool\BaseTestCaseMongoODM;
use Doctrine\Common\EventManager;
use Wrapper\Fixture\Document\Article;
use Gedmo\Tool\Wrapper\MongoDocumentWrapper;
/**
 * Mongo Document wrapper tests
 *
 * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
 * @link http://www.gediminasm.org
 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
 */
class MongoDocumentWrapperTest extends BaseTestCaseMongoODM
{
    const ARTICLE = "Wrapper\\Fixture\\Document\\Article";
    private $articleId;
    protected function setUp()
    {
        parent::setUp();
        $this->getMockDocumentManager(new EventManager);
        $this->populate();
    }
    public function testManaged()
    {
        $test = $this->dm->find(self::ARTICLE, $this->articleId);
        $this->assertInstanceOf(self::ARTICLE, $test);
        $wrapped = new MongoDocumentWrapper($test, $this->dm);
        $this->assertEquals($this->articleId, $wrapped->getIdentifier());
        $this->assertEquals('test', $wrapped->getPropertyValue('title'));
        $wrapped->setPropertyValue('title', 'changed');
        $this->assertEquals('changed', $wrapped->getPropertyValue('title'));
        $this->assertTrue($wrapped->hasValidIdentifier());
    }
    public function testProxy()
    {
        $this->dm->clear();
        $test = $this->dm->getReference(self::ARTICLE, $this->articleId);
        $this->assertInstanceOf('Doctrine\\ODM\\MongoDB\\Proxy\\Proxy', $test);
        $wrapped = new MongoDocumentWrapper($test, $this->dm);
        $id = $wrapped->getIdentifier(false);
        $this->assertEquals($this->articleId, $id);
        $this->assertEquals('test', $wrapped->getPropertyValue('title'));
    }
    public function testDetachedEntity()
    {
        $test = $this->dm->find(self::ARTICLE, $this->articleId);
        $this->dm->clear();
        $wrapped = new MongoDocumentWrapper($test, $this->dm);
        $this->assertEquals($this->articleId, $wrapped->getIdentifier());
        $this->assertEquals('test', $wrapped->getPropertyValue('title'));
    }
    public function testDetachedProxy()
    {
        $test = $this->dm->getReference(self::ARTICLE, $this->articleId);
        $this->dm->clear();
        $wrapped = new MongoDocumentWrapper($test, $this->dm);
        $this->assertEquals($this->articleId, $wrapped->getIdentifier());
        $this->assertEquals('test', $wrapped->getPropertyValue('title'));
    }
    public function testSomeFunctions()
    {
        $test = new Article;
        $wrapped = new MongoDocumentWrapper($test, $this->dm);
        $wrapped->populate(array('title' => 'test'));
        $this->assertEquals('test', $wrapped->getPropertyValue('title'));
        $this->assertFalse($wrapped->hasValidIdentifier());
    }
    private function populate()
    {
        $test = new Article;
        $test->setTitle("test");
        $this->dm->persist($test);
        $this->dm->flush();
        $this->articleId = $test->getId();
    }
}
 |