| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620 |
- <?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_Service_Amazon
- * @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/Http/Client.php';
- require_once 'Zend/Http/Client/Adapter/Test.php';
- require_once 'Zend/Service/Amazon/Ec2/Image.php';
- /**
- * Zend_Service_Amazon_Ec2_Image test case.
- *
- * @category Zend
- * @package Zend_Service_Amazon
- * @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_Service
- * @group Zend_Service_Amazon
- * @group Zend_Service_Amazon_Ec2
- */
- class Zend_Service_Amazon_Ec2_ImageTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Service_Amazon_Ec2_Image
- */
- private $Zend_Service_Amazon_Ec2_Image;
- /**
- * Prepares the environment before running a test.
- */
- protected function setUp()
- {
- parent::setUp();
- $this->Zend_Service_Amazon_Ec2_Image = new Zend_Service_Amazon_Ec2_Image('access_key', 'secret_access_key');
- $adapter = new Zend_Http_Client_Adapter_Test();
- $client = new Zend_Http_Client(null, array(
- 'adapter' => $adapter
- ));
- $this->adapter = $adapter;
- Zend_Service_Amazon_Ec2_Image::setHttpClient($client);
- }
- protected function tearDown()
- {
- $this->Zend_Service_Amazon_Ec2_Image = null;
- parent::tearDown();
- }
- public function testDeregister()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DeregisterImageResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</DeregisterImageResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->deregister('ami-61a54008');
- $this->assertTrue($return);
- }
- public function testDescribeSingleImageMultipleImagesByIds()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImagesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imagesSet>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd7</imageId>\r\n"
- . " <imageLocation>ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>false</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd6</imageId>\r\n"
- . " <imageLocation>ec2-public-images/ubuntu-8.10-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>true</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " </imagesSet>\r\n"
- . "</DescribeImagesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describe(array('ami-be3adfd7', 'ami-be3adfd6'));
- $arrImage = array(
- array(
- 'imageId' => 'ami-be3adfd7',
- 'imageLocation' => 'ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'false',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- ),
- array(
- 'imageId' => 'ami-be3adfd6',
- 'imageLocation' => 'ec2-public-images/ubuntu-8.10-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'true',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- )
- );
- $this->assertSame($arrImage, $return);
- }
- public function testDescribeSingleImageById()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImagesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imagesSet>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd7</imageId>\r\n"
- . " <imageLocation>ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>false</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " </imagesSet>\r\n"
- . "</DescribeImagesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describe('ami-be3adfd7');
- $arrImage = array(
- array(
- 'imageId' => 'ami-be3adfd7',
- 'imageLocation' => 'ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'false',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- )
- );
- $this->assertSame($arrImage, $return);
- }
- public function testDescribeSingleImageMultipleImagesByOwnerId()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImagesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imagesSet>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd7</imageId>\r\n"
- . " <imageLocation>ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>2060296256884</imageOwnerId>\r\n"
- . " <isPublic>false</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd6</imageId>\r\n"
- . " <imageLocation>ec2-public-images/ubuntu-8.10-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>true</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " </imagesSet>\r\n"
- . "</DescribeImagesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describe(null, array('2060296256884', '206029621532'));
- $arrImage = array(
- array(
- 'imageId' => 'ami-be3adfd7',
- 'imageLocation' => 'ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '2060296256884',
- 'isPublic' => 'false',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- ),
- array(
- 'imageId' => 'ami-be3adfd6',
- 'imageLocation' => 'ec2-public-images/ubuntu-8.10-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'true',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- )
- );
- $this->assertSame($arrImage, $return);
- }
- public function testDescribeSingleImageByOwnerId()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImagesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imagesSet>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd7</imageId>\r\n"
- . " <imageLocation>ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>false</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " </imagesSet>\r\n"
- . "</DescribeImagesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describe(null, '206029621532');
- $arrImage = array(
- array(
- 'imageId' => 'ami-be3adfd7',
- 'imageLocation' => 'ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'false',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- )
- );
- $this->assertSame($arrImage, $return);
- }
- public function testDescribeSingleImageMultipleImagesByExecutableBy()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImagesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imagesSet>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd7</imageId>\r\n"
- . " <imageLocation>ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>2060296256884</imageOwnerId>\r\n"
- . " <isPublic>false</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd6</imageId>\r\n"
- . " <imageLocation>ec2-public-images/ubuntu-8.10-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>true</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " </imagesSet>\r\n"
- . "</DescribeImagesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describe(null, null, array('46361432890', '432432265322'));
- $arrImage = array(
- array(
- 'imageId' => 'ami-be3adfd7',
- 'imageLocation' => 'ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '2060296256884',
- 'isPublic' => 'false',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- ),
- array(
- 'imageId' => 'ami-be3adfd6',
- 'imageLocation' => 'ec2-public-images/ubuntu-8.10-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'true',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- )
- );
- $this->assertSame($arrImage, $return);
- }
- public function testDescribeSingleImageByExecutableBy()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImagesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imagesSet>\r\n"
- . " <item>\r\n"
- . " <imageId>ami-be3adfd7</imageId>\r\n"
- . " <imageLocation>ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml</imageLocation>\r\n"
- . " <imageState>available</imageState>\r\n"
- . " <imageOwnerId>206029621532</imageOwnerId>\r\n"
- . " <isPublic>false</isPublic>\r\n"
- . " <architecture>i386</architecture>\r\n"
- . " <imageType>machine</imageType>\r\n"
- . " <kernelId>aki-4438dd2d</kernelId>\r\n"
- . " <ramdiskId>ari-4538dd2c</ramdiskId>\r\n"
- . " </item>\r\n"
- . " </imagesSet>\r\n"
- . "</DescribeImagesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describe(null, null, '46361432890');
- $arrImage = array(
- array(
- 'imageId' => 'ami-be3adfd7',
- 'imageLocation' => 'ec2-public-images/fedora-8-i386-base-v1.04.manifest.xml',
- 'imageState' => 'available',
- 'imageOwnerId' => '206029621532',
- 'isPublic' => 'false',
- 'architecture' => 'i386',
- 'imageType' => 'machine',
- 'kernelId' => 'aki-4438dd2d',
- 'ramdiskId' => 'ari-4538dd2c',
- 'platform' => '',
- )
- );
- $this->assertSame($arrImage, $return);
- }
- public function testDescribeAttributeLaunchPermission()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImageAttributeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imageId>ami-61a54008</imageId>\r\n"
- . " <launchPermission>\r\n"
- . " <item>\r\n"
- . " <userId>495219933132</userId>\r\n"
- . " </item>\r\n"
- . " </launchPermission>\r\n"
- . "</DescribeImageAttributeResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describeAttribute('ami-61a54008', 'launchPermission');
- $this->assertEquals('ami-61a54008', $return['imageId']);
- $this->assertEquals('495219933132', $return['launchPermission'][0]);
- }
- public function testDescribeAttributeProductCodes()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<DescribeImageAttributeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imageId>ami-61a54008</imageId>\r\n"
- . " <productCodes>\r\n"
- . " <item>\r\n"
- . " <productCode>774F4FF8</productCode>\r\n"
- . " </item>\r\n"
- . " </productCodes>\r\n"
- . "</DescribeImageAttributeResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->describeAttribute('ami-61a54008', 'productCodes');
- $this->assertEquals('ami-61a54008', $return['imageId']);
- $this->assertEquals('774F4FF8', $return['productCodes'][0]);
- }
- public function testModifyAttributeSingleLaunchPermission()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<ModifyImageAttributeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</ModifyImageAttributeResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->modifyAttribute('ami-61a54008', 'launchPermission', 'add', '495219933132', 'all');
- $this->assertTrue($return);
- }
- public function testModifyAttributeMultipleLaunchPermission()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<ModifyImageAttributeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</ModifyImageAttributeResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->modifyAttribute('ami-61a54008', 'launchPermission', 'add', array('495219933132', '495219933133'), array('all', 'all'));
- $this->assertTrue($return);
- }
- public function testModifyAttributeThrowsExceptionOnInvalidAttribute()
- {
- try {
- $return = $this->Zend_Service_Amazon_Ec2_Image->modifyAttribute('ami-61a54008', 'invalidPermission', 'add', '495219933132', 'all');
- $this->fail('An exception should be throw if you are modifying an invalid attirubte');
- } catch (Zend_Service_Amazon_Ec2_Exception $zsaee) {}
- }
- public function testModifyAttributeProuctCodes()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<ModifyImageAttributeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</ModifyImageAttributeResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->modifyAttribute('ami-61a54008', 'productCodes', null, null, null, '774F4FF8');
- $this->assertTrue($return);
- }
- public function testRegister()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<RegisterImageResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <imageId>ami-61a54008</imageId>\r\n"
- . "</RegisterImageResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->register('mybucket-myimage.manifest.xml');
- $this->assertEquals('ami-61a54008', $return);
- }
- public function testResetAttribute()
- {
- $rawHttpResponse = "HTTP/1.1 200 OK\r\n"
- . "Date: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Server: hi\r\n"
- . "Last-modified: Fri, 24 Oct 2008 17:24:52 GMT\r\n"
- . "Status: 200 OK\r\n"
- . "Content-type: application/xml; charset=utf-8\r\n"
- . "Expires: Tue, 31 Mar 1981 05:00:00 GMT\r\n"
- . "Connection: close\r\n"
- . "\r\n"
- . "<ResetImageAttributeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</ResetImageAttributeResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Image->resetAttribute('ami-61a54008', 'launchPermission');
- $this->assertTrue($return);
- }
- }
|