<?php 
namespace Nkey\Caribu\Tests; 
 
require_once dirname(__FILE__).'/../AbstractDatabaseTestCase.php'; 
 
use Nkey\Caribu\Orm\Orm; 
 
use Nkey\Caribu\Tests\Model\BlogPost; 
use Nkey\Caribu\Tests\Model\BlogUser; 
 
/** 
 * Entity with list of referenced entities 
 * test cases (sqlite is used) 
 * 
 * This class is part of Caribu package 
 * 
 * @author Maik Greubel <[email protected]> 
 */ 
class EnityListTest extends AbstractDatabaseTestCase 
{ 
    public function __construct() 
    { 
        parent::__construct(); 
         
        $this->options = array( 
            'type' => 'sqlite', 
            'file' => ':memory:' 
        ); 
 
        $this->dataSetFile = dirname(__FILE__).'/../_files/blog-seed.xml'; 
    } 
 
    /** 
     * (non-PHPdoc) 
     * @see \PHPUnit\DbUnit\TestCase::setUp() 
     */ 
    protected function setUp() 
    { 
        Orm::passivate(); 
 
        $connection = $this->getConnection()->getConnection(); 
        $connection->beginTransaction(); 
        $connection->exec("CREATE TABLE blog (id INTEGER PRIMARY KEY AUTOINCREMENT, content TEXT, created TEXT)"); 
        $connection->exec("CREATE TABLE user (id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, email TEXT)"); 
        $connection->exec("CREATE TABLE blog_user_to_posts (id INTEGER PRIMARY KEY AUTOINCREMENT, userid INTEGER, postid INTEGER)"); 
        $connection->commit(); 
 
        parent::setUp(); 
    } 
 
    /** 
     * (non-PHPdoc) 
     * @see \PHPUnit\DbUnit\TestCase::tearDown() 
     */ 
    protected function tearDown() 
    { 
        $connection = $this->getConnection()->getConnection(); 
        $connection->beginTransaction(); 
        $connection->exec("DROP TABLE blog_user_to_posts"); 
        $connection->exec("DROP TABLE user"); 
        $connection->exec("DROP TABLE blog"); 
        $connection->commit(); 
 
        parent::tearDown(); 
    } 
 
    public function testReadPosts() 
    { 
        $posts = BlogPost::find(array('user.name' => 'joe')); 
        $this->assertEquals(2, count($posts)); 
 
        $this->assertFalse(is_null($posts[0]->getUser())); 
        $this->assertEquals('joe', $posts[0]->getUser()->getName()); 
        $this->assertEquals('joe', $posts[0]->getUser()->toArray()[1]); 
 
        $this->assertFalse(is_null($posts[1]->getUser())); 
        $this->assertEquals('joe', $posts[1]->getUser()->getName()); 
    } 
 
    public function testStoreReferenced() 
    { 
        $joe = BlogUser::find(array('name' => 'joe')); 
 
        $this->assertFalse(is_null($joe)); 
 
        $post = new BlogPost(); 
        $time = time(); 
        $post->setCreated($time); 
        $post->setContent('New content'); 
        $post->setUser($joe); 
 
        $post->persist(); 
 
        $post = BlogPost::find(array('created' => $time)); 
        $this->assertFalse(is_null($post->getUser())); 
        $this->assertEquals('joe', $post->getUser()->getName()); 
    } 
 
}
 
 |