1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
|
<?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-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/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-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_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 = file_get_contents(
'Zend/Gdata/_files/AppSample1.txt',
true);
$this->httpEntrySampleWithoutVersion = file_get_contents(
'Zend/Gdata/_files/AppSample2.txt',
true);
$this->httpFeedSample = file_get_contents(
'Zend/Gdata/_files/AppSample3.txt',
true);
$this->httpFeedSampleWithoutVersion = file_get_contents(
'Zend/Gdata/_files/AppSample4.txt',
true);
$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 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(create_function('$a, $b, $c, $d', 'throw new ErrorException($b, 0, $a, $c, $d);'), E_ALL);
try {
$eq = $this->service->newEventQuery();
restore_error_handler();
$this->assertType('Zend_Gdata_Calendar_EventQuery', $eq);
} 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);
}
}
|