/** * fake for test */ public function findOne($con = null) { if (true === $this->bySlug) { $book = new Book(); $book->setId(1); $book->setName('My Book'); $book->setSlug('my-book'); return $book; } return null; }
public function testToArrayDeep() { $author = new Author(); $author->setId(5678); $author->setFirstName('George'); $author->setLastName('Byron'); $book = new Book(); $book->setId(9012); $book->setTitle('Don Juan'); $book->setISBN('0140422161'); $book->setPrice(12.99); $book->setAuthor($author); $coll = new PropelObjectCollection(); $coll->setModel('Book'); $coll[] = $book; $expected = array(array('Id' => 9012, 'Title' => 'Don Juan', 'ISBN' => '0140422161', 'Price' => 12.99, 'PublisherId' => null, 'AuthorId' => 5678, 'Author' => array('Id' => 5678, 'FirstName' => 'George', 'LastName' => 'Byron', 'Email' => null, 'Age' => null, 'Books' => array('Book_0' => '*RECURSION*')))); $this->assertEquals($expected, $coll->toArray()); }
protected function setUp() { parent::setUp(); $publisher = new Publisher(); $publisher->setId(1234); $publisher->setName('Penguin'); $author = new Author(); $author->setId(5678); $author->setFirstName('George'); $author->setLastName('Byron'); $book = new Book(); $book->setId(9012); $book->setTitle('Don Juan'); $book->setISBN('0140422161'); $book->setPrice(12.99); $book->setAuthor($author); $book->setPublisher($publisher); $this->book = $book; }
protected function setUp() { parent::setUp(); $book1 = new Book(); $book1->setId(9012); $book1->setTitle('Don Juan'); $book1->setISBN('0140422161'); $book1->setPrice(12.99); $book1->setAuthorId(5678); $book1->setPublisherId(1234); $book1->resetModified(); $book2 = new Book(); $book2->setId(58); $book2->setTitle('Harry Potter and the Order of the Phoenix'); $book2->setISBN('043935806X'); $book2->setPrice(10.99); $book2->resetModified(); $this->coll = new PropelObjectCollection(); $this->coll->setModel('Book'); $this->coll[] = $book1; $this->coll[] = $book2; }
/** * Test the BaseObject#equals(). */ public function testEquals() { $b = BookPeer::doSelectOne(new Criteria()); $c = new Book(); $c->setId($b->getId()); $this->assertTrue($b->equals($c), "Expected Book objects to be equal()"); $a = new Author(); $a->setId($b->getId()); $this->assertFalse($b->equals($a), "Expected Book and Author with same primary key NOT to match."); }
private function _toObject($row) { $book = new Book(); $book->setId($row->BookId); $book->setTitle($row->Title); $book->setTitle1($row->Title1); $book->setFormat($row->FileType); $book->setLang($row->Lang); $book->setSize($row->FileSize); $book->setDownloadsNumber($row->DownloadsNumber); $book->setIssueYear($row->Year); return $book; }
public function testToKeyValue() { $author = new Author(); $author->setId(5678); $author->setFirstName('George'); $author->setLastName('Byron'); $book = new Book(); $book->setId(9012); $book->setTitle('Don Juan'); $book->setISBN('0140422161'); $book->setPrice(12.99); $book->setAuthor($author); $coll = new PropelObjectCollection(); $coll->setModel('Book'); $coll->append($book); $this->assertCount(1, $coll); // This will call $book->getId() $this->assertEquals(array(9012 => 'Don Juan'), $coll->toKeyValue('Id', 'Title')); // This will call: $book->getAuthor()->getBooks()->getFirst()->getId() $this->assertEquals(array(9012 => 'Don Juan'), $coll->toKeyValue(array('Author', 'Books', 'First', 'Id'), 'Title')); }