| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <?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_WindowsAzure
- * @subpackage UnitTests
- * @version $Id$
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- if (!defined('PHPUnit_MAIN_METHOD')) {
- define('PHPUnit_MAIN_METHOD', 'Zend_Service_WindowsAzure_Diagnostics_ManagerTest::main');
- }
- /**
- * Test helpers
- */
- require_once dirname(__FILE__) . '/../../../../TestHelper.php';
- require_once dirname(__FILE__) . '/../../../../TestConfiguration.php.dist';
- /** Zend_Service_WindowsAzure_Storage_Blob */
- require_once 'Zend/Service/WindowsAzure/Storage/Blob.php';
- /** Zend_Service_WindowsAzure_Diagnostics_Manager */
- require_once 'Zend/Service/WindowsAzure/Diagnostics/Manager.php';
- /** Zend_Service_WindowsAzure_Diagnostics_ConfigurationInstance */
- require_once 'Zend/Service/WindowsAzure/Diagnostics/ConfigurationInstance.php';
- /**
- * @category Zend
- * @package Zend_Service_WindowsAzure
- * @subpackage UnitTests
- * @version $Id$
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Service_WindowsAzure_Diagnostics_ManagerTest extends PHPUnit_Framework_TestCase
- {
- public static function main()
- {
- $suite = new PHPUnit_Framework_TestSuite("Zend_Service_WindowsAzure_Diagnostics_ManagerTest");
- $result = PHPUnit_TextUI_TestRunner::run($suite);
- }
- /**
- * Test teardown
- */
- protected function tearDown()
- {
- $storageClient = $this->createStorageInstance();
- for ($i = 1; $i <= self::$uniqId; $i++)
- {
- try { $storageClient->deleteContainer(TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_CONTAINER_PREFIX . $i); } catch (Exception $e) { }
- }
- }
- protected function createStorageInstance()
- {
- $storageClient = null;
- if (TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_RUNONPROD)
- {
- $storageClient = new Zend_Service_WindowsAzure_Storage_Blob(TESTS_ZEND_SERVICE_WINDOWSAZURE_BLOB_HOST_PROD, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_ACCOUNT_PROD, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_KEY_PROD, false, Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract::retryN(10, 250));
- } else {
- $storageClient = new Zend_Service_WindowsAzure_Storage_Blob(TESTS_ZEND_SERVICE_WINDOWSAZURE_BLOB_HOST_DEV, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_ACCOUNT_DEV, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_KEY_DEV, true, Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract::retryN(10, 250));
- }
-
- if (TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_USEPROXY) {
- $storageClient->setProxy(TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_USEPROXY, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_PROXY, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_PROXY_PORT, TESTS_ZEND_SERVICE_WINDOWSAZURE_STORAGE_PROXY_CREDENTIALS);
- }
- return $storageClient;
- }
-
- protected static $uniqId = 0;
-
- protected function generateName()
- {
- self::$uniqId++;
- return TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_CONTAINER_PREFIX . self::$uniqId;
- }
-
- /**
- * Test manager initialize
- */
- public function testManagerInitialize()
- {
- if (TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_RUNTESTS) {
- $controlContainer = $this->generateName();
-
- $storageClient = $this->createStorageInstance();
- $manager = new Zend_Service_WindowsAzure_Diagnostics_Manager($storageClient, $controlContainer);
-
- $result = $storageClient->containerExists($controlContainer);
- $this->assertTrue($result);
- }
- }
-
- /**
- * Test manager default configuration
- */
- public function testManagerDefaultConfiguration()
- {
- if (TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_RUNTESTS) {
- $controlContainer = $this->generateName();
-
- $storageClient = $this->createStorageInstance();
- $manager = new Zend_Service_WindowsAzure_Diagnostics_Manager($storageClient, $controlContainer);
-
- $configuration = $manager->getDefaultConfiguration();
- $manager->setConfigurationForRoleInstance('test', $configuration);
-
- $this->assertEquals($configuration->toXml(), $manager->getConfigurationForRoleInstance('test')->toXml());
- }
- }
-
- /**
- * Test manager custom configuration
- */
- public function testManagerCustomConfiguration()
- {
- if (TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_RUNTESTS) {
- $controlContainer = $this->generateName();
-
- $storageClient = $this->createStorageInstance();
- $manager = new Zend_Service_WindowsAzure_Diagnostics_Manager($storageClient, $controlContainer);
-
- $configuration = $manager->getDefaultConfiguration();
- $configuration->DataSources->OverallQuotaInMB = 1;
- $configuration->DataSources->Logs->BufferQuotaInMB = 1;
- $configuration->DataSources->Logs->ScheduledTransferPeriodInMinutes = 1;
- $configuration->DataSources->PerformanceCounters->BufferQuotaInMB = 1;
- $configuration->DataSources->PerformanceCounters->ScheduledTransferPeriodInMinutes = 1;
- $configuration->DataSources->DiagnosticInfrastructureLogs->BufferQuotaInMB = 1;
- $configuration->DataSources->DiagnosticInfrastructureLogs->ScheduledTransferPeriodInMinutes = 1;
- $configuration->DataSources->PerformanceCounters->addSubscription('\Processor(*)\% Processor Time', 1);
- $configuration->DataSources->WindowsEventLog->addSubscription('System!*');
- $configuration->DataSources->WindowsEventLog->addSubscription('Application!*');
- $configuration->DataSources->Directories->addSubscription('X:\\', 'x', 10);
- $configuration->DataSources->Directories->addSubscription('Y:\\', 'y', 10);
- $configuration->DataSources->Directories->addSubscription('Z:\\', 'z', 10);
- $manager->setConfigurationForRoleInstance('test', $configuration);
-
- $result = $manager->getConfigurationForRoleInstance('test');
-
- $this->assertEquals($configuration->toXml(), $result->toXml());
- $this->assertEquals(1, count($result->DataSources->PerformanceCounters->Subscriptions));
- $this->assertEquals(2, count($result->DataSources->WindowsEventLog->Subscriptions));
- $this->assertEquals(3, count($result->DataSources->Directories->Subscriptions));
- }
- }
-
- /**
- * Test manager configuration exists
- */
- public function testManagerConfigurationExists()
- {
- if (TESTS_ZEND_SERVICE_WINDOWSAZURE_DIAGNOSTICS_RUNTESTS) {
- $controlContainer = $this->generateName();
-
- $storageClient = $this->createStorageInstance();
- $manager = new Zend_Service_WindowsAzure_Diagnostics_Manager($storageClient, $controlContainer);
-
- $result = $manager->configurationForRoleInstanceExists('test');
- $this->assertFalse($result);
-
- $configuration = $manager->getDefaultConfiguration();
- $manager->setConfigurationForRoleInstance('test', $configuration);
-
- $result = $manager->configurationForRoleInstanceExists('test');
- $this->assertTrue($result);
- }
- }
- }
- // Call Zend_Service_WindowsAzure_Credentials_SharedKeyTest::main() if this source file is executed directly.
- if (PHPUnit_MAIN_METHOD == "Zend_Service_WindowsAzure_Diagnostics_ManagerTest::main") {
- Zend_Service_WindowsAzure_Diagnostics_ManagerTest::main();
- }
|