| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Feed
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once 'Zend/Feed/Reader.php';
- /**
- * @category Zend
- * @package Zend_Feed
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_Feed
- * @group Zend_Feed_Reader
- */
- class Zend_Feed_Reader_Integration_WordpressRss2DcAtomTest extends PHPUnit_Framework_TestCase
- {
- protected $_feedSamplePath = null;
- public function setup()
- {
- Zend_Feed_Reader::reset();
- $this->_feedSamplePath = dirname(__FILE__) . '/_files/wordpress-rss2-dc-atom.xml';
- }
- /**
- * Feed level testing
- */
- public function testGetsTitle()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals('Norm 2782', $feed->getTitle());
- }
- public function testGetsAuthors()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals(array(
- array('name'=>'norm2782')
- ), (array) $feed->getAuthors());
- }
- public function testGetsSingleAuthor()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals(array('name'=>'norm2782'), $feed->getAuthor());
- }
- public function testGetsCopyright()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals(null, $feed->getCopyright());
- }
- public function testGetsDescription()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals('Why are you here?', $feed->getDescription());
- }
- public function testGetsLanguage()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals('en', $feed->getLanguage());
- }
- public function testGetsLink()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals('http://www.norm2782.com', $feed->getLink());
- }
- public function testGetsEncoding()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals('UTF-8', $feed->getEncoding());
- }
- public function testGetsEntryCount()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $this->assertEquals(10, $feed->count());
- }
- /**
- * Entry level testing
- */
- public function testGetsEntryId()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals('http://www.norm2782.com/?p=114', $entry->getId());
- }
- public function testGetsEntryTitle()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- /**
- * Note: The three dots below is actually a single Unicode character
- * called the "three dot leader". Don't replace in error!
- */
- $this->assertEquals('Wth… reading books?', $entry->getTitle());
- }
- public function testGetsEntryAuthors()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals(array(array('name'=>'norm2782')), (array) $entry->getAuthors());
- }
- public function testGetsEntrySingleAuthor()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals(array('name'=>'norm2782'), $entry->getAuthor());
- }
- public function testGetsEntryDescription()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- /**
- * Note: "’" is not the same as "'" - don't replace in error
- */
- $this->assertEquals('Being in New Zealand does strange things to a person. Everybody who knows me, knows I don’t much like that crazy invention called a Book. However, being here I’ve already finished 4 books, all of which I can highly recommend.'."\n\n".'Agile Software Development with Scrum, by Ken Schwaber and Mike Beedle'."\n".'Domain-Driven Design: Tackling Complexity in the [...]', $entry->getDescription());
- }
- public function testGetsEntryContent()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals('<p>Being in New Zealand does strange things to a person. Everybody who knows me, knows I don’t much like that crazy invention called a Book. However, being here I’ve already finished 4 books, all of which I can highly recommend.</p>'."\n".'<ul>'."\n".'<li><a href="http://www.amazon.com/Agile-Software-Development-Scrum/dp/0130676349/">Agile Software Development with Scrum, by Ken Schwaber and Mike Beedle</a></li>'."\n".'<li><a href="http://www.amazon.com/Domain-Driven-Design-Tackling-Complexity-Software/dp/0321125215/">Domain-Driven Design: Tackling Complexity in the Heart of Software, by Eric Evans</a></li>'."\n".'<li><a href="http://www.amazon.com/Enterprise-Application-Architecture-Addison-Wesley-Signature/dp/0321127420/">Patterns of Enterprise Application Architecture, by Martin Fowler</a></li>'."\n".'<li><a href="http://www.amazon.com/Refactoring-Improving-Existing-Addison-Wesley-Technology/dp/0201485672/">Refactoring: Improving the Design of Existing Code by Martin Fowler</a></li>'."\n".'</ul>'."\n".'<p>Next up: <a href="http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612/">Design Patterns: Elements of Reusable Object-Oriented Software, by the Gang of Four</a>. Yes, talk about classics and shame on me for not having ordered it sooner! Also reading <a href="http://www.amazon.com/Implementation-Patterns-Addison-Wesley-Signature-Kent/dp/0321413091/">Implementation Patterns, by Kent Beck</a> at the moment.</p>'."\n", $entry->getContent());
- }
- public function testGetsEntryLinks()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals(array('http://www.norm2782.com/2009/03/wth-reading-books/'), $entry->getLinks());
- }
- public function testGetsEntryLink()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals('http://www.norm2782.com/2009/03/wth-reading-books/', $entry->getLink());
- }
- public function testGetsEntryPermaLink()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals('http://www.norm2782.com/2009/03/wth-reading-books/',
- $entry->getPermaLink());
- }
- public function testGetsEntryEncoding()
- {
- $feed = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath)
- );
- $entry = $feed->current();
- $this->assertEquals('UTF-8', $entry->getEncoding());
- }
- }
|