public function testMediaUpload()
 {
     // the standard sevice for Gdata testing is Blogger, due to the strong
     // match to the standard Gdata/APP protocol.  However, Blogger doesn't
     // currently support media uploads, so we're using Picasa Web Albums
     // for this test instead
     $user = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_EMAIL');
     $pass = constant('TESTS_ZEND_GDATA_CLIENTLOGIN_PASSWORD');
     $this->blog = constant('TESTS_ZEND_GDATA_BLOG_ID');
     $service = 'lh2';
     $client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service);
     $gd = new Zend_Gdata($client);
     // setup the photo content
     $fs = $gd->newMediaFileSource('Zend/Gdata/_files/testImage.jpg');
     $fs->setContentType('image/jpeg');
     // create a new picasa album
     $albumEntry = $gd->newEntry();
     $albumEntry->setTitle($gd->newTitle('My New Test Album'));
     $albumEntry->setCategory(array($gd->newCategory('http://schemas.google.com/photos/2007#album', 'http://schemas.google.com/g/2005#kind')));
     $createdAlbumEntry = $gd->insertEntry($albumEntry, 'http://picasaweb.google.com/data/feed/api/user/default');
     $this->assertEquals('My New Test Album', $createdAlbumEntry->title->text);
     $albumUrl = $createdAlbumEntry->getLink('http://schemas.google.com/g/2005#feed')->href;
     // post the photo to the new album, without any metadata
     // other than the slug
     // add a slug header to the media file source
     $fs->setSlug('Going to the park');
     $createdPhotoBinaryOnly = $gd->insertEntry($fs, $albumUrl);
     $this->assertEquals('Going to the park', $createdPhotoBinaryOnly->title->text);
     // post the photo to the new album along with the entry
     // remove slug header from the media file source
     $fs->setSlug(null);
     // setup an entry with metadata
     $mediaEntry = $gd->newMediaEntry();
     $mediaEntry->setMediaSource($fs);
     $mediaEntry->setTitle($gd->newTitle('My New Test Photo'));
     $mediaEntry->setSummary($gd->newSummary('My New Test Photo Summary'));
     $mediaEntry->setCategory(array($gd->newCategory('http://schemas.google.com/photos/2007#photo ', 'http://schemas.google.com/g/2005#kind')));
     $createdPhotoMultipart = $gd->insertEntry($mediaEntry, $albumUrl);
     $this->assertEquals('My New Test Photo', $createdPhotoMultipart->title->text);
     // cleanup and remove the album
     // first we wait 5 seconds
     sleep(5);
     try {
         $albumEntry->delete();
     } catch (Zend_Gdata_App_Exception $e) {
         $this->fail('Tried to delete the test album, got exception: ' . $e->getMessage());
     }
 }