| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <?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: AtomTest.php 19159 2009-11-21 14:23:15Z padraic $
- */
- 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_Entry_AtomStandaloneEntryTest extends PHPUnit_Framework_TestCase
- {
- protected $_feedSamplePath = null;
-
- protected $_expectedCats = array();
-
- protected $_expectedCatsDc = array();
- public function setup()
- {
- Zend_Feed_Reader::reset();
- if (Zend_Registry::isRegistered('Zend_Locale')) {
- $registry = Zend_Registry::getInstance();
- unset($registry['Zend_Locale']);
- }
- $this->_feedSamplePath = dirname(__FILE__) . '/_files/AtomStandaloneEntry';
- $this->_options = Zend_Date::setOptions();
- foreach($this->_options as $k=>$v) {
- if (is_null($v)) {
- unset($this->_options[$k]);
- }
- }
- Zend_Date::setOptions(array('format_type'=>'iso'));
- $this->_expectedCats = array(
- array(
- 'term' => 'topic1',
- 'scheme' => 'http://example.com/schema1',
- 'label' => 'topic1'
- ),
- array(
- 'term' => 'topic1',
- 'scheme' => 'http://example.com/schema2',
- 'label' => 'topic1'
- ),
- array(
- 'term' => 'cat_dog',
- 'scheme' => 'http://example.com/schema1',
- 'label' => 'Cat & Dog'
- )
- );
- $this->_expectedCatsDc = array(
- array(
- 'term' => 'topic1',
- 'scheme' => null,
- 'label' => 'topic1'
- ),
- array(
- 'term' => 'topic2',
- 'scheme' => null,
- 'label' => 'topic2'
- )
- );
- }
-
- public function teardown()
- {
- Zend_Date::setOptions($this->_options);
- }
-
- public function testReaderImportOfAtomEntryDocumentReturnsEntryClass()
- {
- $object = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/id/atom10.xml')
- );
- $this->assertTrue($object instanceof Zend_Feed_Reader_Entry_Atom);
- }
- /**
- * Get Id (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsIdFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/id/atom10.xml')
- );
- $this->assertEquals('1', $entry->getId());
- }
- /**
- * Get creation date (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsDateCreatedFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/datecreated/atom10.xml')
- );
- $edate = new Zend_Date;
- $edate->set('2009-03-07T08:03:50Z', Zend_Date::ISO_8601);
- $this->assertTrue($edate->equals($entry->getDateCreated()));
- }
- /**
- * Get modification date (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsDateModifiedFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/datemodified/atom10.xml')
- );
- $edate = new Zend_Date;
- $edate->set('2009-03-07T08:03:50Z', Zend_Date::ISO_8601);
- $this->assertTrue($edate->equals($entry->getDateModified()));
- }
- /**
- * Get Title (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsTitleFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/title/atom10.xml')
- );
- $this->assertEquals('Entry Title', $entry->getTitle());
- }
- /**
- * Get Authors (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsAuthorsFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/author/atom10.xml')
- );
- $authors = array(
- array('email'=>'joe@example.com','name'=>'Joe Bloggs','uri'=>'http://www.example.com'),
- array('name'=>'Joe Bloggs','uri'=>'http://www.example.com'),
- array('name'=>'Joe Bloggs'),
- array('email'=>'joe@example.com','uri'=>'http://www.example.com'),
- array('uri'=>'http://www.example.com'),
- array('email'=>'joe@example.com')
- );
- $this->assertEquals($authors, (array) $entry->getAuthors());
- }
- /**
- * Get Author (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsAuthorFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/author/atom10.xml')
- );
- $this->assertEquals(array('name'=>'Joe Bloggs','email'=>'joe@example.com','uri'=>'http://www.example.com'), $entry->getAuthor());
- }
- /**
- * Get Description (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsDescriptionFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/description/atom10.xml')
- );
- $this->assertEquals('Entry Description', $entry->getDescription());
- }
- /**
- * Get enclosure
- * @group ZFR002
- */
- public function testGetsEnclosureFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath.'/enclosure/atom10.xml')
- );
- $expected = new stdClass();
- $expected->url = 'http://www.example.org/myaudiofile.mp3';
- $expected->length = '1234';
- $expected->type = 'audio/mpeg';
- $this->assertEquals($expected, $entry->getEnclosure());
- }
-
- /**
- * TEXT
- * @group ZFRATOMCONTENT
- */
- public function testGetsContentFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/content/atom10.xml')
- );
- $this->assertEquals('Entry Content &', $entry->getContent());
- }
-
- /**
- * HTML Escaped
- * @group ZFRATOMCONTENT
- */
- public function testGetsContentFromAtom10Html()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/content/atom10_Html.xml')
- );
- $this->assertEquals('<p>Entry Content &</p>', $entry->getContent());
- }
-
- /**
- * HTML CDATA Escaped
- * @group ZFRATOMCONTENT
- */
- public function testGetsContentFromAtom10HtmlCdata()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/content/atom10_HtmlCdata.xml')
- );
- $this->assertEquals('<p>Entry Content &</p>', $entry->getContent());
- }
-
- /**
- * XHTML
- * @group ZFRATOMCONTENT
- */
- public function testGetsContentFromAtom10XhtmlNamespaced()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/content/atom10_Xhtml.xml')
- );
- $this->assertEquals('<p class="x:"><em>Entry Content &x:</em></p>', $entry->getContent());
- }
- /**
- * Get Link (Unencoded Text)
- * @group ZFR002
- */
- public function testGetsLinkFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/link/atom10.xml')
- );
- $this->assertEquals('http://www.example.com/entry', $entry->getLink());
- }
- /**
- * Get Comment HTML Link
- * @group ZFR002
- */
- public function testGetsCommentLinkFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath . '/commentlink/atom10.xml')
- );
- $this->assertEquals('http://www.example.com/entry/comments', $entry->getCommentLink());
- }
-
- /**
- * Get category data
- * @group ZFR002
- */
- public function testGetsCategoriesFromAtom10()
- {
- $entry = Zend_Feed_Reader::importString(
- file_get_contents($this->_feedSamplePath.'/category/atom10.xml')
- );
- $this->assertEquals($this->_expectedCats, (array) $entry->getCategories());
- $this->assertEquals(array('topic1','Cat & Dog'), array_values($entry->getCategories()->getValues()));
- }
-
- }
|