| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- <?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$
- */
- /**
- * @see Zend_Feed
- */
- require_once 'Zend/Feed.php';
- /**
- * @see Zend_Feed_Builder
- */
- require_once 'Zend/Feed/Builder.php';
- /**
- * @see Zend_Http_Client_Adapter_Test
- */
- require_once 'Zend/Http/Client/Adapter/Test.php';
- /**
- * @see Zend_Http_Client
- */
- require_once 'Zend/Http/Client.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
- */
- class Zend_Feed_ImportTest extends PHPUnit_Framework_TestCase
- {
- protected $_client;
- protected $_feedDir;
- /**
- * HTTP client test adapter
- *
- * @var Zend_Http_Client_Adapter_Test
- */
- protected $_adapter;
- public function setUp()
- {
- $this->_adapter = new Zend_Http_Client_Adapter_Test();
- Zend_Feed::setHttpClient(new Zend_Http_Client(null, array('adapter' => $this->_adapter)));
- $this->_client = Zend_Feed::getHttpClient();
- $this->_feedDir = dirname(__FILE__) . '/_files';
- }
- /**
- * Test an atom feed generated by google's Blogger platform
- */
- public function testAtomGoogle()
- {
- $this->_importAtomValid('AtomTestGoogle.xml');
- }
- /**
- * Test an atom feed generated by mozillaZine.org
- */
- public function testAtomMozillazine()
- {
- $this->_importAtomValid('AtomTestMozillazine.xml');
- }
- /**
- * Test an atom feed generated by O'Reilly
- */
- public function testAtomOReilly()
- {
- $this->_importAtomValid('AtomTestOReilly.xml');
- }
- /**
- * Test an atom feed generated by PlanetPHP
- */
- public function testAtomPlanetPHP()
- {
- $this->_importAtomValid('AtomTestPlanetPHP.xml');
- }
- /**
- * Test a small atom feed
- */
- public function testAtomSample1()
- {
- $this->_importAtomValid('AtomTestSample1.xml');
- }
- /**
- * Test a small atom feed without any entries
- */
- public function testAtomSample2()
- {
- $this->_importAtomValid('AtomTestSample2.xml');
- }
- /**
- * Test an atom feed with a </entry> tag missing
- */
- public function testAtomSample3()
- {
- $this->_importInvalid('AtomTestSample3.xml');
- }
- /**
- * Test an atom feed with links within entries
- */
- public function testAtomSample4()
- {
- $this->_importAtomValid('AtomTestSample4.xml');
- }
- /**
- * Test a RSS feed generated by UserLand Frontier v9.5
- */
- public function testRssHarvardLaw()
- {
- $this->_importRssValid('RssTestHarvardLaw.xml');
- }
- /**
- * Test a RSS feed generated by PlanetPHP
- */
- public function testRssPlanetPHP()
- {
- $this->_importRssValid('RssTestPlanetPHP.xml');
- }
- /**
- * Test a RSS feed generated by Slashdot
- */
- public function testRssSlashdot()
- {
- $this->_importRssValid('RssTestSlashdot.xml');
- }
- /**
- * Test a RSS feed generated by CNN
- */
- public function testRssCNN()
- {
- $this->_importRssValid('RssTestCNN.xml');
- }
- /**
- * Test a valid RSS 0.91 sample
- */
- public function testRss091Sample1()
- {
- $this->_importRssValid('RssTest091Sample1.xml');
- }
- /**
- * Test a valid RSS 0.91 sample
- */
- public function testRss092Sample1()
- {
- $this->_importRssValid('RssTest092Sample1.xml');
- }
- /**
- * Test a valid RSS 1.0 sample
- */
- public function testRss100Sample1()
- {
- $feed = $this->_importRssValid('RssTest100Sample1.xml');
- $this->assertEquals(2, $feed->count());
- }
- /**
- * Test a valid RSS 1.0 sample with some extensions in it
- */
- public function testRss100Sample2()
- {
- $feed = $this->_importRssValid('RssTest100Sample2.xml');
- $this->assertEquals(1, $feed->count());
- }
- /**
- * Test a valid RSS 2.0 sample
- */
- public function testRss200Sample1()
- {
- $this->_importRssValid('RssTest200Sample1.xml');
- }
- /**
- * Test the import of a RSS feed from an array
- */
- public function testRssImportFullArray()
- {
- $feed = Zend_Feed::importArray($this->_getFullArray(), 'rss');
- $this->assertTrue($feed instanceof Zend_Feed_Rss);
- }
- /**
- * Test the import of a RSS feed from an array
- * @group ZF-5833
- */
- public function testRssImportSetsIsPermaLinkAsFalseIfGuidNotAUri()
- {
- $feed = Zend_Feed::importArray($this->_getFullArray(), 'rss');
- $entry = $feed->current();
- $this->assertEquals('false', $entry->guid['isPermaLink']);
- }
- /**
- * Test the import of a RSS feed from an array
- */
- public function testAtomImportFullArray()
- {
- $feed = Zend_Feed::importArray($this->_getFullArray(), 'atom');
- }
- /**
- * Test the import of a RSS feed from a builder
- */
- public function testRssImportFullBuilder()
- {
- $feed = Zend_Feed::importBuilder(new Zend_Feed_Builder($this->_getFullArray()), 'rss');
- $this->assertTrue($feed instanceof Zend_Feed_Rss);
- }
- /**
- * Test the import of a full iTunes RSS feed from a builder
- */
- public function testRssImportFulliTunesBuilder()
- {
- $array = $this->_getFullArray();
- $array['itunes']['author'] = 'iTunes Author';
- $array['itunes']['owner'] = array('name' => 'iTunes Owner',
- 'email' => 'itunes@example.com');
- $array['itunes']['image'] = 'http://www.example/itunes.png';
- $array['itunes']['subtitle'] = 'iTunes subtitle';
- $array['itunes']['summary'] = 'iTunes summary';
- $array['itunes']['explicit'] = 'clean';
- $array['itunes']['block'] = 'no';
- $array['itunes']['new-feed-url'] = 'http://www.example/itunes.xml';
- $feed = Zend_Feed::importBuilder(new Zend_Feed_Builder($array), 'rss');
- $this->assertTrue($feed instanceof Zend_Feed_Rss);
- }
- /**
- * Test the import of an Atom feed from a builder
- */
- public function testAtomImportFullBuilder()
- {
- $feed = Zend_Feed::importBuilder(new Zend_Feed_Builder($this->_getFullArray()), 'atom');
- }
- /**
- * Test the import of an Atom feed from a builder
- */
- public function testAtomImportFullBuilderValid()
- {
- $feed = Zend_Feed::importBuilder(new Zend_Feed_Builder($this->_getFullArray()), 'atom');
- $feed = Zend_Feed::importString($feed->saveXml());
- $this->assertTrue($feed instanceof Zend_Feed_Atom);
- }
- /**
- * Check the validity of the builder import (rss)
- */
- public function testRssImportFullBuilderValid()
- {
- $feed = Zend_Feed::importBuilder(new Zend_Feed_Builder($this->_getFullArray()), 'rss');
- $this->assertTrue($feed instanceof Zend_Feed_Rss);
- $feed = Zend_Feed::importString($feed->saveXml());
- $this->assertTrue($feed instanceof Zend_Feed_Rss);
- }
- /**
- * Test the return of a link() call (atom)
- */
- public function testAtomGetLink()
- {
- $feed = Zend_Feed::importBuilder(new Zend_Feed_Builder($this->_getFullArray()), 'atom');
- $this->assertTrue($feed instanceof Zend_Feed_Atom);
- $feed = Zend_Feed::importString($feed->saveXml());
- $this->assertTrue($feed instanceof Zend_Feed_Atom);
- $href = $feed->link('self');
- $this->assertEquals('http://www.example.com', $href);
- }
- /**
- * Imports an invalid feed and ensure everything works as expected
- * even if XDebug is running (ZF-2590).
- */
- public function testImportInvalidIsXdebugAware()
- {
- if (!function_exists('xdebug_is_enabled')) {
- $this->markTestIncomplete('XDebug not installed');
- }
- $response = new Zend_Http_Response(200, array(), '');
- $this->_adapter->setResponse($response);
- try {
- $feed = Zend_Feed::import('http://localhost');
- $this->fail('Expected Zend_Feed_Exception not thrown');
- } catch (Zend_Feed_Exception $e) {
- $this->assertTrue($e instanceof Zend_Feed_Exception);
- $this->assertRegExp('/(XDebug is running|Empty string)/', $e->getMessage());
- }
- }
- /**
- * Returns the array used by Zend_Feed::importArray
- * and Zend_Feed::importBuilder tests
- *
- * @return array
- */
- protected function _getFullArray()
- {
- $array = array('title' => 'Title of the feed',
- 'link' => 'http://www.example.com',
- 'description' => 'Description of the feed',
- 'author' => 'Olivier Sirven',
- 'email' => 'olivier@elma.fr',
- 'webmaster' => 'olivier@elma.fr',
- 'charset' => 'iso-8859-15',
- 'lastUpdate' => time(),
- 'published' => strtotime('2007-02-27'),
- 'copyright' => 'Common Creative',
- 'image' => 'http://www.example/images/icon.png',
- 'language' => 'en',
- 'ttl' => 60,
- 'rating' => ' (PICS-1.1 "http://www.gcf.org/v2.5" labels
- on "1994.11.05T08:15-0500"
- exp "1995.12.31T23:59-0000"
- for "http://www.greatdocs.com/foo.html"
- by "George Sanderson, Jr."
- ratings (suds 0.5 density 0 color/hue 1))',
- 'cloud' => array('domain' => 'rpc.sys.com',
- 'path' => '/rpc',
- 'registerProcedure' => 'webServices.pingMe',
- 'protocol' => 'xml-rpc'),
- 'textInput' => array('title' => 'subscribe',
- 'description' => 'enter your email address to subscribe by mail',
- 'name' => 'email',
- 'link' => 'http://www.example.com/subscribe'),
- 'skipHours' => array(1, 13, 17),
- 'skipDays' => array('Saturday', 'Sunday'),
- 'itunes' => array('block' => 'no',
- 'keywords' => 'example,itunes,podcast',
- 'category' => array(array('main' => 'Technology',
- 'sub' => 'Gadgets'),
- array('main' => 'Music'))),
- 'entries' => array(array('guid' => time(),
- 'title' => 'First article',
- 'link' => 'http://www.example.com',
- 'description' => 'First article description',
- 'content' => 'First article <strong>content</strong>',
- 'lastUpdate' => time(),
- 'comments' => 'http://www.example.com/#comments',
- 'commentRss' => 'http://www.example.com/comments.xml',
- 'source' => array('title' => 'Original title',
- 'url' => 'http://www.domain.com'),
- 'category' => array(array('term' => 'test category',
- 'scheme' => 'http://www.example.com/scheme'),
- array('term' => 'another category')
- ),
- 'enclosure' => array(array('url' => 'http://www.example.com/podcast.mp3',
- 'type' => 'audio/mpeg',
- 'length' => '12216320'
- ),
- array('url' => 'http://www.example.com/podcast2.mp3',
- 'type' => 'audio/mpeg',
- 'length' => '1221632'
- )
- )
- ),
- array('title' => 'Second article',
- 'link' => 'http://www.example.com/two',
- 'description' => 'Second article description',
- 'content' => 'Second article <strong>content</strong>',
- 'lastUpdate' => time(),
- 'comments' => 'http://www.example.com/two/#comments',
- 'category' => array(array('term' => 'test category')),
- )
- )
- );
- return $array;
- }
- /**
- * Import an invalid atom feed
- */
- protected function _importAtomValid($filename)
- {
- $response = new Zend_Http_Response(200, array(), file_get_contents("$this->_feedDir/$filename"));
- $this->_adapter->setResponse($response);
- $feed = Zend_Feed::import('http://localhost');
- $this->assertTrue($feed instanceof Zend_Feed_Atom);
- }
- /**
- * Import a valid rss feed
- */
- protected function _importRssValid($filename)
- {
- $response = new Zend_Http_Response(200, array(), file_get_contents("$this->_feedDir/$filename"));
- $this->_adapter->setResponse($response);
- $feed = Zend_Feed::import('http://localhost');
- $this->assertTrue($feed instanceof Zend_Feed_Rss);
- return $feed;
- }
- /**
- * Imports an invalid feed
- */
- protected function _importInvalid($filename)
- {
- $response = new Zend_Http_Response(200, array(), file_get_contents("$this->_feedDir/$filename"));
- $this->_adapter->setResponse($response);
- try {
- $feed = Zend_Feed::import('http://localhost');
- $this->fail('Expected Zend_Feed_Exception not thrown');
- } catch (Zend_Feed_Exception $e) {
- $this->assertTrue($e instanceof Zend_Feed_Exception);
- }
- }
- /**
- * @group ZF-5903
- */
- public function testFindFeedsIncludesUriAsArrayKey()
- {
- if (!defined('TESTS_ZEND_FEED_READER_ONLINE_ENABLED')
- || !constant('TESTS_ZEND_FEED_READER_ONLINE_ENABLED')
- ) {
- $this->markTestSkipped('testFindFeedsIncludesUriAsArrayKey() requires a network connection');
- return;
- }
- Zend_Feed::setHttpClient(new Zend_Http_Client);
- $feeds = Zend_Feed::findFeeds('http://www.planet-php.net');
- $this->assertEquals(array(
- 'http://www.planet-php.org:80/rss/', 'http://www.planet-php.org:80/rdf/'
- ), array_keys($feeds));
- }
- }
|