diff options
| author | Horus3 | 2014-02-24 16:42:14 +0100 |
|---|---|---|
| committer | Horus3 | 2014-02-24 16:42:14 +0100 |
| commit | 06f945f27840b53e57795dadbc38e76f7e11ab1c (patch) | |
| tree | 689d5c7f4ffa15460c7e90f47c6a7dd59ce4e8bd /zend/tests/Zend/Gdata/CalendarFeedCompositeTest.php | |
| download | random-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz | |
init
Diffstat (limited to 'zend/tests/Zend/Gdata/CalendarFeedCompositeTest.php')
| -rw-r--r-- | zend/tests/Zend/Gdata/CalendarFeedCompositeTest.php | 509 |
1 files changed, 509 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/CalendarFeedCompositeTest.php b/zend/tests/Zend/Gdata/CalendarFeedCompositeTest.php new file mode 100644 index 0000000..3d3d3c6 --- /dev/null +++ b/zend/tests/Zend/Gdata/CalendarFeedCompositeTest.php @@ -0,0 +1,509 @@ +<?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_Calendar + * @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/Calendar.php'; +require_once 'Zend/Gdata/Calendar/EventFeed.php'; +require_once 'Zend/Http/Client.php'; +require_once 'Zend/Http/Client/Adapter/Test.php'; + +/** + * @category Zend + * @package Zend_Gdata_Calendar + * @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 + * @group Zend_Gdata_Calendar + */ +class Zend_Gdata_CalendarFeedCompositeTest extends PHPUnit_Framework_TestCase +{ + protected $eventFeed = null; + + /** + * Called before each test to setup any fixtures. + */ + public function setUp() + { + $eventFeedText = file_get_contents( + 'Zend/Gdata/Calendar/_files/EventFeedCompositeSample1.xml', + true); + $this->eventFeed = new Zend_Gdata_Calendar_EventFeed($eventFeedText); + } + + /** + * Verify that a given property is set to a specific value + * and that the getter and magic variable return the same value. + * + * @param object $obj The object to be interrogated. + * @param string $name The name of the property to be verified. + * @param object $value The expected value of the property. + */ + protected function verifyProperty($obj, $name, $value) + { + $propName = $name; + $propGetter = "get" . ucfirst($name); + + $this->assertEquals($obj->$propGetter(), $obj->$propName); + $this->assertEquals($obj->$propGetter(), $value); + } + + /** + * Verify that a given property is set to a specific value + * and that the getter and magic variable return the same value. + * + * @param object $obj The object to be interrogated. + * @param string $name The name of the property to be verified. + * @param string $secondName 2nd level accessor function name + * @param object $value The expected value of the property. + */ + protected function verifyProperty2($obj, $name, $secondName, $value) + { + $propName = $name; + $propGetter = "get" . ucfirst($name); + $secondGetter = "get" . ucfirst($secondName); + + $this->assertEquals($obj->$propGetter(), $obj->$propName); + $this->assertEquals($obj->$propGetter()->$secondGetter(), $value); + } + + /** + * Convert sample feed to XML then back to objects. Ensure that + * all objects are instances of EventEntry and object count matches. + */ + public function testEventFeedToAndFromString() + { + $entryCount = 0; + foreach ($this->eventFeed as $entry) { + $entryCount++; + $this->assertTrue($entry instanceof Zend_Gdata_Calendar_EventEntry); + } + $this->assertTrue($entryCount > 0); + + /* Grab XML from $this->eventFeed and convert back to objects */ + $newEventFeed = new Zend_Gdata_Calendar_EventFeed( + $this->eventFeed->saveXML()); + $newEntryCount = 0; + foreach ($newEventFeed as $entry) { + $newEntryCount++; + $this->assertTrue($entry instanceof Zend_Gdata_Calendar_EventEntry); + } + $this->assertEquals($entryCount, $newEntryCount); + } + + /** + * Ensure that there number of lsit feeds equals the number + * of calendars defined in the sample file. + */ + public function testEntryCount() + { + //TODO feeds implementing ArrayAccess would be helpful here + $entryCount = 0; + foreach ($this->eventFeed as $entry) { + $entryCount++; + } + $this->assertEquals(7, $entryCount); + $this->assertEquals($entryCount, $this->eventFeed->totalResults->text); + } + + /** + * Check for the existence of an <atom:author> and verify that they + * contain the expected values. + */ + public function testAuthor() + { + $feed = $this->eventFeed; + + // Assert that the feed's author is correct + $feedAuthor = $feed->getAuthor(); + $this->assertEquals($feedAuthor, $feed->author); + $this->assertEquals(1, count($feedAuthor)); + $this->assertTrue($feedAuthor[0] instanceof Zend_Gdata_App_Extension_Author); + $this->verifyProperty2($feedAuthor[0], "name", "text", "GData Ops Demo"); + $this->verifyProperty2($feedAuthor[0], "email", "text", "gdata.ops.demo@gmail.com"); + + // Assert that each entry has valid author data + foreach ($feed as $entry) { + $entryAuthor = $entry->getAuthor(); + $this->assertEquals(1, count($entryAuthor)); + $this->verifyProperty2($entryAuthor[0], "name", "text", "GData Ops Demo"); + $this->verifyProperty2($entryAuthor[0], "email", "text", "gdata.ops.demo@gmail.com"); + $this->verifyProperty($entryAuthor[0], "uri", null); + } + } + + /** + * Check for the existence of an <atom:id> and verify that it contains + * the expected value. + */ + public function testId() + { + $feed = $this->eventFeed; + + // Assert that the feed's ID is correct + $this->assertTrue($feed->getId() instanceof Zend_Gdata_App_Extension_Id); + $this->verifyProperty2($feed, "id", "text", + "http://www.google.com/calendar/feeds/default/private/composite"); + + // Assert that all entry's have an Atom ID object + foreach ($feed as $entry) { + $this->assertTrue($entry->getId() instanceof Zend_Gdata_App_Extension_Id); + } + + // Assert one of the entry's IDs + $entry = $feed[2]; + $this->verifyProperty2($entry, "id", "text", + "http://www.google.com/calendar/feeds/default/private/composite/lq2ai6imsbq209q3aeturho50g"); + } + + /** + * Check for the existence of an <atom:published> and verify that it contains + * the expected value. + */ + public function testPublished() + { + $feed = $this->eventFeed; + + // Assert that all entry's have an Atom Published object + foreach ($feed as $entry) { + $this->assertTrue($entry->getPublished() instanceof Zend_Gdata_App_Extension_Published); + } + + // Assert one of the entry's Published dates + $entry = $feed[2]; + $this->verifyProperty2($entry, "published", "text", "2007-05-09T16:44:38.000Z"); + } + + /** + * Check for the existence of an <atom:updated> and verify that it contains + * the expected value. + */ + public function testUpdated() + { + $feed = $this->eventFeed; + + // Assert that the feed's updated date is correct + $this->assertTrue($feed->getUpdated() instanceof Zend_Gdata_App_Extension_Updated); + $this->verifyProperty2($feed, "updated", "text", + "2007-05-31T01:15:00.000Z"); + + // Assert that all entry's have an Atom Published object + foreach ($feed as $entry) { + $this->assertTrue($entry->getUpdated() instanceof Zend_Gdata_App_Extension_Updated); + } + + // Assert one of the entry's Published dates + $entry = $feed[2]; + $this->verifyProperty2($entry, "updated", "text", "2007-05-17T10:33:49.000Z"); + } + + /** + * Check for the existence of an <atom:title> and verify that it contains + * the expected value. + */ + public function testTitle() + { + $feed = $this->eventFeed; + + // Assert that the feed's title is correct + $this->assertTrue($feed->getTitle() instanceof Zend_Gdata_App_Extension_Title); + $this->verifyProperty2($feed, "title", "text", + "GData Ops Demo's Composite View"); + + // Assert that all entry's have an Atom ID object + foreach ($feed as $entry) { + $this->assertTrue($entry->getTitle() instanceof Zend_Gdata_App_Extension_Title); + } + + // Assert one of the entry's Titles + $entry = $feed[2]; + $this->verifyProperty2($entry, "title", "text", "all day event may 24"); + } + + /** + * Check for the existence of an <atom:subtitle> and verify that it contains + * the expected value. + */ + public function testSubtitle() + { + $feed = $this->eventFeed; + + // Assert that the feed's title is correct + $this->assertTrue($feed->getSubtitle() instanceof Zend_Gdata_App_Extension_Subtitle); + $this->verifyProperty2($feed, "subtitle", "text", + "GData Is Awesome"); + } + + /** + * Check for the existence of an <gCal:timezone> and verify that it contains + * the expected value. + */ + public function testTimezone() + { + $feed = $this->eventFeed; + + // Assert that the feed's title is correct + $this->assertTrue($feed->getTimezone() instanceof Zend_Gdata_Calendar_Extension_Timezone); + $this->verifyProperty2($feed, "timezone", "value", + "America/Chicago"); + } + + + /** + * Check for the existence of an <gCal:eventStatus> and verify that it contains + * the expected value. + */ + public function testEventStatus() + { + $feed = $this->eventFeed; + + // Assert that all entry's have an eventStatus object + foreach ($feed as $entry) { + $this->assertTrue($entry->getEventStatus() instanceof Zend_Gdata_Extension_EventStatus); + } + + // Assert one of the entries values + $entry = $feed[2]; + $this->verifyProperty2($entry, "eventStatus", "value", "http://schemas.google.com/g/2005#event.confirmed"); + } + + /** + * Check for the existence of an <gCal:visibility> and verify that it contains + * the expected value. + */ + public function testVisibility() + { + $feed = $this->eventFeed; + + // Assert that all entry's have a visibility object + foreach ($feed as $entry) { + $this->assertTrue($entry->getVisibility() instanceof Zend_Gdata_Extension_Visibility); + } + + // Assert one of the entries values + $entry = $feed[2]; + $this->verifyProperty2($entry, "visibility", "value", "http://schemas.google.com/g/2005#event.default"); + } + + /** + * Check for the existence of an <gCal:transparency> and verify that it contains + * the expected value. + */ + public function testTransparency() + { + $feed = $this->eventFeed; + + // Assert that all entry's have a transparency object + foreach ($feed as $entry) { + $this->assertTrue($entry->getTransparency() instanceof Zend_Gdata_Extension_Transparency); + } + + // Assert one of the entries values + $entry = $feed[2]; + $this->verifyProperty2($entry, "transparency", "value", "http://schemas.google.com/g/2005#event.transparent"); + } + + /** + * Check for the existence of an <gCal:sendEventNotifications> and verify that it contains + * the expected value. + */ + public function testSendEventNotifications() + { + $feed = $this->eventFeed; + + // Assert that all entry's have a sendEventNotifications object + foreach ($feed as $entry) { + $this->assertTrue($entry->getSendEventNotifications() instanceof Zend_Gdata_Calendar_Extension_SendEventNotifications); + } + + // Assert one of the entry's values + $entry = $feed[2]; + $this->verifyProperty2($entry, "sendEventNotifications", "value", false); + } + + /** + * Check for the existence of an <gd:when> and verify that it contains + * the expected value. + */ + public function testWhen() + { + $feed = $this->eventFeed; + + // Assert one of the entry's values + $entry = $feed[2]; + $when = $entry->getWhen(); + $this->assertEquals($entry->getWhen(), $entry->when); + $this->assertEquals(1, count($when)); + $this->assertTrue($when[0] instanceof Zend_Gdata_Extension_When); + $this->verifyProperty($when[0], "startTime", "2007-05-24"); + $this->verifyProperty($when[0], "endTime", "2007-05-25"); + + // Verify that the reminders show up + $reminders = $when[0]->getReminders(); + $this->assertEquals(2, count($reminders)); + $this->assertTrue($reminders[0] instanceof Zend_Gdata_Extension_Reminder); + $this->assertTrue($reminders[1] instanceof Zend_Gdata_Extension_Reminder); + $this->verifyProperty($reminders[0], "minutes", "10"); + $this->verifyProperty($reminders[0], "method", "alert"); + $this->verifyProperty($reminders[1], "minutes", "10"); + $this->verifyProperty($reminders[1], "method", "email"); + } + + /** + * Check for the existence of an <gd:where> and verify that it contains + * the expected value. + */ + public function testWhere() + { + $feed = $this->eventFeed; + + // Assert one of the entry's values + $entry = $feed[2]; + $where = $entry->getWhere(); + $this->assertEquals(1, count($where)); + $this->assertTrue($where[0] instanceof Zend_Gdata_Extension_Where); + $this->verifyProperty($where[0], "valueString", "Mountain View, California"); + } + + /** + * Check for the existence of an <gd:comments> and verify that it contains + * the expected value. + */ + public function testComments() + { + $feed = $this->eventFeed; + + + // Assert one of the entries has the correct values + // Make sure the comment element looks right + $entry = $feed[2]; + $c = $entry->getComments(); + $this->assertEquals($c, $entry->comments); + $this->assertTrue($c instanceof Zend_Gdata_Extension_Comments); + + // Make sure that the feedLink looks right + $fl = $c->getFeedLink(); + $this->assertTrue($fl instanceof Zend_Gdata_Extension_FeedLink); + $this->assertEquals($fl, $c->feedLink); + $this->verifyProperty($fl, "href", "http://www.google.com/calendar/feeds/default/private/full/lq2ai6imsbq209q3aeturho50g/comments"); + + // Make sure the embedded feed looks right + $cFeed = $fl->getFeed(); + $this->assertTrue($cFeed instanceof Zend_Gdata_App_Feed); + $this->assertEquals($cFeed, $fl->feed); + + // Verify the remainder of the comment feed metadata + $this->assertTrue($cFeed->getUpdated() instanceof Zend_Gdata_App_Extension_Updated); + $this->verifyProperty2($cFeed, "updated", "text", "2007-05-31T01:15:13.249Z"); + + $this->assertTrue($cFeed->getTitle() instanceof Zend_Gdata_App_Extension_Title); + $this->verifyProperty2($cFeed, "title", "text", "Comments for: all day event may 24"); + + // Verify that the comments appear to be good + $commentCount = 0; + foreach ($cFeed as $entry) + { + $this->assertTrue($entry instanceof Zend_Gdata_Entry); + $commentCount++; + } + $this->assertEquals(2, $commentCount); + + // Closely examine one of the comments + $comment = $cFeed[1]; + + $this->assertTrue($comment->getId() instanceof Zend_Gdata_App_Extension_Id); + $this->verifyProperty2($comment, "id", "text", "i9q87onko1uphfs7i21elnnb4g"); + + $this->assertTrue($comment->getPublished() instanceof Zend_Gdata_App_Extension_Published); + $this->verifyProperty2($comment, "published", "text", "2007-06-01T21:21:47.000Z"); + + $this->assertTrue($comment->getUpdated() instanceof Zend_Gdata_App_Extension_Updated); + $this->verifyProperty2($comment, "updated", "text", "2007-06-01T21:21:47.000Z"); + + $this->assertEquals(1, count($comment->author)); + $this->assertTrue($comment->author[0] instanceof Zend_Gdata_App_Extension_Author); + $this->assertTrue($comment->author[0]->getName() instanceof Zend_Gdata_App_Extension_Name); + $this->assertTrue($comment->author[0]->getEmail() instanceof Zend_Gdata_App_Extension_Email); + $this->verifyProperty2($comment->author[0], "name", "text", "User 2"); + $this->verifyProperty2($comment->author[0], "email", "text", "user2@nowhere.invalid"); + + $this->assertTrue($comment->getContent() instanceof Zend_Gdata_App_Extension_Content); + $this->verifyProperty($comment->getContent(), "type", "html"); + $this->assertEquals('<p>This is a user supplied comment.</p>', $comment->getContent()->text); + } + + /** + * Check for the existence of an <gd:where> and verify that it contains + * the expected value. + */ + public function testRecurrence() + { + $feed = $this->eventFeed; + + // Assert one of the entry's values + $entry = $feed[1]; + $this->assertTrue($entry->getRecurrence() instanceof Zend_Gdata_Extension_Recurrence); + $this->verifyProperty2($entry, "recurrence", "text", + "DTSTART;VALUE=DATE:20070501 DTEND;VALUE=DATE:20070502 RRULE:FREQ=WEEKLY;BYDAY=Tu;UNTIL=20070904"); + } + + /** + * Check for the existence of an <openSearch:startIndex> and verify that it contains + * the expected value. + */ + public function testStartIndex() + { + $feed = $this->eventFeed; + + // Assert that the feed's startIndex is correct + $this->assertTrue($feed->getStartIndex() instanceof Zend_Gdata_Extension_OpenSearchStartIndex); + $this->verifyProperty2($feed, "startIndex", "text", "1"); + } + + /** + * Check for the existence of an <openSearch:itemsPerPage> and verify that it contains + * the expected value. + */ + public function testItemsPerPage() + { + $feed = $this->eventFeed; + + // Assert that the feed's itemsPerPage is correct + $this->assertTrue($feed->getItemsPerPage() instanceof Zend_Gdata_Extension_OpenSearchItemsPerPage); + $this->verifyProperty2($feed, "itemsPerPage", "text", "25"); + } + + /** + * Check for the existence of an <atom:generator> and verify that it contains + * the expected value. + */ + public function testGenerator() + { + $feed = $this->eventFeed; + + // Assert that the feed's generator is correct + $this->assertTrue($feed->getGenerator() instanceof Zend_Gdata_App_Extension_Generator); + $this->verifyProperty2($feed, "generator", "version", "1.0"); + $this->verifyProperty2($feed, "generator", "uri", "http://www.google.com/calendar"); + } + + +} |
