Example #1
0
 /**
  * @param Feed $feed
  * @depends testSaveFeeds
  */
 public function testSaveSameFeed(Feed $feed)
 {
     $store = new PdoStore($this->dsn, null, null);
     // we should search for feed
     $feed->setId(null);
     $record = new Record();
     $record->setTitle('item 2');
     $record->setPublicationDate(new \DateTime('-10 hours'));
     $feed->addRecord($record);
     $store->save($feed);
     $loadedFeed = $store->loadFeed(1);
     $records = $store->loadItems($loadedFeed->getId());
     static::assertEquals($record->getTitle(), $records[2]->getTitle());
 }
Example #2
0
 private function hydrateFeed(array $row)
 {
     $feed = new Feed();
     $feed->setId($row['id']);
     $feed->setSource($row['source']);
     $feed->setLink($row['link']);
     $feed->setDescription($row['description']);
     $feed->setTitle($row['title']);
     $feed->setPublishedDate(new \DateTime($row['published_date']));
     $feed->setLastFetched(new \DateTime($row['last_fetched']));
     $feed->setLastModified(new \DateTime($row['last_modified']));
     return $feed;
 }