summaryrefslogtreecommitdiff
path: root/zend/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'zend/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php')
-rwxr-xr-xzend/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php395
1 files changed, 395 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php b/zend/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php
new file mode 100755
index 0000000..1684454
--- /dev/null
+++ b/zend/tests/Zend/Gdata/Photos/PhotosPhotoEntryTest.php
@@ -0,0 +1,395 @@
+<?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_Photos
+ * @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/Photos.php';
+require_once 'Zend/Gdata/Photos/PhotoEntry.php';
+require_once 'Zend/Http/Client.php';
+require_once 'Zend/Http/Client/Adapter/Test.php';
+
+/**
+ * @category Zend
+ * @package Zend_Gdata_Photos
+ * @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_Photos
+ */
+class Zend_Gdata_Photos_PhotosPhotoEntryTest extends PHPUnit_Framework_TestCase
+{
+
+ protected $photoEntry = null;
+
+ /**
+ * Called before each test to setup any fixtures.
+ */
+ public function setUp()
+ {
+ $photoEntryText = file_get_contents(
+ '_files/TestPhotoEntry.xml',
+ true);
+ $this->photoEntry = new Zend_Gdata_Photos_PhotoEntry($photoEntryText);
+ }
+
+ /**
+ * 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($value, $obj->$propGetter());
+ }
+
+ /**
+ * 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($value, $obj->$propGetter()->$secondGetter());
+ }
+
+ /**
+ * Verify that a given property is set to a specific value,
+ * that it keeps that value when set using the setter,
+ * 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 verifyProperty3($obj, $name, $secondName, $value)
+ {
+ $propName = $name;
+ $propGetter = "get" . ucfirst($name);
+ $propSetter = "set" . ucfirst($name);
+ $secondGetter = "get" . ucfirst($secondName);
+ $secondSetter = "set" . ucfirst($secondName);
+
+ $this->assertEquals($obj->$propGetter(), $obj->$propName);
+ $obj->$propSetter($obj->$propName);
+ $this->assertEquals($value, $obj->$propGetter()->$secondGetter());
+ }
+
+ /**
+ * Check for the existence of an <atom:id> and verify that it contains
+ * the expected value.
+ */
+ public function testId()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's ID is correct
+ $this->assertTrue($entry->getId() instanceof Zend_Gdata_App_Extension_Id);
+ $this->verifyProperty2($entry, "id", "text",
+ "http://picasaweb.google.com/data/entry/api/user/sample.user/albumid/1/photoid/100");
+ }
+
+ /**
+ * Check for the existence of an <atom:published> and verify that it contains
+ * the expected value.
+ */
+ public function testPublished()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the photo entry has an Atom Published object
+ $this->assertTrue($entry->getPublished() instanceof Zend_Gdata_App_Extension_Published);
+ $this->verifyProperty2($entry, "published", "text", "2007-09-05T20:49:24.000Z");
+ }
+
+ /**
+ * Check for the existence of an <atom:updated> and verify that it contains
+ * the expected value.
+ */
+ public function testUpdated()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's updated date is correct
+ $this->assertTrue($entry->getUpdated() instanceof Zend_Gdata_App_Extension_Updated);
+ $this->verifyProperty2($entry, "updated", "text",
+ "2007-09-21T18:19:38.000Z");
+ }
+
+ /**
+ * Check for the existence of an <atom:title> and verify that it contains
+ * the expected value.
+ */
+ public function testTitle()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's title is correct
+ $this->assertTrue($entry->getTitle() instanceof Zend_Gdata_App_Extension_Title);
+ $this->verifyProperty2($entry, "title", "text", "Aqua Graphite.jpg");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:id> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoId()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's title is correct
+ $this->assertTrue($entry->getGphotoId() instanceof Zend_Gdata_Photos_Extension_Id);
+ $this->verifyProperty2($entry, "gphotoId", "text",
+ "100");
+ $this->verifyProperty3($entry, "gphotoId", "text",
+ "100");
+ }
+
+ /**
+ * Check for the existance of exif namespaced data and verify that it contains
+ * the expected value.
+ */
+ public function testExifData()
+ {
+ $exifTags = $this->photoEntry->exifTags;
+ $this->assertTrue($exifTags != null);
+ $this->assertTrue($exifTags->flash != null);
+ $this->assertTrue($exifTags->fstop != null);
+ $this->assertTrue($exifTags->exposure != null);
+ $this->assertTrue($exifTags->focallength != null);
+ $this->assertTrue($exifTags->iso != null);
+ $this->assertTrue($exifTags->time != null);
+ $this->assertTrue($exifTags->distance != null);
+ $this->assertTrue($exifTags->make != null);
+ $this->assertTrue($exifTags->model != null);
+ $this->assertTrue($exifTags->imageUniqueID != null);
+ $this->assertEquals("true", $exifTags->flash->text);
+ $this->assertEquals("11.0", $exifTags->fstop->text);
+ $this->assertEquals("0.0040", $exifTags->exposure->text);
+ $this->assertEquals("22.0", $exifTags->focallength->text);
+ $this->assertEquals("200", $exifTags->iso->text);
+ $this->assertEquals("1180950900000", $exifTags->time->text);
+ $this->assertEquals("0.0",$exifTags->distance->text);
+ $this->assertEquals("Fictitious Camera Company",$exifTags->make->text);
+ $this->assertEquals("AMAZING-100D",$exifTags->model->text);
+ $this->assertEquals("a5ce2e36b9df7d3cb081511c72e73926", $exifTags->imageUniqueID->text);
+ }
+
+ /**
+ * Check for the geo data and verify that it contains the expected values
+ */
+ public function testGeoData()
+ {
+ $geoRssWhere = $this->photoEntry->geoRssWhere;
+ $point = $geoRssWhere->point;
+ $pos = $point->pos;
+ $this->assertEquals("41.87194 12.56738", $pos->text);
+ }
+
+
+ /**
+ * Check for the existence of an <gphoto:version> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoVersion()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's version is correct
+ $this->assertTrue($entry->getGphotoVersion() instanceof Zend_Gdata_Photos_Extension_Version);
+ $this->verifyProperty2($entry, "gphotoVersion", "text",
+ "1190398778006402");
+ $this->verifyProperty3($entry, "gphotoVersion", "text",
+ "1190398778006402");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:albumid> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoAlbumId()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's albumid is correct
+ $this->assertTrue($entry->getGphotoAlbumId() instanceof Zend_Gdata_Photos_Extension_AlbumId);
+ $this->verifyProperty2($entry, "gphotoAlbumId", "text",
+ "1");
+ $this->verifyProperty3($entry, "gphotoAlbumId", "text",
+ "1");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:width> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoWidth()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's width is correct
+ $this->assertTrue($entry->getGphotoWidth() instanceof Zend_Gdata_Photos_Extension_Width);
+ $this->verifyProperty2($entry, "gphotoWidth", "text",
+ "2560");
+ $this->verifyProperty3($entry, "gphotoWidth", "text",
+ "2560");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:height> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoHeight()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's height is correct
+ $this->assertTrue($entry->getGphotoHeight() instanceof Zend_Gdata_Photos_Extension_Height);
+ $this->verifyProperty2($entry, "gphotoHeight", "text",
+ "1600");
+ $this->verifyProperty3($entry, "gphotoHeight", "text",
+ "1600");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:size> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoSize()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's size is correct
+ $this->assertTrue($entry->getGphotoSize() instanceof Zend_Gdata_Photos_Extension_Size);
+ $this->verifyProperty2($entry, "gphotoSize", "text",
+ "798334");
+ $this->verifyProperty3($entry, "gphotoSize", "text",
+ "798334");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:client> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoClient()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's client is correct
+ $this->assertTrue($entry->getGphotoClient() instanceof Zend_Gdata_Photos_Extension_Client);
+ $this->verifyProperty2($entry, "gphotoClient", "text",
+ "");
+ $this->verifyProperty3($entry, "gphotoClient", "text",
+ "");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:checksum> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoChecksum()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's checksum is correct
+ $this->assertTrue($entry->getGphotoChecksum() instanceof Zend_Gdata_Photos_Extension_Checksum);
+ $this->verifyProperty2($entry, "gphotoChecksum", "text",
+ "");
+ $this->verifyProperty3($entry, "gphotoChecksum", "text",
+ "");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:timestamp> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoTimestamp()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's title is correct
+ $this->assertTrue($entry->getGphotoTimestamp() instanceof Zend_Gdata_Photos_Extension_Timestamp);
+ $this->verifyProperty2($entry, "gphotoTimestamp", "text",
+ "1189025363000");
+ $this->verifyProperty3($entry, "gphotoTimestamp", "text",
+ "1189025363000");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:commentingEnabled> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoCommentingEnabled()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's title is correct
+ $this->assertTrue($entry->getGphotoCommentingEnabled() instanceof Zend_Gdata_Photos_Extension_CommentingEnabled);
+ $this->verifyProperty2($entry, "gphotoCommentingEnabled", "text",
+ "true");
+ $this->verifyProperty3($entry, "gphotoCommentingEnabled", "text",
+ "true");
+ }
+
+ /**
+ * Check for the existence of an <gphoto:commentCount> and verify that it contains
+ * the expected value.
+ */
+ public function testGphotoCommentCount()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's title is correct
+ $this->assertTrue($entry->getGphotoCommentCount() instanceof Zend_Gdata_Photos_Extension_CommentCount);
+ $this->verifyProperty2($entry, "gphotoCommentCount", "text",
+ "0");
+ $this->verifyProperty3($entry, "gphotoCommentCount", "text",
+ "0");
+ }
+
+ /**
+ * Check for the existence of a <media:group>
+ */
+ public function testMediaGroup()
+ {
+ $entry = $this->photoEntry;
+
+ // Assert that the entry's media group exists
+ $this->assertTrue($entry->getMediaGroup() instanceof Zend_Gdata_Media_Extension_MediaGroup);
+ }
+
+}