| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <?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.
- *
- * @feed Zend
- * @category Zend
- * @package Zend_Gdata_App
- * @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/Gdata/App/Feed.php';
- require_once 'Zend/Gdata/App.php';
- /**
- * @category Zend
- * @package Zend_Gdata_App
- * @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_Gdata
- * @group Zend_Gdata_App
- */
- class Zend_Gdata_App_FeedTest extends PHPUnit_Framework_TestCase
- {
- public function setUp() {
- $this->feedText = file_get_contents(
- 'Zend/Gdata/App/_files/FeedSample1.xml',
- true);
- $this->feed = new Zend_Gdata_App_Feed();
- }
- public function testEmptyFeedShouldHaveEmptyExtensionsList() {
- $this->assertTrue(is_array($this->feed->extensionElements));
- $this->assertTrue(count($this->feed->extensionElements) == 0);
- }
- public function testEmptyFeedToAndFromStringShouldMatch() {
- $feedXml = $this->feed->saveXML();
- $newFeed = new Zend_Gdata_App_Feed();
- $newFeed->transferFromXML($feedXml);
- $newFeedXml = $newFeed->saveXML();
- $this->assertTrue($feedXml == $newFeedXml);
- }
- public function testConvertFeedToAndFromString() {
- $this->feed->transferFromXML($this->feedText);
- $feedXml = $this->feed->saveXML();
- $newFeed = new Zend_Gdata_App_Feed();
- $newFeed->transferFromXML($feedXml);
- $this->assertEquals(1, count($newFeed->entry));
- $this->assertEquals('dive into mark', $newFeed->title->text);
- $this->assertEquals('text', $newFeed->title->type);
- $this->assertEquals('2005-07-31T12:29:29Z', $newFeed->updated->text);
- $this->assertEquals('tag:example.org,2003:3', $newFeed->id->text);
- $this->assertEquals(2, count($newFeed->link));
- $this->assertEquals('http://example.org/',
- $newFeed->getAlternateLink()->href);
- $this->assertEquals('en',
- $newFeed->getAlternateLink()->hrefLang);
- $this->assertEquals('text/html',
- $newFeed->getAlternateLink()->type);
- $this->assertEquals('http://example.org/feed.atom',
- $newFeed->getSelfLink()->href);
- $this->assertEquals('application/atom+xml',
- $newFeed->getSelfLink()->type);
- $this->assertEquals('Copyright (c) 2003, Mark Pilgrim',
- $newFeed->rights->text);
- $entry = $newFeed->entry[0];
- $this->assertEquals('Atom draft-07 snapshot', $entry->title->text);
- $this->assertEquals('tag:example.org,2003:3.2397',
- $entry->id->text);
- $this->assertEquals('2005-07-31T12:29:29Z', $entry->updated->text);
- $this->assertEquals('2003-12-13T08:29:29-04:00',
- $entry->published->text);
- $this->assertEquals('Mark Pilgrim',
- $entry->author[0]->name->text);
- $this->assertEquals('http://example.org/',
- $entry->author[0]->uri->text);
- $this->assertEquals(2, count($entry->contributor));
- $this->assertEquals('Sam Ruby',
- $entry->contributor[0]->name->text);
- $this->assertEquals('Joe Gregorio',
- $entry->contributor[1]->name->text);
- $this->assertEquals('xhtml', $entry->content->type);
- }
- public function testCanAddIndividualEntries() {
- $this->feed->transferFromXML($this->feedText);
- $this->assertEquals(1, count($this->feed->entry));
- $oldTitle = $this->feed->entry[0]->title->text;
- $newEntry = new Zend_Gdata_App_Entry();
- $newEntry->setTitle(new Zend_Gdata_App_Extension_Title("Foo"));
- $this->feed->addEntry($newEntry);
- $this->assertEquals(2, count($this->feed->entry));
- $this->assertEquals($oldTitle, $this->feed->entry[0]->title->text);
- $this->assertEquals("Foo", $this->feed->entry[1]->title->text);
- }
- public function testCanSetAndGetEtag() {
- $data = "W/&FooBarBaz&";
- $this->feed->setEtag($data);
- $this->assertEquals($this->feed->getEtag(), $data);
- }
- public function testSetServicePropagatesToChildren() {
- // Setup
- $entries = array(new Zend_Gdata_App_Entry(),
- new Zend_Gdata_App_Entry());
- foreach ($entries as $entry) {
- $this->feed->addEntry($entry);
- }
- // Set new service instance and test for propagation
- $s = new Zend_Gdata_App();
- $this->feed->setService($s);
- $service = $this->feed->getService();
- if (!is_object($service)) {
- $this->fail('No feed service received');
- }
- $this->assertEquals('Zend_Gdata_App',
- get_class($service));
- foreach ($entries as $entry) {
- $service = $entry->getService();
- if (!is_object($service)) {
- $this->fail('No entry service received');
- }
- $this->assertEquals('Zend_Gdata_App',
- get_class($service));
- }
- // Set null service instance and test for propagation
- $s = null;
- $this->feed->setService($s);
- $this->assertFalse(is_object($this->feed->getService()));
- foreach ($entries as $entry) {
- $service = $entry->getService();
- $this->assertFalse(is_object($service));
- }
- }
- public function testCanSetMajorProtocolVersion()
- {
- $expectedVersion = 42;
- $this->feed->setMajorProtocolVersion($expectedVersion);
- $receivedVersion = $this->feed->getMajorProtocolVersion();
- $this->assertEquals($expectedVersion, $receivedVersion);
- }
- public function testCanSetMinorProtocolVersion()
- {
- $expectedVersion = 42;
- $this->feed->setMinorProtocolVersion($expectedVersion);
- $receivedVersion = $this->feed->getMinorProtocolVersion();
- $this->assertEquals($expectedVersion, $receivedVersion);
- }
- public function testEntriesInheritFeedVersionOnCreate()
- {
- $major = 98;
- $minor = 12;
- $this->feed->setMajorProtocolVersion($major);
- $this->feed->setMinorProtocolVersion($minor);
- $this->feed->transferFromXML($this->feedText);
- foreach ($this->feed->entries as $entry) {
- $this->assertEquals($major, $entry->getMajorProtocolVersion());
- $this->assertEquals($minor, $entry->getMinorProtocolVersion());
- }
- }
- public function testEntriesInheritFeedVersionOnUpdate()
- {
- $major = 98;
- $minor = 12;
- $this->feed->transferFromXML($this->feedText);
- $this->feed->setMajorProtocolVersion($major);
- $this->feed->setMinorProtocolVersion($minor);
- foreach ($this->feed->entries as $entry) {
- $this->assertEquals($major, $entry->getMajorProtocolVersion());
- $this->assertEquals($minor, $entry->getMinorProtocolVersion());
- }
- }
- public function testDefaultMajorProtocolVersionIs1()
- {
- $this->assertEquals(1, $this->feed->getMajorProtocolVersion());
- }
- public function testDefaultMinorProtocolVersionIsNull()
- {
- $this->assertNull($this->feed->getMinorProtocolVersion());
- }
- public function testLookupNamespaceUsesCurrentVersion()
- {
- $prefix = 'test';
- $v1TestString = 'TEST-v1';
- $v2TestString = 'TEST-v2';
- Zend_Gdata_App_Base::flushNamespaceLookupCache();
- $feed = $this->feed;
- $feed->registerNamespace($prefix, $v1TestString, 1, 0);
- $feed->registerNamespace($prefix, $v2TestString, 2, 0);
- $feed->setMajorProtocolVersion(1);
- $result = $feed->lookupNamespace($prefix);
- $this->assertEquals($v1TestString, $result);
- $feed->setMajorProtocolVersion(2);
- $result = $feed->lookupNamespace($prefix);
- $this->assertEquals($v2TestString, $result);
- $feed->setMajorProtocolVersion(null); // Should default to latest
- $result = $feed->lookupNamespace($prefix);
- }
- public function testLookupNamespaceObeysParentBehavior()
- {
- $prefix = 'test';
- $testString10 = 'TEST-v1-0';
- $testString20 = 'TEST-v2-0';
- $testString11 = 'TEST-v1-1';
- $testString21 = 'TEST-v2-1';
- $testString12 = 'TEST-v1-2';
- $testString22 = 'TEST-v2-2';
- Zend_Gdata_App_Base::flushNamespaceLookupCache();
- $feed = $this->feed;
- $feed->registerNamespace($prefix, $testString10, 1, 0);
- $feed->registerNamespace($prefix, $testString20, 2, 0);
- $feed->registerNamespace($prefix, $testString11, 1, 1);
- $feed->registerNamespace($prefix, $testString21, 2, 1);
- $feed->registerNamespace($prefix, $testString12, 1, 2);
- $feed->registerNamespace($prefix, $testString22, 2, 2);
- // Assumes default version (1)
- $result = $feed->lookupNamespace($prefix, 1, null);
- $this->assertEquals($testString12, $result);
- $result = $feed->lookupNamespace($prefix, 2, null);
- $this->assertEquals($testString22, $result);
- $result = $feed->lookupNamespace($prefix, 1, 1);
- $this->assertEquals($testString11, $result);
- $result = $feed->lookupNamespace($prefix, 2, 1);
- $this->assertEquals($testString21, $result);
- $result = $feed->lookupNamespace($prefix, null, null);
- $this->assertEquals($testString12, $result);
- $result = $feed->lookupNamespace($prefix, null, 1);
- $this->assertEquals($testString11, $result);
- // Override to retrieve latest version
- $feed->setMajorProtocolVersion(null);
- $result = $feed->lookupNamespace($prefix, null, null);
- $this->assertEquals($testString22, $result);
- $result = $feed->lookupNamespace($prefix, null, 1);
- $this->assertEquals($testString21, $result);
- }
- /**
- * @group ZF-10242
- */
- public function testCount()
- {
- $feed = new Zend_Gdata_App_Feed();
- $feed->addEntry('foo')
- ->addEntry('bar');
- $this->assertEquals(2, $feed->count());
- $this->assertEquals(2, count($feed));
- }
- }
|