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/DocsOnlineTest.php | |
| download | random-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz | |
init
Diffstat (limited to 'zend/tests/Zend/Gdata/DocsOnlineTest.php')
| -rwxr-xr-x | zend/tests/Zend/Gdata/DocsOnlineTest.php | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/DocsOnlineTest.php b/zend/tests/Zend/Gdata/DocsOnlineTest.php new file mode 100755 index 0000000..f573f19 --- /dev/null +++ b/zend/tests/Zend/Gdata/DocsOnlineTest.php @@ -0,0 +1,129 @@ +<?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_Docs + * @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/Docs.php'; +require_once 'Zend/Http/Client.php'; +require_once 'Zend/Gdata/ClientLogin.php'; + +/** + * @category Zend + * @package Zend_Gdata_Docs + * @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_Docs + */ +class Zend_Gdata_DocsOnlineTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() + { + $user = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_EMAIL'); + $pass = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_PASSWORD'); + $this->docTitle = constant('TESTS_ZEND_GDATA_DOCS_DOCUMENTTITLE'); + $service = Zend_Gdata_Docs::AUTH_SERVICE_NAME; + $client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service); + $this->gdata = new Zend_Gdata_Docs($client); + } + + public function testGetSpreadsheetFeed() + { + $feed = $this->gdata->getDocumentListFeed(); + $this->assertTrue($feed instanceof Zend_Gdata_Docs_DocumentListFeed); + foreach ($feed->entries as $entry) { + $this->assertTrue($entry instanceof Zend_Gdata_Docs_DocumentListEntry); + $this->assertTrue($entry->getHttpClient() == $feed->getHttpClient()); + } + + $query = new Zend_Gdata_Docs_Query(); + $feed = $this->gdata->getDocumentListFeed($query); + $this->assertTrue($feed instanceof Zend_Gdata_Docs_DocumentListFeed); + foreach ($feed->entries as $entry) { + $this->assertTrue($entry instanceof Zend_Gdata_Docs_DocumentListEntry); + $this->assertTrue($entry->getHttpClient() == $feed->getHttpClient()); + } + + $uri = $query->getQueryUrl(); + $feed = $this->gdata->getDocumentListFeed($uri); + $this->assertTrue($feed instanceof Zend_Gdata_Docs_DocumentListFeed); + foreach ($feed->entries as $entry) { + $this->assertTrue($entry instanceof Zend_Gdata_Docs_DocumentListEntry); + $this->assertTrue($entry->getHttpClient() == $feed->getHttpClient()); + } + } + + public function testQueryForTitle() + { + $query = new Zend_Gdata_Docs_Query(); + $query->title = $this->docTitle; + $feed = $this->gdata->getDocumentListFeed($query); + $this->assertTrue(strpos(strtolower($feed->entries[0]->title), strtolower($this->docTitle)) !== FALSE); + } + + public function testGetDocumentListEntry() + { + $query = new Zend_Gdata_Docs_Query(); + $feed = $this->gdata->getDocumentListFeed($query); + $selfLinkHref = $feed->entries[0]->getSelfLink()->href; + $entry = $this->gdata->getDocumentListEntry($selfLinkHref); + $this->assertTrue($entry instanceof Zend_Gdata_Docs_DocumentListEntry); + } + + public function testUploadFindAndDelete() + { + $documentTitle = 'spreadsheet_upload_test.csv'; + $newDocumentEntry = $this->gdata->uploadFile( + 'Zend/Gdata/_files/DocsTest.csv', $documentTitle, + $this->gdata->lookupMimeType('CSV'), + Zend_Gdata_Docs::DOCUMENTS_LIST_FEED_URI); + $this->assertTrue($newDocumentEntry->title->text === $documentTitle); + + // Get the newly created document. + // First extract the document's ID key from the Atom id. + $idParts = explode('/', $newDocumentEntry->id->text); + $keyParts = explode('%3A', end($idParts)); + $documentFromGetDoc = $this->gdata->getDoc($keyParts[1], $keyParts[0]); + $this->assertTrue($documentFromGetDoc->title->text === $documentTitle); + if ($keyParts[0] == 'document') { + $documentFromGetDocument = $this->gdata->getDocument($keyParts[1]); + $this->assertTrue( + $documentFromGetDocument->title->text === $documentTitle); + } + if ($keyParts[0] == 'spreadsheet') { + $documentFromGetSpreadsheet = $this->gdata->getSpreadsheet( + $keyParts[1]); + $this->assertTrue( + $documentFromGetSpreadsheet->title->text === $documentTitle); + } + if ($keyParts[0] == 'presentation') { + $documentFromGetPresentation = $this->gdata->getPresentation( + $keyParts[1]); + $this->assertTrue( + $documentFromGetPresentation->title->text === $documentTitle); + } + + // Cleanup and remove the new document. + $newDocumentEntry->delete(); + } + +} |
