| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 |
- <?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/Securitygroups.php';
- /**
- * Zend_Service_Amazon_Ec2_Securitygroups 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_SecuritygroupsTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Service_Amazon_Ec2_Securitygroups
- */
- private $Zend_Service_Amazon_Ec2_Securitygroups;
- /**
- * Prepares the environment before running a test.
- */
- protected function setUp()
- {
- parent::setUp();
- $this->Zend_Service_Amazon_Ec2_Securitygroups = new Zend_Service_Amazon_Ec2_Securitygroups('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_Securitygroups::setHttpClient($client);
- }
- /**
- * Cleans up the environment after running a test.
- */
- protected function tearDown()
- {
- unset($this->adapter);
- $this->Zend_Service_Amazon_Ec2_Securitygroups = null;
- parent::tearDown();
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Securitygroups->authorize()
- */
- public function testAuthorizeSinglePort()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<AuthorizeSecurityGroupIngressResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</AuthorizeSecurityGroupIngressResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->authorizeIp('MyGroup', 'tcp', '80', '80', '0.0.0.0/0');
- $this->assertTrue($return);
- }
- public function testAuthorizeRangeOfPorts()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<AuthorizeSecurityGroupIngressResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</AuthorizeSecurityGroupIngressResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->authorizeIp('MyGroup', 'tcp', '6000', '7000', '0.0.0.0/0');
- $this->assertTrue($return);
- }
- public function testAuthorizeSecurityGroupName()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<AuthorizeSecurityGroupIngressResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</AuthorizeSecurityGroupIngressResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->authorizeGroup('MyGroup', 'groupname', '15333848');
- $this->assertTrue($return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Securitygroups->create()
- */
- public function testCreate()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<CreateSecurityGroupResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</CreateSecurityGroupResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->create('MyGroup', 'My Security Grup');
- $this->assertTrue($return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Securitygroups->delete()
- */
- public function testDelete()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<DeleteSecurityGroupResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</DeleteSecurityGroupResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->delete('MyGroup');
- $this->assertTrue($return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Securitygroups->describe()
- */
- public function testDescribeMultipleSecruityGroups()
- {
- $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"
- . "<DescribeSecurityGroupsResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <securityGroupInfo>\r\n"
- . " <item>\r\n"
- . " <ownerId>UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM</ownerId>\r\n"
- . " <groupName>WebServers</groupName>\r\n"
- . " <groupDescription>Web</groupDescription>\r\n"
- . " <ipPermissions>\r\n"
- . " <item>\r\n"
- . " <ipProtocol>tcp</ipProtocol>\r\n"
- . " <fromPort>80</fromPort>\r\n"
- . " <toPort>80</toPort>\r\n"
- . " <groups/>\r\n"
- . " <ipRanges>\r\n"
- . " <item>\r\n"
- . " <cidrIp>0.0.0.0/0</cidrIp>\r\n"
- . " </item>\r\n"
- . " </ipRanges>\r\n"
- . " </item>\r\n"
- . " </ipPermissions>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <ownerId>UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM</ownerId>\r\n"
- . " <groupName>RangedPortsBySource</groupName>\r\n"
- . " <groupDescription>A</groupDescription>\r\n"
- . " <ipPermissions>\r\n"
- . " <item>\r\n"
- . " <ipProtocol>tcp</ipProtocol>\r\n"
- . " <fromPort>6000</fromPort>\r\n"
- . " <toPort>7000</toPort>\r\n"
- . " <groups/>\r\n"
- . " <ipRanges>\r\n"
- . " <item>\r\n"
- . " <cidrIp>0.0.0.0/0</cidrIp>\r\n"
- . " </item>\r\n"
- . " </ipRanges>\r\n"
- . " </item>\r\n"
- . " </ipPermissions>\r\n"
- . " </item>\r\n"
- . " </securityGroupInfo>\r\n"
- . "</DescribeSecurityGroupsResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->describe(array('WebServers','RangedPortsBySource'));
- $this->assertEquals(2, count($return));
- $arrGroups = array(
- array(
- 'ownerId' => 'UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM',
- 'groupName' => 'WebServers',
- 'groupDescription' => 'Web',
- 'ipPermissions' => array(0 => array(
- 'ipProtocol' => 'tcp',
- 'fromPort' => '80',
- 'toPort' => '80',
- 'ipRanges' => '0.0.0.0/0'
- ))
- ),
- array(
- 'ownerId' => 'UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM',
- 'groupName' => 'RangedPortsBySource',
- 'groupDescription' => 'A',
- 'ipPermissions' => array(0 => array(
- 'ipProtocol' => 'tcp',
- 'fromPort' => '6000',
- 'toPort' => '7000',
- 'ipRanges' => '0.0.0.0/0'
- ))
- )
- );
- foreach($return as $k => $r) {
- $this->assertSame($arrGroups[$k], $r);
- }
- }
- public function testDescribeSingleSecruityGroup()
- {
- $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"
- . "<DescribeSecurityGroupsResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <securityGroupInfo>\r\n"
- . " <item>\r\n"
- . " <ownerId>UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM</ownerId>\r\n"
- . " <groupName>WebServers</groupName>\r\n"
- . " <groupDescription>Web</groupDescription>\r\n"
- . " <ipPermissions>\r\n"
- . " <item>\r\n"
- . " <ipProtocol>tcp</ipProtocol>\r\n"
- . " <fromPort>80</fromPort>\r\n"
- . " <toPort>80</toPort>\r\n"
- . " <groups/>\r\n"
- . " <ipRanges>\r\n"
- . " <item>\r\n"
- . " <cidrIp>0.0.0.0/0</cidrIp>\r\n"
- . " </item>\r\n"
- . " </ipRanges>\r\n"
- . " </item>\r\n"
- . " </ipPermissions>\r\n"
- . " </item>\r\n"
- . " </securityGroupInfo>\r\n"
- . "</DescribeSecurityGroupsResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->describe('WebServers');
- $this->assertEquals(1, count($return));
- $arrGroups = array(
- array(
- 'ownerId' => 'UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM',
- 'groupName' => 'WebServers',
- 'groupDescription' => 'Web',
- 'ipPermissions' => array(0 => array(
- 'ipProtocol' => 'tcp',
- 'fromPort' => '80',
- 'toPort' => '80',
- 'ipRanges' => '0.0.0.0/0'
- ))
- )
- );
- foreach($return as $k => $r) {
- $this->assertSame($arrGroups[$k], $r);
- }
- }
- public function testDescribeSingleSecruityGroupWithMultipleIpsSamePort()
- {
- $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"
- . "<DescribeSecurityGroupsResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <securityGroupInfo>\r\n"
- . " <item>\r\n"
- . " <ownerId>UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM</ownerId>\r\n"
- . " <groupName>WebServers</groupName>\r\n"
- . " <groupDescription>Web</groupDescription>\r\n"
- . " <ipPermissions>\r\n"
- . " <item>\r\n"
- . " <ipProtocol>tcp</ipProtocol>\r\n"
- . " <fromPort>80</fromPort>\r\n"
- . " <toPort>80</toPort>\r\n"
- . " <groups/>\r\n"
- . " <ipRanges>\r\n"
- . " <item>\r\n"
- . " <cidrIp>0.0.0.0/0</cidrIp>\r\n"
- . " </item>\r\n"
- . " <item>\r\n"
- . " <cidrIp>1.1.1.1/0</cidrIp>\r\n"
- . " </item>\r\n"
- . " </ipRanges>\r\n"
- . " </item>\r\n"
- . " </ipPermissions>\r\n"
- . " </item>\r\n"
- . " </securityGroupInfo>\r\n"
- . "</DescribeSecurityGroupsResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->describe('WebServers');
- $this->assertEquals(1, count($return));
- $arrGroups = array(
- array(
- 'ownerId' => 'UYY3TLBUXIEON5NQVUUX6OMPWBZIQNFM',
- 'groupName' => 'WebServers',
- 'groupDescription' => 'Web',
- 'ipPermissions' => array(0 => array(
- 'ipProtocol' => 'tcp',
- 'fromPort' => '80',
- 'toPort' => '80',
- 'ipRanges' => array(
- '0.0.0.0/0',
- '1.1.1.1/0'
- )
- ))
- )
- );
- foreach($return as $k => $r) {
- $this->assertSame($arrGroups[$k], $r);
- }
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_Securitygroups->revoke()
- */
- public function testRevokeSinglePort()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<RevokeSecurityGroupIngressResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</RevokeSecurityGroupIngressResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->revokeIp('MyGroup', 'tcp', '80', '80', '0.0.0.0/0');
- $this->assertTrue($return);
- }
- public function testRevokePortRange()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<RevokeSecurityGroupIngressResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</RevokeSecurityGroupIngressResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->revokeIp('MyGroup', 'tcp', '6000', '7000', '0.0.0.0/0');
- $this->assertTrue($return);
- }
- public function testRevokeSecurityGroupName()
- {
- $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"
- . "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
- . "<RevokeSecurityGroupIngressResponse xmlns=\"http://ec2.amazonaws.com/doc/2009-04-04/\">\r\n"
- . " <return>true</return>\r\n"
- . "</RevokeSecurityGroupIngressResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_Securitygroups->revokeGroup('MyGroup', 'groupname', '15333848');
- $this->assertTrue($return);
- }
- }
|