| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644 |
- <?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
- * @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/App.php';
- require_once 'Zend/Gdata/HttpClient.php';
- require_once 'Zend/Gdata/TestUtility/MockHttpClient.php';
- /**
- * @category Zend
- * @package Zend_Gdata_App
- * @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_App
- */
- class Zend_Gdata_AppTest extends PHPUnit_Framework_TestCase
- {
- public function setUp()
- {
- $this->fileName = 'Zend/Gdata/App/_files/FeedSample1.xml';
- $this->expectedEtag = 'W/"CkcHQH8_fCp7ImA9WxRTGEw."';
- $this->expectedMajorProtocolVersion = 1;
- $this->expectedMinorProtocolVersion = 2;
- $this->httpEntrySample = $this->loadResponse(
- dirname(__FILE__) . '/_files/AppSample1.txt'
- );
- $this->httpEntrySampleWithoutVersion = $this->loadResponse(
- dirname(__FILE__) . '/_files/AppSample2.txt'
- );
- $this->httpFeedSample = $this->loadResponse(
- dirname(__FILE__) . '/_files/AppSample3.txt'
- );
- $this->httpFeedSampleWithoutVersion = $this->loadResponse(
- dirname(__FILE__) . '/_files/AppSample4.txt'
- );
- $this->adapter = new Test_Zend_Gdata_MockHttpClient();
- $this->client = new Zend_Gdata_HttpClient();
- $this->client->setAdapter($this->adapter);
- $this->service = new Zend_Gdata_App($this->client);
- }
- public function loadResponse($filename)
- {
- $response = file_get_contents($filename);
- // Line endings are sometimes an issue inside the canned responses; the
- // following is a negative lookbehind assertion, and replaces any \n
- // not preceded by \r with the sequence \r\n, ensuring that the message
- // is well-formed.
- return preg_replace("#(?<!\r)\n#", "\r\n", $response);
- }
- public function testImportFile()
- {
- $feed = Zend_Gdata_App::importFile($this->fileName,
- 'Zend_Gdata_App_Feed', true);
- $this->assertEquals('dive into mark', $feed->title->text);
- }
- public function testSetAndGetHttpMethodOverride()
- {
- Zend_Gdata_App::setHttpMethodOverride(true);
- $this->assertEquals(true, Zend_Gdata_App::getHttpMethodOverride());
- }
- public function testSetAndGetProtocolVersion()
- {
- $this->service->setMajorProtocolVersion(2);
- $this->service->setMinorProtocolVersion(1);
- $this->assertEquals(2, $this->service->getMajorProtocolVersion());
- $this->assertEquals(1, $this->service->getMinorProtocolVersion());
- }
- public function testDefaultProtocolVersionIs1X()
- {
- $this->assertEquals(1, $this->service->getMajorProtocolVersion());
- $this->assertEquals(null, $this->service->getMinorProtocolVersion());
- }
- public function testMajorProtocolVersionCannotBeLessThanOne()
- {
- $exceptionCaught = false;
- try {
- $this->service->setMajorProtocolVersion(0);
- } catch (Zend_Gdata_App_InvalidArgumentException $e) {
- $exceptionCaught = true;
- }
- $this->assertTrue($exceptionCaught, 'Expected exception not caught: '
- + 'Zend_Gdata_App_InvalidArgumentException');
- }
- public function testMajorProtocolVersionCannotBeNull()
- {
- $exceptionCaught = false;
- try {
- $this->service->setMajorProtocolVersion(null);
- } catch (Zend_Gdata_App_InvalidArgumentException $e) {
- $exceptionCaught = true;
- }
- $this->assertTrue($exceptionCaught, 'Expected exception not caught: '
- + 'Zend_Gdata_App_InvalidArgumentException');
- }
- public function testMinorProtocolVersionCannotBeLessThanZero()
- {
- $exceptionCaught = false;
- try {
- $this->service->setMinorProtocolVersion(-1);
- } catch (Zend_Gdata_App_InvalidArgumentException $e) {
- $exceptionCaught = true;
- }
- $this->assertTrue($exceptionCaught, 'Expected exception not caught: '
- + 'Zend_Gdata_App_InvalidArgumentException');
- }
- public function testNoGdataVersionHeaderSentWhenUsingV1()
- {
- $this->adapter->setResponse(array('HTTP/1.1 200 OK\r\n\r\n'));
- $this->service->setMajorProtocolVersion(1);
- $this->service->setMinorProtocolVersion(null);
- $this->service->get('http://www.example.com');
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if (strstr($header, 'GData-Version:'))
- $found = true;
- }
- $this->assertFalse($found, 'Version header found in V1 feed');
- }
- public function testNoGdataVersionHeaderSentWhenUsingV1X()
- {
- $this->adapter->setResponse(array('HTTP/1.1 200 OK\r\n\r\n'));
- $this->service->setMajorProtocolVersion(1);
- $this->service->setMinorProtocolVersion(1);
- $this->service->get('http://www.example.com');
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if (strstr($header, 'GData-Version:'))
- $found = true;
- }
- $this->assertTrue(!$found, 'Version header found in V1 feed');
- }
- public function testGdataVersionHeaderSentWhenUsingV2()
- {
- $this->adapter->setResponse(array('HTTP/1.1 200 OK\r\n\r\n'));
- $this->service->setMajorProtocolVersion(2);
- $this->service->setMinorProtocolVersion(null);
- $this->service->get('http://www.example.com');
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'GData-Version: 2')
- $found = true;
- }
- $this->assertTrue($found, 'Version header not found or incorrect');
- }
- public function testGdataVersionHeaderSentWhenUsingV2X()
- {
- $this->adapter->setResponse(array('HTTP/1.1 200 OK\r\n\r\n'));
- $this->service->setMajorProtocolVersion(2);
- $this->service->setMinorProtocolVersion(1);
- $this->service->get('http://www.example.com');
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'GData-Version: 2')
- $found = true;
- }
- $this->assertTrue($found, 'Version header not found or incorrect');
- }
- public function testHTTPETagsPropagateToEntriesOnGet()
- {
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = $this->service->getEntry('http://www.example.com');
- $this->assertEquals($this->expectedEtag, $entry->getEtag());
- }
- public function testHTTPETagsPropagateToEntriesOnUpdate()
- {
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = new Zend_Gdata_App_Entry();
- $newEntry = $this->service->updateEntry($entry, 'http://www.example.com');
- $this->assertEquals($this->expectedEtag, $newEntry->getEtag());
- }
- public function testHTTPEtagsPropagateToEntriesOnInsert()
- {
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = new Zend_Gdata_App_Entry();
- $newEntry = $this->service->insertEntry($entry, 'http://www.example.com');
- $this->assertEquals($this->expectedEtag, $newEntry->getEtag());
- }
- public function testIfMatchHTTPHeaderSetOnUpdate()
- {
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $this->service->updateEntry($entry);
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertTrue($found, 'If-Match header not found or incorrect');
- }
- public function testIfMatchHTTPHeaderSetOnUpdateIfWeak()
- {
- $etag = 'W/ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $this->service->updateEntry($entry);
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertFalse($found, 'If-Match header found');
- }
- public function testIfMatchHTTPHeaderSetOnSave()
- {
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = $this->service->newEntry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $entry->setService($this->service);
- $entry->save();
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertTrue($found, 'If-Match header not found or incorrect');
- }
- public function testIfMatchHTTPHeaderNotSetOnDelete()
- {
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = $this->service->newEntry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $entry->setService($this->service);
- $entry->delete();
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertFalse($found, 'If-Match header found on delete');
- }
- public function testIfMatchHTTPHeaderSetOnManualPost()
- {
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = $this->service->newEntry();
- $entry->setEtag($etag);
- $entry->setService($this->service);
- $this->service->post($entry, 'http://www.example.com');
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertTrue($found, 'If-Match header not found or incorrect');
- }
- public function testIfMatchHTTPHeaderSetOnManualPut()
- {
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = $this->service->newEntry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $entry->setService($this->service);
- $this->service->put($entry);
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertTrue($found, 'If-Match header not found or incorrect');
- }
- public function testIfMatchHTTPHeaderSetOnManualDelete()
- {
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = $this->service->newEntry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $entry->setService($this->service);
- $this->service->delete($entry);
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertFalse($found, 'If-Match header found on delete');
- }
- public function testIfMatchHeaderCanBeSetOnInsert() {
- $etagOverride = 'foo';
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $newEntry = $this->service->insertEntry($entry,
- 'http://www.example.com',
- 'Zend_Gdata_App_Entry',
- array('If-Match' => $etagOverride));
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etagOverride)
- $found = true;
- }
- $this->assertTrue($found, 'If-Match header not found or incorrect');
- }
- public function testIfNoneMatchHeaderCanBeSetOnInsert() {
- $etagOverride = 'foo';
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $newEntry = $this->service->insertEntry($entry,
- 'http://www.example.com',
- 'Zend_Gdata_App_Entry',
- array('If-None-Match' => $etagOverride));
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-None-Match: ' . $etagOverride)
- $found = true;
- }
- $this->assertTrue($found, 'If-None-Match header not found or incorrect ');
- }
- public function testIfMatchHeaderCanBeSetOnUpdate() {
- $etagOverride = 'foo';
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $newEntry = $this->service->updateEntry($entry,
- 'http://www.example.com',
- 'Zend_Gdata_App_Entry',
- array('If-Match' => $etagOverride));
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etagOverride)
- $found = true;
- }
- $this->assertTrue($found, 'If-Match header not found or incorrect or incorrect');
- }
- public function testIfNoneMatchHeaderCanBeSetOnUpdate() {
- $etagOverride = 'foo';
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $newEntry = $this->service->updateEntry($entry,
- 'http://www.example.com',
- 'Zend_Gdata_App_Entry',
- array('If-None-Match' => $etagOverride));
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-None-Match: ' . $etagOverride)
- $found = true;
- }
- $this->assertTrue($found, 'If-None-Match header not found or incorrect');
- }
- /**
- * @group ZF-8397
- */
- public function testIfMatchHTTPHeaderIsResetEachRequest()
- {
- // Update an entry
- $etag = 'ABCD1234';
- $this->adapter->setResponse("HTTP/1.1 201 Created");
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->link = array(new Zend_Gdata_App_Extension_Link(
- 'http://www.example.com',
- 'edit',
- 'application/atom+xml'));
- $entry->setEtag($etag);
- $this->service->updateEntry($entry);
- // Get another entry without ETag set,
- // Previous value of If-Match HTTP header should not be sent
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = $this->service->getEntry('http://www.example.com');
- $headers = $this->adapter->popRequest()->headers;
- $found = false;
- foreach ($headers as $header) {
- if ($header == 'If-Match: ' . $etag)
- $found = true;
- }
- $this->assertFalse($found, 'If-Match header found');
- }
- public function testGenerateIfMatchHeaderDataReturnsEtagIfV2() {
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $result = $this->service->generateIfMatchHeaderData($entry, false);
- $this->assertEquals($etag, $result);
- }
- public function testGenerateIfMatchHeaderDataReturnsNullIfV1() {
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(1);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $result = $this->service->generateIfMatchHeaderData($entry, false);
- $this->assertEquals(null, $result);
- }
- public function testGenerateIfMatchHeaderDataReturnsNullIfNotEntry() {
- $this->service->setMajorProtocolVersion(2);
- $result = $this->service->generateIfMatchHeaderData("Hello world", false);
- $this->assertEquals(null, $result);
- }
- public function testGenerateIfMatchHeaderDataReturnsNullIfWeak() {
- $etag = 'W/ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $result = $this->service->generateIfMatchHeaderData($entry, false);
- $this->assertEquals(null, $result);
- }
- public function testGenerateIfMatchHeaderDataReturnsEtagIfWeakAndFlagSet() {
- $etag = 'W/ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $result = $this->service->generateIfMatchHeaderData($entry, true);
- $this->assertEquals($etag, $result);
- }
- public function testGenerateIfMatchHeaderDataReturnsEtagIfNotWeakAndFlagSet() {
- $etag = 'ABCD1234';
- $this->service->setMajorProtocolVersion(2);
- $entry = new Zend_Gdata_App_Entry();
- $entry->setEtag($etag);
- $result = $this->service->generateIfMatchHeaderData($entry, true);
- $this->assertEquals($etag, $result);
- }
- public function testImportUrlSetsMajorProtocolVersionOnEntry() {
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = $this->service->getEntry('http://www.example.com');
- $this->assertEquals($this->expectedMajorProtocolVersion, $entry->getMajorProtocolVersion());
- }
- public function testImportUrlSetsMinorProtocolVersionOnEntry() {
- $this->adapter->setResponse($this->httpEntrySample);
- $entry = $this->service->getEntry('http://www.example.com');
- $this->assertEquals($this->expectedMinorProtocolVersion, $entry->getMinorProtocolVersion());
- }
- public function testImportUrlSetsNullVersionIfNoVersionHeaderOnEntry() {
- $this->adapter->setResponse($this->httpEntrySampleWithoutVersion);
- $entry = $this->service->getEntry('http://www.example.com');
- $this->assertEquals(null, $entry->getMinorProtocolVersion());
- $this->assertEquals(null, $entry->getMinorProtocolVersion());
- }
- public function testImportUrlSetsMajorProtocolVersionOnFeed() {
- $this->adapter->setResponse($this->httpFeedSample);
- $feed = $this->service->getFeed('http://www.example.com');
- $this->assertEquals($this->expectedMajorProtocolVersion, $feed->getMajorProtocolVersion());
- foreach ($feed as $entry) {
- $this->assertEquals($this->expectedMajorProtocolVersion, $entry->getMajorProtocolVersion());
- }
- }
- public function testImportUrlSetsMinorProtocolVersionOnFeed() {
- $this->adapter->setResponse($this->httpFeedSample);
- $feed = $this->service->getFeed('http://www.example.com');
- $this->assertEquals($this->expectedMinorProtocolVersion, $feed->getMinorProtocolVersion());
- foreach ($feed as $entry) {
- $this->assertEquals($this->expectedMinorProtocolVersion, $entry->getMinorProtocolVersion());
- }
- }
- public function testImportUrlSetsNullVersionIfNoVersionHeaderOnFeed() {
- $this->adapter->setResponse($this->httpFeedSampleWithoutVersion);
- $feed = $this->service->getFeed('http://www.example.com');
- $this->assertEquals(null, $feed->getMajorProtocolVersion());
- $this->assertEquals(null, $feed->getMinorProtocolVersion());
- foreach ($feed as $entry) {
- $this->assertEquals(null, $entry->getMajorProtocolVersion());
- $this->assertEquals(null, $entry->getMinorProtocolVersion());
- }
- }
- public function testMagicConstructorsPropogateMajorVersion() {
- $v = 42;
- $this->service->setMajorProtocolVersion($v);
- $feed = $this->service->newFeed();
- $this->assertEquals($v, $feed->getMajorProtocolVersion());
- }
- public function testMagicConstructorsPropogateMinorVersion() {
- $v = 84;
- $this->service->setMinorProtocolVersion($v);
- $feed = $this->service->newFeed();
- $this->assertEquals($v, $feed->getMinorProtocolVersion());
- }
- /**
- * When error handler is overridden to throw an ErrorException, the extension loader
- * in Zend_Gdata will throw an ErrorException when the class doesn't exist in the
- * first extension directory even if it exists in subsequent ones. This test
- * enforces a fix that keeps this from happening
- *
- * @group ZF-12268
- * @group ZF-7013
- */
- public function testLoadExtensionCausesFatalErrorWhenErrorHandlerIsOverridden()
- {
- // Override the error handler to throw an ErrorException
- set_error_handler(function($a, $b, $c, $d) { throw new ErrorException($b, 0, $a, $c, $d); }, E_ALL);
- try {
- $eq = $this->service->newEventQuery();
- restore_error_handler();
- $this->assertTrue($eq instanceof Zend_Gdata_Calendar_EventQuery);
- } catch ( Zend_Gdata_App_Exception $ex ) {
- // If we catch this exception, it means the ErrorException resulting
- // from the include_once E_NOTICE was caught in the right place,
- // but the extension was not found in any directory
- // (Expected since we didn't load the Calendar extension dir)
- restore_error_handler();
- $this->assertContains('EventQuery', $ex->getMessage());
- } catch ( ErrorException $ex ) {
- restore_error_handler();
- $this->fail('Did not expect ErrorException');
- }
- }
- /**
- * @group ZF-10243
- */
- public function testStaticImportWithoutUsingObjectMapping()
- {
- $this->adapter->setResponse($this->httpEntrySample);
- $feed = Zend_Gdata_App::import(
- 'http://www.example.com',
- $this->client,
- 'Zend_Gdata_App_Feed',
- false
- );
- $this->assertContains('<id>12345678901234567890</id>', $feed);
- }
- }
|