/**
  * Testing foreign keys with multiple referrer columns.
  * @link       http://propel.phpdb.org/trac/ticket/606
  */
 public function testMultiColFk()
 {
     $con = Propel::getConnection(BookPeer::DATABASE_NAME);
     ReaderFavoritePeer::doDeleteAll();
     $b1 = new Book();
     $b1->setTitle("Book1");
     $b1->setISBN("ISBN-1");
     $b1->save();
     $r1 = new BookReader();
     $r1->setName("Me");
     $r1->save();
     $bo1 = new BookOpinion();
     $bo1->setBookId($b1->getId());
     $bo1->setReaderId($r1->getId());
     $bo1->setRating(9);
     $bo1->setRecommendToFriend(true);
     $bo1->save();
     $rf1 = new ReaderFavorite();
     $rf1->setReaderId($r1->getId());
     $rf1->setBookId($b1->getId());
     $rf1->save();
     $c = new Criteria(ReaderFavoritePeer::DATABASE_NAME);
     $c->add(ReaderFavoritePeer::BOOK_ID, $b1->getId());
     $c->add(ReaderFavoritePeer::READER_ID, $r1->getId());
     $results = ReaderFavoritePeer::doSelectJoinBookOpinion($c);
     $this->assertEquals(1, count($results), "Expected 1 result");
 }
 /**
  * Test the effect of typecast on primary key values and instance pool retrieval.
  */
 public function testObjectInstancePoolTypecasting()
 {
     $reader = new BookReader();
     $reader->setName("Tester");
     $reader->save();
     $readerId = $reader->getId();
     $book = new Book();
     $book->setTitle("BookTest");
     $book->setISBN("TEST");
     $book->save();
     $bookId = $book->getId();
     $opinion = new BookOpinion();
     $opinion->setBookId((string) $bookId);
     $opinion->setReaderId((string) $readerId);
     $opinion->setRating(5);
     $opinion->setRecommendToFriend(false);
     $opinion->save();
     $opinion2 = BookOpinionPeer::retrieveByPK($bookId, $readerId);
     $this->assertSame($opinion, $opinion2, "Expected same object to be retrieved from differently type-casted primary key values.");
 }
Пример #3
0
 /**
  * @link       http://propel.phpdb.org/trac/ticket/519
  */
 public function testDoDeleteCompositePK()
 {
     $con = Propel::getConnection(BookPeer::DATABASE_NAME);
     ReaderFavoritePeer::doDeleteAll();
     // Create books with IDs 1 to 3
     // Create readers with IDs 1 and 2
     $this->createBookWithId(1);
     $this->createBookWithId(2);
     $this->createBookWithId(3);
     $this->createReaderWithId(1);
     $this->createReaderWithId(2);
     for ($i = 1; $i <= 3; $i++) {
         for ($j = 1; $j <= 2; $j++) {
             $bo = new BookOpinion();
             $bo->setBookId($i);
             $bo->setReaderId($j);
             $bo->save();
             $rf = new ReaderFavorite();
             $rf->setBookId($i);
             $rf->setReaderId($j);
             $rf->save();
         }
     }
     $this->assertEquals(6, ReaderFavoritePeer::doCount(new Criteria()));
     // Now delete 2 of those rows (2 is special in that it is the number of rows
     // being deleted, as well as the number of things in the primary key)
     ReaderFavoritePeer::doDelete(array(array(1, 1), array(2, 2)));
     $this->assertEquals(4, ReaderFavoritePeer::doCount(new Criteria()));
     //Note: these composite PK's are pairs of (BookId, ReaderId)
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPK(2, 1));
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPK(1, 2));
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPk(3, 1));
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPk(3, 2));
     $this->assertNull(ReaderFavoritePeer::retrieveByPK(1, 1));
     $this->assertNull(ReaderFavoritePeer::retrieveByPK(2, 2));
     //test deletion of a single composite PK
     ReaderFavoritePeer::doDelete(array(3, 1));
     $this->assertEquals(3, ReaderFavoritePeer::doCount(new Criteria()));
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPK(2, 1));
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPK(1, 2));
     $this->assertNotNull(ReaderFavoritePeer::retrieveByPk(3, 2));
     $this->assertNull(ReaderFavoritePeer::retrieveByPK(1, 1));
     $this->assertNull(ReaderFavoritePeer::retrieveByPK(2, 2));
     $this->assertNull(ReaderFavoritePeer::retrieveByPk(3, 1));
     //test deleting the last three
     ReaderFavoritePeer::doDelete(array(array(2, 1), array(1, 2), array(3, 2)));
     $this->assertEquals(0, ReaderFavoritePeer::doCount(new Criteria()));
 }