summaryrefslogtreecommitdiff
path: root/zend/tests/Zend/Gdata/FeedLinkTest.php
diff options
context:
space:
mode:
authorHorus32014-02-24 16:42:14 +0100
committerHorus32014-02-24 16:42:14 +0100
commit06f945f27840b53e57795dadbc38e76f7e11ab1c (patch)
tree689d5c7f4ffa15460c7e90f47c6a7dd59ce4e8bd /zend/tests/Zend/Gdata/FeedLinkTest.php
downloadrandom-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz
init
Diffstat (limited to 'zend/tests/Zend/Gdata/FeedLinkTest.php')
-rw-r--r--zend/tests/Zend/Gdata/FeedLinkTest.php148
1 files changed, 148 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/FeedLinkTest.php b/zend/tests/Zend/Gdata/FeedLinkTest.php
new file mode 100644
index 0000000..1aaa6a5
--- /dev/null
+++ b/zend/tests/Zend/Gdata/FeedLinkTest.php
@@ -0,0 +1,148 @@
+<?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_Gdata
+ * @subpackage UnitTests
+ * @copyright Copyright (c) 2005-2012 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/Extension/FeedLink.php';
+require_once 'Zend/Gdata.php';
+
+/**
+ * @category Zend
+ * @package Zend_Gdata
+ * @subpackage UnitTests
+ * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license http://framework.zend.com/license/new-bsd New BSD License
+ * @group Zend_Gdata
+ */
+class Zend_Gdata_FeedLinkTest extends PHPUnit_Framework_TestCase
+{
+
+ public function setUp() {
+ $this->feedLinkText = file_get_contents(
+ 'Zend/Gdata/_files/FeedLinkElementSample1.xml',
+ true);
+ $this->feedLink = new Zend_Gdata_Extension_FeedLink();
+ }
+
+ public function testEmptyFeedLinkShouldHaveNoExtensionElements() {
+ $this->assertTrue(is_array($this->feedLink->extensionElements));
+ $this->assertTrue(count($this->feedLink->extensionElements) == 0);
+ }
+
+ public function testEmptyFeedLinkShouldHaveNoExtensionAttributes() {
+ $this->assertTrue(is_array($this->feedLink->extensionAttributes));
+ $this->assertTrue(count($this->feedLink->extensionAttributes) == 0);
+ }
+
+ public function testSampleFeedLinkShouldHaveNoExtensionElements() {
+ $this->feedLink->transferFromXML($this->feedLinkText);
+ $this->assertTrue(is_array($this->feedLink->extensionElements));
+ $this->assertTrue(count($this->feedLink->extensionElements) == 0);
+ }
+
+ public function testSampleFeedLinkShouldHaveNoExtensionAttributes() {
+ $this->feedLink->transferFromXML($this->feedLinkText);
+ $this->assertTrue(is_array($this->feedLink->extensionAttributes));
+ $this->assertTrue(count($this->feedLink->extensionAttributes) == 0);
+ }
+
+ public function testNormalFeedLinkShouldHaveNoExtensionElements() {
+ $this->feedLink->href = "http://www.google.com/calendar/feeds/default/private/full";
+ $this->feedLink->rel = "via";
+ $this->feedLink->countHint = "5";
+ $this->feedLink->readOnly = "false";
+
+ $this->assertEquals("http://www.google.com/calendar/feeds/default/private/full", $this->feedLink->href);
+ $this->assertEquals("via", $this->feedLink->rel);
+ $this->assertEquals("5", $this->feedLink->countHint);
+ $this->assertEquals("false", $this->feedLink->readOnly);
+
+ $this->assertEquals(0, count($this->feedLink->extensionElements));
+ $newFeedLink = new Zend_Gdata_Extension_FeedLink();
+ $newFeedLink->transferFromXML($this->feedLink->saveXML());
+ $this->assertEquals(0, count($newFeedLink->extensionElements));
+ $newFeedLink->extensionElements = array(
+ new Zend_Gdata_App_Extension_Element('foo', 'atom', null, 'bar'));
+ $this->assertEquals(1, count($newFeedLink->extensionElements));
+ $this->assertEquals("http://www.google.com/calendar/feeds/default/private/full", $newFeedLink->href);
+ $this->assertEquals("via", $newFeedLink->rel);
+ $this->assertEquals("5", $newFeedLink->countHint);
+ $this->assertEquals("false", $newFeedLink->readOnly);
+
+ /* try constructing using magic factory */
+ $gdata = new Zend_Gdata();
+ $newFeedLink2 = $gdata->newFeedLink();
+ $newFeedLink2->transferFromXML($newFeedLink->saveXML());
+ $this->assertEquals(1, count($newFeedLink2->extensionElements));
+ $this->assertEquals("http://www.google.com/calendar/feeds/default/private/full", $newFeedLink2->href);
+ $this->assertEquals("via", $newFeedLink2->rel);
+ $this->assertEquals("5", $newFeedLink2->countHint);
+ $this->assertEquals("false", $newFeedLink2->readOnly);
+ }
+
+ public function testEmptyFeedLinkToAndFromStringShouldMatch() {
+ $feedLinkXml = $this->feedLink->saveXML();
+ $newFeedLink = new Zend_Gdata_Extension_FeedLink();
+ $newFeedLink->transferFromXML($feedLinkXml);
+ $newFeedLinkXml = $newFeedLink->saveXML();
+ $this->assertTrue($feedLinkXml == $newFeedLinkXml);
+ }
+
+ public function testFeedLinkWithValueToAndFromStringShouldMatch() {
+ $this->feedLink->href = "http://www.google.com/calendar/feeds/default/private/full";
+ $this->feedLink->rel = "via";
+ $this->feedLink->countHint = "5";
+ $this->feedLink->readOnly = "false";
+ $feedLinkXml = $this->feedLink->saveXML();
+ $newFeedLink = new Zend_Gdata_Extension_FeedLink();
+ $newFeedLink->transferFromXML($feedLinkXml);
+ $newFeedLinkXml = $newFeedLink->saveXML();
+ $this->assertTrue($feedLinkXml == $newFeedLinkXml);
+ $this->assertEquals("http://www.google.com/calendar/feeds/default/private/full", $this->feedLink->href);
+ $this->assertEquals("via", $this->feedLink->rel);
+ $this->assertEquals("5", $this->feedLink->countHint);
+ $this->assertEquals("false", $this->feedLink->readOnly);
+ }
+
+ public function testExtensionAttributes() {
+ $extensionAttributes = $this->feedLink->extensionAttributes;
+ $extensionAttributes['foo1'] = array('name'=>'foo1', 'value'=>'bar');
+ $extensionAttributes['foo2'] = array('name'=>'foo2', 'value'=>'rab');
+ $this->feedLink->extensionAttributes = $extensionAttributes;
+ $this->assertEquals('bar', $this->feedLink->extensionAttributes['foo1']['value']);
+ $this->assertEquals('rab', $this->feedLink->extensionAttributes['foo2']['value']);
+ $feedLinkXml = $this->feedLink->saveXML();
+ $newFeedLink = new Zend_Gdata_Extension_FeedLink();
+ $newFeedLink->transferFromXML($feedLinkXml);
+ $this->assertEquals('bar', $newFeedLink->extensionAttributes['foo1']['value']);
+ $this->assertEquals('rab', $newFeedLink->extensionAttributes['foo2']['value']);
+ }
+
+ public function testConvertFullFeedLinkToAndFromString() {
+ $this->feedLink->transferFromXML($this->feedLinkText);
+ $this->assertEquals("http://www.google.com/calendar/feeds/default/private/full/3tsi3ag1q40bnsik88k25sgpss/comments", $this->feedLink->href);
+ $this->assertEquals("http://schemas.google.com/g/2005#feed", $this->feedLink->rel);
+ $this->assertEquals("0", $this->feedLink->countHint);
+ $this->assertEquals("true", $this->feedLink->readOnly);
+ $this->assertTrue($this->feedLink->feed instanceof Zend_Gdata_App_Feed);
+ $this->assertEquals("Comments for: Sample Event", $this->feedLink->feed->title->text);
+ }
+
+}