| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- <?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/Service/Amazon/Ec2/CloudWatch.php';
- require_once 'Zend/Http/Client.php';
- require_once 'Zend/Http/Client/Adapter/Test.php';
- /**
- * Zend_Service_Amazon_Ec2_CloudWatch 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_CloudWatchTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Zend_Service_Amazon_Ec2_CloudWatch
- */
- private $Zend_Service_Amazon_Ec2_CloudWatch;
- /**
- * Prepares the environment before running a test.
- */
- protected function setUp()
- {
- parent::setUp();
- $this->Zend_Service_Amazon_Ec2_CloudWatch = new Zend_Service_Amazon_Ec2_CloudWatch('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_CloudWatch::setHttpClient($client);
- }
- /**
- * Cleans up the environment after running a test.
- */
- protected function tearDown()
- {
- unset($this->adapter);
- $this->Zend_Service_Amazon_Ec2_CloudWatch = null;
- parent::tearDown();
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_CloudWatch->getMetricStatistics()
- */
- public function testGetMetricStatistics()
- {
- $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"
- ."<GetMetricStatisticsResponse xmlns=\"http://monitoring.amazonaws.com/doc/2009-05-15/\">\r\n"
- ." <GetMetricStatisticsResult>\r\n"
- ." <Datapoints>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-06-16T23:57:00Z</Timestamp>\r\n"
- ." <Unit>Bytes</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>14838.0</Average>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-06-17T00:16:00Z</Timestamp>\r\n"
- ." <Unit>Bytes</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>18251.0</Average>\r\n"
- ." </member>\r\n"
- ." </Datapoints>\r\n"
- ." <Label>NetworkIn</Label>"
- ." </GetMetricStatisticsResult>\r\n"
- ."</GetMetricStatisticsResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_CloudWatch->getMetricStatistics(array('MeasureName' => 'NetworkIn', 'Statistics' => array('Average')));
- $arrReturn = array(
- 'label' => 'NetworkIn',
- 'datapoints' => array(
- array(
- 'Timestamp' => '2009-06-16T23:57:00Z',
- 'Unit' => 'Bytes',
- 'Samples' => '1.0',
- 'Average' => '14838.0',
- ),
- array(
- 'Timestamp' => '2009-06-17T00:16:00Z',
- 'Unit' => 'Bytes',
- 'Samples' => '1.0',
- 'Average' => '18251.0',
- )
- )
- );
- $this->assertSame($arrReturn, $return);
- }
- /**
- * Tests Zend_Service_Amazon_Ec2_CloudWatch->listMetrics()
- */
- public function testListMetrics()
- {
- $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"
- ."<ListMetricsResponse xmlns=\"http://monitoring.amazonaws.com/doc/2009-05-15/\">\r\n"
- ." <ListMetricsResult>\r\n"
- ." <Metrics>\r\n"
- ." <member>\r\n"
- ." <Dimensions>\r\n"
- ." <member>\r\n"
- ." <Name>InstanceId</Name>\r\n"
- ." <Value>i-bec576d7</Value>\r\n"
- ." </member>\r\n"
- ." </Dimensions>\r\n"
- ." <MeasureName>NetworkIn</MeasureName>\r\n"
- ." <Namespace>AWS/EC2</Namespace>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Dimensions>\r\n"
- ." <member>\r\n"
- ." <Name>InstanceId</Name>\r\n"
- ." <Value>i-bec576d7</Value>\r\n"
- ." </member>\r\n"
- ." </Dimensions>\r\n"
- ." <MeasureName>CPUUtilization</MeasureName>\r\n"
- ." <Namespace>AWS/EC2</Namespace>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Dimensions/>\r\n"
- ." <MeasureName>NetworkIn</MeasureName>\r\n"
- ." <Namespace>AWS/EC2</Namespace>\r\n"
- ." </member>\r\n"
- ." </Metrics>\r\n"
- ." </ListMetricsResult>\r\n"
- ."</ListMetricsResponse>\r\n";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_CloudWatch->listMetrics();
- $arrReturn = array(
- array(
- 'MeasureName' => 'NetworkIn',
- 'Namespace' => 'AWS/EC2',
- 'Deminsions' => array(
- 'name' => 'InstanceId',
- 'value' => 'i-bec576d7'
- )
- ),
- array(
- 'MeasureName' => 'CPUUtilization',
- 'Namespace' => 'AWS/EC2',
- 'Deminsions' => array(
- 'name' => 'InstanceId',
- 'value' => 'i-bec576d7'
- )
- ),
- array(
- 'MeasureName' => 'NetworkIn',
- 'Namespace' => 'AWS/EC2',
- 'Deminsions' => array()
- )
- );
- $this->assertSame($arrReturn, $return);
- }
- public function testZF8149()
- {
- $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"
- ."<GetMetricStatisticsResponse xmlns=\"http://monitoring.amazonaws.com/doc/2009-05-15/\">\r\n"
- ." <GetMetricStatisticsResult>\r\n"
- ." <Datapoints>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-11-19T21:52:00Z</Timestamp>\r\n"
- ." <Unit>Percent</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>0.09</Average>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-11-19T21:55:00Z</Timestamp>\r\n"
- ." <Unit>Percent</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>0.18</Average>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-11-19T21:54:00Z</Timestamp>\r\n"
- ." <Unit>Percent</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>0.09</Average>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-11-19T21:51:00Z</Timestamp>\r\n"
- ." <Unit>Percent</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>0.18</Average>\r\n"
- ." </member>\r\n"
- ." <member>\r\n"
- ." <Timestamp>2009-11-19T21:53:00Z</Timestamp>\r\n"
- ." <Unit>Percent</Unit>\r\n"
- ." <Samples>1.0</Samples>\r\n"
- ." <Average>0.09</Average>\r\n"
- ." </member>\r\n"
- ." </Datapoints>\r\n"
- ." <Label>CPUUtilization</Label>\r\n"
- ." </GetMetricStatisticsResult>\r\n"
- ." <ResponseMetadata>\r\n"
- ." <RequestId>6fb864fd-d557-11de-ac37-475775222f21</RequestId>\r\n"
- ." </ResponseMetadata>\r\n"
- ."</GetMetricStatisticsResponse>";
- $this->adapter->setResponse($rawHttpResponse);
- $return = $this->Zend_Service_Amazon_Ec2_CloudWatch->getMetricStatistics(
- array(
- 'MeasureName' => 'CPUUtilization',
- 'Statistics' => array('Average'),
- 'Dimensions'=> array('InstanceId'=>'i-93ba31fa'),
- 'StartTime'=> '2009-11-19T21:51:57+00:00',
- 'EndTime'=> '2009-11-19T21:56:57+00:00'
- )
- );
- $arrReturn = array (
- 'label' => 'CPUUtilization',
- 'datapoints' =>
- array (
- 0 =>
- array (
- 'Timestamp' => '2009-11-19T21:52:00Z',
- 'Unit' => 'Percent',
- 'Samples' => '1.0',
- 'Average' => '0.09',
- ),
- 1 =>
- array (
- 'Timestamp' => '2009-11-19T21:55:00Z',
- 'Unit' => 'Percent',
- 'Samples' => '1.0',
- 'Average' => '0.18',
- ),
- 2 =>
- array (
- 'Timestamp' => '2009-11-19T21:54:00Z',
- 'Unit' => 'Percent',
- 'Samples' => '1.0',
- 'Average' => '0.09',
- ),
- 3 =>
- array (
- 'Timestamp' => '2009-11-19T21:51:00Z',
- 'Unit' => 'Percent',
- 'Samples' => '1.0',
- 'Average' => '0.18',
- ),
- 4 =>
- array (
- 'Timestamp' => '2009-11-19T21:53:00Z',
- 'Unit' => 'Percent',
- 'Samples' => '1.0',
- 'Average' => '0.09',
- ),
- ),
- );
- $this->assertSame($arrReturn, $return);
- }
- }
|