/tests/unit/WindowsAzure/Common/ConfigurationTest.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 164 lines · 77 code · 20 blank · 67 comment · 0 complexity · 30e91a30149df635efc2feb317065f95 MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package Tests\Unit\WindowsAzure\Common\Internal
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/windowsazure/azure-sdk-for-php
  22. */
  23. namespace Tests\Unit\WindowsAzure\Common\Internal;
  24. use WindowsAzure\Common\Configuration;
  25. use Tests\Framework\TestResources;
  26. use WindowsAzure\Common\Internal\Resources;
  27. use WindowsAzure\Common\Internal\InvalidArgumentTypeException;
  28. use WindowsAzure\Queue\QueueSettings;
  29. /**
  30. * Unit tests for Configuration class
  31. *
  32. * @package Tests\Unit\WindowsAzure\Common\Internal
  33. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  34. * @copyright 2012 Microsoft Corporation
  35. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  36. * @version Release: @package_version@
  37. * @link https://github.com/windowsazure/azure-sdk-for-php
  38. */
  39. class ConfigurationTest extends \PHPUnit_Framework_TestCase
  40. {
  41. /**
  42. * @covers WindowsAzure\Common\Configuration::__construct
  43. */
  44. public function test__construct()
  45. {
  46. // Test
  47. $config = new Configuration();
  48. // Assert
  49. $actual = $config->getProperties();
  50. $this->assertTrue(empty($actual));
  51. }
  52. /**
  53. * @covers WindowsAzure\Common\Configuration::getInstance
  54. */
  55. public function testGetInstance()
  56. {
  57. $config = Configuration::getInstance();
  58. $this->assertTrue(is_array($config->getProperties()));
  59. }
  60. /**
  61. * @covers WindowsAzure\Common\Configuration::getProperties
  62. */
  63. public function testGetProperties()
  64. {
  65. $config = new Configuration();
  66. $config->setProperty(TestResources::KEY1, TestResources::VALUE1);
  67. $config->setProperty(TestResources::KEY2, TestResources::VALUE2);
  68. $this->assertTrue(is_array($config->getProperties()));
  69. $this->assertEquals(2, count($config->getProperties()));
  70. }
  71. /**
  72. * @covers WindowsAzure\Common\Configuration::getProperty
  73. */
  74. public function testGetProperty()
  75. {
  76. $config = $this->config = new Configuration();
  77. $config->setProperty(TestResources::KEY1, TestResources::VALUE1);
  78. $config->setProperty(TestResources::KEY2, TestResources::VALUE2);
  79. $this->assertEquals(TestResources::VALUE1, $config->getProperty(TestResources::KEY1));
  80. $this->assertEquals(TestResources::VALUE2, $config->getProperty(TestResources::KEY2));
  81. }
  82. /**
  83. * @covers WindowsAzure\Common\Configuration::setProperty
  84. */
  85. public function testSetProperty()
  86. {
  87. // Setup
  88. $key = 'prop_key';
  89. $value = 'prop_value';
  90. $config = new Configuration();
  91. // Test
  92. $config->setProperty($key, $value);
  93. // Assert
  94. $this->assertEquals($value, $config->getProperty($key));
  95. }
  96. /**
  97. * @covers WindowsAzure\Common\Configuration::setProperty
  98. */
  99. public function testSetPropertyWithNonStringKeyFail()
  100. {
  101. $invalidKey = new \DateTime();
  102. $this->setExpectedException(get_class(new InvalidArgumentTypeException('')));
  103. $config = $this->config = new Configuration();
  104. $config->setProperty($invalidKey, TestResources::VALUE1);
  105. }
  106. /**
  107. * @covers WindowsAzure\Common\Configuration::create
  108. * @covers WindowsAzure\Common\Configuration::_useStorageEmulatorConfig
  109. */
  110. public function testCreate()
  111. {
  112. $config = new Configuration();
  113. $config->setProperty(QueueSettings::ACCOUNT_KEY, TestResources::KEY1);
  114. $config->setProperty(QueueSettings::ACCOUNT_NAME, TestResources::ACCOUNT_NAME);
  115. $config->setProperty(QueueSettings::URI, 'http://' . TestResources::ACCOUNT_NAME . TestResources::QUEUE_URI);
  116. $queueRestProxy = $config->create(Resources::QUEUE_TYPE_NAME);
  117. $this->assertInstanceOf('WindowsAzure\Queue\Internal\IQueue', $queueRestProxy);
  118. }
  119. /**
  120. * @covers WindowsAzure\Common\Configuration::create
  121. * @covers WindowsAzure\Common\Configuration::_useStorageEmulatorConfig
  122. */
  123. public function testCreateWithInvalidTypeFail()
  124. {
  125. $invalidType = gettype('');
  126. $this->setExpectedException(get_class(new InvalidArgumentTypeException('')));
  127. $config = $this->config = new Configuration();
  128. $config->setProperty(QueueSettings::ACCOUNT_KEY, TestResources::KEY1);
  129. $config->setProperty(QueueSettings::ACCOUNT_NAME, TestResources::ACCOUNT_NAME);
  130. $config->setProperty(QueueSettings::URI, TestResources::QUEUE_URI);
  131. $config->create($invalidType);
  132. }
  133. /**
  134. * @covers WindowsAzure\Common\Configuration::isEmulated
  135. */
  136. public function testIsEmulated()
  137. {
  138. // Test
  139. $actual = Configuration::isEmulated();
  140. // Assert
  141. $this->assertTrue(isset($actual));
  142. }
  143. }
  144. ?>