summaryrefslogtreecommitdiff
path: root/zend/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.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/Photos/PhotosAlbumQueryTest.php
downloadrandom-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz
init
Diffstat (limited to 'zend/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.php')
-rwxr-xr-xzend/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.php198
1 files changed, 198 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.php b/zend/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.php
new file mode 100755
index 0000000..7035535
--- /dev/null
+++ b/zend/tests/Zend/Gdata/Photos/PhotosAlbumQueryTest.php
@@ -0,0 +1,198 @@
+<?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/AlbumQuery.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_PhotosAlbumQueryTest extends PHPUnit_Framework_TestCase
+{
+
+ /**
+ * Check the consistency of an album feed request
+ */
+ public function testSimpleAlbumQuery()
+ {
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/albumid/1";
+
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+ $query->setAlbumId("1");
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/album/test";
+
+ $query->setAlbumId(null);
+ $query->setAlbumName("test");
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+ }
+
+ /**
+ * Check for thrown exceptions upon improper albumname/id setting
+ */
+ public function testAlbumQueryExceptions()
+ {
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+
+ try {
+ $generatedString = $query->getQueryUrl();
+ } catch (Exception $e) {
+ $this->assertTrue($e instanceof Zend_Gdata_App_InvalidArgumentException);
+ }
+
+ $query->setAlbumId("1");
+ $query->setAlbumName("test");
+
+ try {
+ $generatedString = $query->getQueryUrl();
+ } catch (Exception $e) {
+ $this->assertTrue($e instanceof Zend_Gdata_App_InvalidArgumentException);
+ }
+ }
+
+ /**
+ * Check the consistency of an album feed request
+ * Projection is set to base
+ */
+ public function testBaseAlbumQuery()
+ {
+ $queryString = "https://picasaweb.google.com/data/feed/base/user/sample.user/albumid/1";
+
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+ $query->setAlbumId("1");
+ $query->setProjection("base");
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+ }
+
+ /**
+ * Check the consistency of an album feed request filtered
+ * for a specific tag
+ */
+ public function testTagFilterAlbumQuery()
+ {
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/albumid/1?tag=test";
+
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+ $query->setAlbumId("1");
+ $query->setTag("test");
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+ }
+
+ /**
+ * Check the consistency of an album feed request for private data
+ */
+ public function testPrivateAlbumQuery()
+ {
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/albumid/1?access=private";
+
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+ $query->setAlbumId("1");
+ $query->setAccess("private");
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+ }
+
+ /**
+ * Check the consistency of an album feed request for specifically-sized thumbnails
+ */
+ public function testThumbnailAlbumQuery()
+ {
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/albumid/1?thumbsize=72";
+
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+ $query->setAlbumId("1");
+ $query->setThumbsize("72");
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the set thumbsize is correct
+ $this->assertEquals("72", $query->getThumbsize());
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+ }
+
+ /**
+ * Check the consistency of an album feed request for specifically-sized images
+ */
+ public function testImgAlbumQuery()
+ {
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/albumid/1?imgmax=800";
+
+ $query = new Zend_Gdata_Photos_AlbumQuery();
+ $query->setUser("sample.user");
+ $query->setAlbumId("1");
+ $query->setImgMax("800");
+
+ // Assert that the set ImgMax is correct
+ $this->assertEquals("800", $query->getImgMax());
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+
+ // Check that ImgMax is set back to null
+ $queryString = "https://picasaweb.google.com/data/feed/api/user/sample.user/albumid/1";
+ $query->setImgMax(null);
+
+ $generatedString = $query->getQueryUrl();
+
+ // Assert that the generated query matches the correct one
+ $this->assertEquals($queryString, $generatedString);
+ }
+
+}