| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580 |
- <?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-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/Http/Client.php';
- require_once 'Zend/Http/Client/Adapter/Test.php';
- require_once 'Zend/Service/Amazon/Ec2/Ebs.php';
- /**
- * Zend_Service_Amazon_Ec2_Ebs test case.
- *
- * @category Zend
- * @package Zend_Service_Amazon
- * @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_Service
- * @group Zend_Service_Amazon
- * @group Zend_Service_Amazon_Ec2
- */
- class Zend_Service_Amazon_Ec2_EbsTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Service_Amazon_Ec2_Ebs
- */
- private $Zend_Service_Amazon_Ec2_Ebs;
- /**
- * Prepares the environment before running a test.
- */
- protected function setUp()
- {
- parent::setUp();
- $this->Zend_Service_Amazon_Ec2_Ebs = new Zend_Service_Amazon_Ec2_Ebs('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_Ebs::setHttpClient($client);
- }
- /**
- * Cleans up the environment after running a test.
- */
- protected function tearDown()
- {
- unset($this->adapter);
- $this->Zend_Service_Amazon_Ec2_Ebs = null;
- parent::tearDown();
- }
- public function testAttachVolume()
- {
- $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"
- . "<AttachVolumeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <instanceId>i-6058a509</instanceId>\r\n"
- . " <device>/dev/sdh</device>\r\n"
- . " <status>attaching</status>\r\n"
- . " <attachTime>2008-05-07T11:51:50.000Z</attachTime>\r\n"
- . "</AttachVolumeResponse >";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->attachVolume('vol-4d826724', 'i-6058a509', '/dev/sdh');
- $arrAttach = array(
- 'volumeId' => 'vol-4d826724',
- 'instanceId' => 'i-6058a509',
- 'device' => '/dev/sdh',
- 'status' => 'attaching',
- 'attachTime' => '2008-05-07T11:51:50.000Z'
- );
- $this->assertSame($arrAttach, $return);
- }
- public function testCreateSnapshot()
- {
- $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"
- . "<CreateSnapshotResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <snapshotId>snap-78a54011</snapshotId>\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <status>pending</status>\r\n"
- . " <startTime>2008-05-07T11:51:50.000Z</startTime>\r\n"
- . " <progress></progress>\r\n"
- . "</CreateSnapshotResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->createSnapshot('vol-4d826724');
- $arrCreateSnapShot = array(
- 'snapshotId' => 'snap-78a54011',
- 'volumeId' => 'vol-4d826724',
- 'status' => 'pending',
- 'startTime' => '2008-05-07T11:51:50.000Z',
- 'progress' => ''
- );
- $this->assertSame($arrCreateSnapShot, $return);
- }
- public function testCreateNewVolume()
- {
- $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"
- . "<CreateVolumeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <size>400</size>\r\n"
- . " <status>creating</status>\r\n"
- . " <createTime>2008-05-07T11:51:50.000Z</createTime>\r\n"
- . " <availabilityZone>us-east-1a</availabilityZone>\r\n"
- . " <snapshotId></snapshotId>\r\n"
- . "</CreateVolumeResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->createNewVolume(400, 'us-east-1a');
- $arrCreateNewVolume = array(
- 'volumeId' => 'vol-4d826724',
- 'size' => '400',
- 'status' => 'creating',
- 'createTime' => '2008-05-07T11:51:50.000Z',
- 'availabilityZone' => 'us-east-1a'
- );
- $this->assertSame($arrCreateNewVolume, $return);
- }
- public function testCreateVolumeFromSnapshot()
- {
- $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"
- . "<CreateVolumeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <size>400</size>\r\n"
- . " <status>creating</status>\r\n"
- . " <createTime>2008-05-07T11:51:50.000Z</createTime>\r\n"
- . " <availabilityZone>us-east-1a</availabilityZone>\r\n"
- . " <snapshotId>snap-78a54011</snapshotId>\r\n"
- . "</CreateVolumeResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->createVolumeFromSnapshot('snap-78a54011', 'us-east-1a');
- $arrCreateNewVolume = array(
- 'volumeId' => 'vol-4d826724',
- 'size' => '400',
- 'status' => 'creating',
- 'createTime' => '2008-05-07T11:51:50.000Z',
- 'availabilityZone' => 'us-east-1a',
- 'snapshotId' => 'snap-78a54011'
- );
- $this->assertSame($arrCreateNewVolume, $return);
- }
- public function testDeleteSnapshot()
- {
- $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"
- . "<DeleteSnapshotResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</DeleteSnapshotResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->deleteSnapshot('snap-78a54011');
- $this->assertTrue($return);
- }
- public function testDeleteVolume()
- {
- $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"
- . "<DeleteVolumeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</DeleteVolumeResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->deleteVolume('vol-4d826724');
- $this->assertTrue($return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Ebs->describeSnapshot()
- */
- public function testDescribeSingleSnapshot()
- {
- $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"
- . "<DescribeSnapshotsResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <snapshotSet>\r\n"
- . " <item>\r\n"
- . " <snapshotId>snap-78a54011</snapshotId>\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <status>pending</status>\r\n"
- . " <startTime>2008-05-07T12:51:50.000Z</startTime>\r\n"
- . " <progress>80%</progress>\r\n"
- . " </item>\r\n"
- . " </snapshotSet>\r\n"
- . "</DescribeSnapshotsResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->describeSnapshot('snap-78a54011');
- $arrSnapshot = array(array(
- 'snapshotId' => 'snap-78a54011',
- 'volumeId' => 'vol-4d826724',
- 'status' => 'pending',
- 'startTime' => '2008-05-07T12:51:50.000Z',
- 'progress' => '80%'
- ));
- $this->assertSame($arrSnapshot, $return);
- }
- public function testDescribeMultipleSnapshots()
- {
- $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"
- . "<DescribeSnapshotsResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <snapshotSet>\r\n"
- . " <item>\r\n"
- . " <snapshotId>snap-78a54011</snapshotId>\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <status>pending</status>\r\n"
- . " <startTime>2008-05-07T12:51:50.000Z</startTime>\r\n"
- . " <progress>80%</progress>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <snapshotId>snap-78a54012</snapshotId>\r\n"
- . " <volumeId>vol-4d826725</volumeId>\r\n"
- . " <status>pending</status>\r\n"
- . " <startTime>2008-08-07T12:51:50.000Z</startTime>\r\n"
- . " <progress>65%</progress>\r\n"
- . " </item>\r\n"
- . " </snapshotSet>\r\n"
- . "</DescribeSnapshotsResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->describeSnapshot(array('snap-78a54011', 'snap-78a54012'));
- $arrSnapshots = array(
- array(
- 'snapshotId' => 'snap-78a54011',
- 'volumeId' => 'vol-4d826724',
- 'status' => 'pending',
- 'startTime' => '2008-05-07T12:51:50.000Z',
- 'progress' => '80%',
- ),
- array(
- 'snapshotId' => 'snap-78a54012',
- 'volumeId' => 'vol-4d826725',
- 'status' => 'pending',
- 'startTime' => '2008-08-07T12:51:50.000Z',
- 'progress' => '65%',
- )
- );
- $this->assertSame($arrSnapshots, $return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Ebs->describeVolume()
- */
- public function testDescribeSingleVolume()
- {
- $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"
- . "<DescribeVolumesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . "<volumeSet>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-4282672b</volumeId>\r\n"
- . " <size>800</size>\r\n"
- . " <status>in-use</status>\r\n"
- . " <createTime>2008-05-07T11:51:50.000Z</createTime>\r\n"
- . " <attachmentSet>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-4282672b</volumeId>\r\n"
- . " <instanceId>i-6058a509</instanceId>\r\n"
- . " <device>/dev/sdh</device>\r\n"
- . " <snapshotId>snap-12345678</snapshotId>\r\n"
- . " <availabilityZone>us-east-1a</availabilityZone>\r\n"
- . " <status>attached</status>\r\n"
- . " <attachTime>2008-05-07T12:51:50.000Z</attachTime>\r\n"
- . " </item>\r\n"
- . " </attachmentSet>\r\n"
- . " </item>\r\n"
- . "</volumeSet>\r\n"
- . "</DescribeVolumesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->describeVolume('vol-4282672b');
- $arrVolumes = array(
- array(
- 'volumeId' => 'vol-4282672b',
- 'size' => '800',
- 'status' => 'in-use',
- 'createTime' => '2008-05-07T11:51:50.000Z',
- 'attachmentSet' => array(
- 'volumeId' => 'vol-4282672b',
- 'instanceId' => 'i-6058a509',
- 'device' => '/dev/sdh',
- 'status' => 'attached',
- 'attachTime' => '2008-05-07T12:51:50.000Z',
- )
- )
- );
- $this->assertSame($arrVolumes, $return);
- }
- public function testDescribeMultipleVolume()
- {
- $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"
- . "<DescribeVolumesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . "<volumeSet>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-4282672b</volumeId>\r\n"
- . " <size>800</size>\r\n"
- . " <status>in-use</status>\r\n"
- . " <createTime>2008-05-07T11:51:50.000Z</createTime>\r\n"
- . " <attachmentSet>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-4282672b</volumeId>\r\n"
- . " <instanceId>i-6058a509</instanceId>\r\n"
- . " <device>/dev/sdh</device>\r\n"
- . " <snapshotId>snap-12345678</snapshotId>\r\n"
- . " <availabilityZone>us-east-1a</availabilityZone>\r\n"
- . " <status>attached</status>\r\n"
- . " <attachTime>2008-05-07T12:51:50.000Z</attachTime>\r\n"
- . " </item>\r\n"
- . " </attachmentSet>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-42826775</volumeId>\r\n"
- . " <size>40</size>\r\n"
- . " <status>available</status>\r\n"
- . " <createTime>2008-08-07T11:51:50.000Z</createTime>\r\n"
- . " </item>\r\n"
- . "</volumeSet>\r\n"
- . "</DescribeVolumesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->describeVolume(array('vol-4282672b', 'vol-42826775'));
- $arrVolumes = array(
- array(
- 'volumeId' => 'vol-4282672b',
- 'size' => '800',
- 'status' => 'in-use',
- 'createTime' => '2008-05-07T11:51:50.000Z',
- 'attachmentSet' => array(
- 'volumeId' => 'vol-4282672b',
- 'instanceId' => 'i-6058a509',
- 'device' => '/dev/sdh',
- 'status' => 'attached',
- 'attachTime' => '2008-05-07T12:51:50.000Z',
- )
- ),
- array(
- 'volumeId' => 'vol-42826775',
- 'size' => '40',
- 'status' => 'available',
- 'createTime' => '2008-08-07T11:51:50.000Z'
- )
- );
- $this->assertSame($arrVolumes, $return);
- }
- public function testDescribeAttachedVolumes()
- {
- $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"
- . "<DescribeVolumesResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . "<volumeSet>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-4282672b</volumeId>\r\n"
- . " <size>800</size>\r\n"
- . " <status>in-use</status>\r\n"
- . " <createTime>2008-05-07T11:51:50.000Z</createTime>\r\n"
- . " <attachmentSet>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-4282672b</volumeId>\r\n"
- . " <instanceId>i-6058a509</instanceId>\r\n"
- . " <device>/dev/sdh</device>\r\n"
- . " <snapshotId>snap-12345678</snapshotId>\r\n"
- . " <availabilityZone>us-east-1a</availabilityZone>\r\n"
- . " <status>attached</status>\r\n"
- . " <attachTime>2008-05-07T12:51:50.000Z</attachTime>\r\n"
- . " </item>\r\n"
- . " </attachmentSet>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <volumeId>vol-42826775</volumeId>\r\n"
- . " <size>40</size>\r\n"
- . " <status>available</status>\r\n"
- . " <createTime>2008-08-07T11:51:50.000Z</createTime>\r\n"
- . " </item>\r\n"
- . "</volumeSet>\r\n"
- . "</DescribeVolumesResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->describeAttachedVolumes('i-6058a509');
- $arrVolumes = array(
- array(
- 'volumeId' => 'vol-4282672b',
- 'size' => '800',
- 'status' => 'in-use',
- 'createTime' => '2008-05-07T11:51:50.000Z',
- 'attachmentSet' => array(
- 'volumeId' => 'vol-4282672b',
- 'instanceId' => 'i-6058a509',
- 'device' => '/dev/sdh',
- 'status' => 'attached',
- 'attachTime' => '2008-05-07T12:51:50.000Z',
- )
- )
- );
- $this->assertSame($arrVolumes, $return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Ebs->detachVolume()
- */
- public function testDetachVolume()
- {
- $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"
- . "<DetachVolumeResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <volumeId>vol-4d826724</volumeId>\r\n"
- . " <instanceId>i-6058a509</instanceId>\r\n"
- . " <device>/dev/sdh</device>\r\n"
- . " <status>detaching</status>\r\n"
- . " <attachTime>2008-05-08T11:51:50.000Z</attachTime>\r\n"
- . "</DetachVolumeResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Ebs->detachVolume('vol-4d826724');
- $arrVolume = array(
- 'volumeId' => 'vol-4d826724',
- 'instanceId' => 'i-6058a509',
- 'device' => '/dev/sdh',
- 'status' => 'detaching',
- 'attachTime' => '2008-05-08T11:51:50.000Z'
- );
- $this->assertSame($arrVolume, $return);
- }
- }
|