| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?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-2015 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-2015 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();
- }
- }
|