/tests/functional/WindowsAzure/Queue/QueueServiceFunctionalOptionsTest.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 218 lines · 134 code · 20 blank · 64 comment · 0 complexity · 282322f97ab7d70998c75245bd830bc8 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\Functional\WindowsAzure\Queue
  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\Functional\WindowsAzure\Queue;
  24. use WindowsAzure\Common\Models\RetentionPolicy;
  25. use WindowsAzure\Common\Models\Logging;
  26. use WindowsAzure\Common\Models\Metrics;
  27. use WindowsAzure\Common\Models\ServiceProperties;
  28. use WindowsAzure\Queue\Models\ListQueuesOptions;
  29. use WindowsAzure\Queue\Models\ListQueuesResult;
  30. use WindowsAzure\Queue\Models\CreateQueueOptions;
  31. use WindowsAzure\Queue\Models\ListMessagesOptions;
  32. use WindowsAzure\Queue\Models\PeekMessagesOptions;
  33. use WindowsAzure\Queue\Models\QueueServiceOptions;
  34. use WindowsAzure\Queue\Models\CreateMessageOptions;
  35. class QueueServiceFunctionalOptionsTest extends \PHPUnit_Framework_TestCase {
  36. const IntegerMAX_VALUE = 2147483647;
  37. const IntegerMIN_VALUE = -2147483648;
  38. public function testCheckQueueServiceOptions() {
  39. $options = new QueueServiceOptions();
  40. $this->assertNull($options->getTimeout(), 'Default QueueServiceOptions->getTimeout should be null');
  41. $options->setTimeout(self::IntegerMAX_VALUE);
  42. $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set QueueServiceOptions->getTimeout');
  43. }
  44. public function testCheckRetentionPolicy() {
  45. // Check that the default values of options are reasonable
  46. $rp = new RetentionPolicy();
  47. $this->assertNull($rp->getDays(), 'Default RetentionPolicy->getDays should be null');
  48. $this->assertNull($rp->getEnabled(), 'Default RetentionPolicy->getEnabled should be null');
  49. $rp->setDays(10);
  50. $rp->setEnabled(true);
  51. $this->assertEquals(10, $rp->getDays(), 'Set RetentionPolicy->getDays should be 10');
  52. $this->assertTrue($rp->getEnabled(), 'Set RetentionPolicy->getEnabled should be true');
  53. }
  54. public function testCheckLogging() {
  55. // Check that the default values of options are reasonable
  56. $rp = new RetentionPolicy();
  57. $l = new Logging();
  58. $this->assertNull($l->getRetentionPolicy(), 'Default Logging->getRetentionPolicy should be null');
  59. $this->assertNull($l->getVersion(), 'Default Logging->getVersion should be null');
  60. $this->assertNull($l->getDelete(), 'Default Logging->getDelete should be null');
  61. $this->assertNull($l->getRead(), 'Default Logging->getRead should be false');
  62. $this->assertNull($l->getWrite(), 'Default Logging->getWrite should be false');
  63. $l->setRetentionPolicy($rp);
  64. $l->setVersion('2.0');
  65. $l->setDelete(true);
  66. $l->setRead(true);
  67. $l->setWrite(true);
  68. $this->assertEquals($rp, $l->getRetentionPolicy(), 'Set Logging->getRetentionPolicy');
  69. $this->assertEquals('2.0', $l->getVersion(), 'Set Logging->getVersion');
  70. $this->assertTrue($l->getDelete(), 'Set Logging->getDelete should be true');
  71. $this->assertTrue($l->getRead(), 'Set Logging->getRead should be true');
  72. $this->assertTrue($l->getWrite(), 'Set Logging->getWrite should be true');
  73. }
  74. public function testCheckMetrics() {
  75. // Check that the default values of options are reasonable
  76. $rp = new RetentionPolicy();
  77. $m = new Metrics();
  78. $this->assertNull($m->getRetentionPolicy(), 'Default Metrics->getRetentionPolicy should be null');
  79. $this->assertNull($m->getVersion(), 'Default Metrics->getVersion should be null');
  80. $this->assertNull($m->getEnabled(), 'Default Metrics->getEnabled should be false');
  81. $this->assertNull($m->getIncludeAPIs(), 'Default Metrics->getIncludeAPIs should be null');
  82. $m->setRetentionPolicy($rp);
  83. $m->setVersion('2.0');
  84. $m->setEnabled(true);
  85. $m->setIncludeAPIs(true);
  86. $this->assertEquals($rp, $m->getRetentionPolicy(), 'Set Metrics->getRetentionPolicy');
  87. $this->assertEquals('2.0', $m->getVersion(), 'Set Metrics->getVersion');
  88. $this->assertTrue($m->getEnabled(), 'Set Metrics->getEnabled should be true');
  89. $this->assertTrue($m->getIncludeAPIs(), 'Set Metrics->getIncludeAPIs should be true');
  90. }
  91. public function testCheckServiceProperties() {
  92. // Check that the default values of options are reasonable
  93. $l = new Logging();
  94. $m = new Metrics();
  95. $sp = new ServiceProperties();
  96. $this->assertNull($sp->getLogging(), 'Default ServiceProperties->getLogging should not be null');
  97. $this->assertNull($sp->getMetrics(), 'Default ServiceProperties->getMetrics should not be null');
  98. $sp->setLogging($l);
  99. $sp->setMetrics($m);
  100. $this->assertEquals($sp->getLogging(), $l, 'Set ServiceProperties->getLogging');
  101. $this->assertEquals($sp->getMetrics(), $m, 'Set ServiceProperties->getMetrics');
  102. }
  103. public function testCheckListQueuesOptions() {
  104. $options = new ListQueuesOptions();
  105. $this->assertNull($options->getIncludeMetadata(), 'Default ListQueuesOptions->getIncludeMetadata');
  106. $this->assertNull($options->getMarker(), 'Default ListQueuesOptions->getMarker');
  107. $this->assertEquals(0, $options->getMaxResults(), 'Default ListQueuesOptions->getMaxResults');
  108. $this->assertNull($options->getPrefix(), 'Default ListQueuesOptions->getPrefix');
  109. $this->assertNull($options->getTimeout(), 'Default ListQueuesOptions->getTimeout');
  110. $options->setIncludeMetadata(true);
  111. $options->setMarker('foo');
  112. // TODO: Revert this change when fixed
  113. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/69
  114. // $options->setMaxResults(-10);
  115. $options->setMaxResults('-10');
  116. $options->setPrefix('bar');
  117. $options->setTimeout(self::IntegerMAX_VALUE);
  118. $this->assertTrue($options->getIncludeMetadata(), 'Set ListQueuesOptions->getIncludeMetadata');
  119. $this->assertEquals('foo', $options->getMarker(), 'Set ListQueuesOptions->getMarker');
  120. $this->assertEquals(-10, $options->getMaxResults(), 'Set ListQueuesOptions->getMaxResults');
  121. $this->assertEquals('bar', $options->getPrefix(), 'Set ListQueuesOptions->getPrefix');
  122. $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set ListQueuesOptions->getTimeout');
  123. }
  124. public function testCheckCreateQueueOptions() {
  125. $options = new CreateQueueOptions();
  126. $this->assertNull($options->getMetadata(), 'Default CreateQueueOptions->getMetadata');
  127. $this->assertEquals(0, count($options->getMetadata()), 'Default CreateQueueOptions->getMetadata->size');
  128. // TODO: Uncomment when fixed.
  129. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  130. // $this->assertNull($options->getTimeout(), 'Default CreateQueueOptions->getTimeout');
  131. $metadata = array(
  132. 'foo' => 'bar',
  133. 'baz' => 'bat',
  134. );
  135. $options->setMetadata($metadata);
  136. // TODO: Uncomment when fixed.
  137. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  138. //$options->setTimeout(-10);
  139. $this->assertEquals($options->getMetadata(), $metadata, 'Set CreateQueueOptions->getMetadata');
  140. $this->assertEquals(2, count($options->getMetadata()), 'Set CreateQueueOptions->getMetadata->size');
  141. // TODO: Uncomment when fixed.
  142. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  143. // $this->assertEquals(-10, $options->getTimeout(), 'Set CreateQueueOptions->getTimeout');
  144. $options->addMetadata('aaa', 'bbb');
  145. $this->assertEquals(3, count($options->getMetadata()), 'Set CreateQueueOptions->getMetadata->size');
  146. }
  147. public function testCheckCreateMessageOptions() {
  148. $options = new CreateMessageOptions();
  149. // TODO: Uncomment when fixed.
  150. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  151. // $this->assertNull($options->getTimeout(), 'Default CreateMessageOptions->getTimeout');
  152. $this->assertNull($options->getTimeToLiveInSeconds(), 'Default CreateMessageOptions->getTimeToLiveInSeconds');
  153. $this->assertNull($options->getVisibilityTimeoutInSeconds(), 'Default CreateMessageOptions->getVisibilityTimeoutInSeconds');
  154. // TODO: Uncomment when fixed.
  155. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  156. // $options->setTimeout(self::IntegerMAX_VALUE);
  157. $options->setTimeToLiveInSeconds(0);
  158. $options->setVisibilityTimeoutInSeconds(self::IntegerMIN_VALUE);
  159. // TODO: Uncomment when fixed.
  160. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  161. // $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set CreateMessageOptions->getTimeout');
  162. $this->assertEquals(0, $options->getTimeToLiveInSeconds(), 'Set CreateMessageOptions->getTimeToLiveInSeconds');
  163. $this->assertEquals(self::IntegerMIN_VALUE, $options->getVisibilityTimeoutInSeconds(), 'Set CreateMessageOptions->getVisibilityTimeoutInSeconds');
  164. }
  165. public function testCheckListMessagesOptions() {
  166. $options = new ListMessagesOptions();
  167. // TODO: Uncomment when fixed.
  168. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  169. // $this->assertNull($options->getTimeout(), 'Default ListMessagesOptions->getTimeout');
  170. $this->assertNull($options->getNumberOfMessages(), 'Default ListMessagesOptions->getNumberOfMessages');
  171. $this->assertNull($options->getVisibilityTimeoutInSeconds(), 'Default ListMessagesOptions->getVisibilityTimeoutInSeconds');
  172. // TODO: Uncomment when fixed.
  173. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  174. // $options->setTimeout(self::IntegerMAX_VALUE);
  175. $options->setNumberOfMessages(0);
  176. $options->setVisibilityTimeoutInSeconds(self::IntegerMIN_VALUE);
  177. // TODO: Uncomment when fixed.
  178. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  179. // $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set ListMessagesOptions->getTimeout');
  180. $this->assertEquals(0, $options->getNumberOfMessages(), 'Set ListMessagesOptions->getNumberOfMessages');
  181. $this->assertEquals(self::IntegerMIN_VALUE, $options->getVisibilityTimeoutInSeconds(), 'Set ListMessagesOptions->getVisibilityTimeoutInSeconds');
  182. }
  183. public function testCheckPeekMessagesOptions() {
  184. $options = new PeekMessagesOptions();
  185. // TODO: Uncomment when fixed.
  186. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  187. // $this->assertNull($options->getTimeout(), 'Default PeekMessagesOptions->getTimeout');
  188. $this->assertNull($options->getNumberOfMessages(), 'Default PeekMessagesOptions->getNumberOfMessages');
  189. // TODO: Uncomment when fixed.
  190. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  191. // $options->setTimeout(self::IntegerMAX_VALUE);
  192. $options->setNumberOfMessages(0);
  193. // TODO: Uncomment when fixed.
  194. // https://github.com/WindowsAzure/azure-sdk-for-php/issues/59
  195. // $this->assertEquals(self::IntegerMAX_VALUE, $options->getTimeout(), 'Set PeekMessagesOptions->getTimeout');
  196. $this->assertEquals(0, $options->getNumberOfMessages(), 'Set PeekMessagesOptions->getNumberOfMessages');
  197. }
  198. }