/codes-php/phpjakarta/tests/unit/WindowsAzure/Queue/Models/GetQueueMetadataResultTest.php

http://bukuphpjs.codeplex.com · PHP · 123 lines · 42 code · 19 blank · 62 comment · 0 complexity · a12d98207049d687717f3741dd445f17 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\Queue\Models
  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\Queue\Models;
  24. use WindowsAzure\Queue\Models\GetQueueMetadataResult;
  25. /**
  26. * Unit tests for class GetQueueMetadataResult
  27. *
  28. * @category Microsoft
  29. * @package Tests\Unit\WindowsAzure\Queue\Models
  30. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  31. * @copyright 2012 Microsoft Corporation
  32. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  33. * @version Release: @package_version@
  34. * @link https://github.com/windowsazure/azure-sdk-for-php
  35. */
  36. class GetQueueMetadataResultTest extends \PHPUnit_Framework_TestCase
  37. {
  38. /**
  39. * @covers WindowsAzure\Queue\Models\GetQueueMetadataResult::__construct
  40. */
  41. public function test__construct()
  42. {
  43. // Setup
  44. $count = 10;
  45. $metadata = array('key1' => 'value1', 'key2' => 'value2');
  46. // Test
  47. $actual = new GetQueueMetadataResult($count, $metadata);
  48. // Assert
  49. $this->assertEquals($count, $actual->getApproximateMessageCount());
  50. $this->assertEquals($metadata, $actual->getMetadata());
  51. }
  52. /**
  53. * @covers WindowsAzure\Queue\Models\GetQueueMetadataResult::getApproximateMessageCount
  54. */
  55. public function testGetApproximateMessageCount()
  56. {
  57. // Setup
  58. $expected = 10;
  59. $metadata = new GetQueueMetadataResult($expected, array());
  60. // Test
  61. $actual = $metadata->getApproximateMessageCount();
  62. // Assert
  63. $this->assertEquals($expected, $actual);
  64. }
  65. /**
  66. * @covers WindowsAzure\Queue\Models\GetQueueMetadataResult::setApproximateMessageCount
  67. */
  68. public function testSetApproximateMessageCount()
  69. {
  70. // Setup
  71. $expected = 10;
  72. $metadata = new GetQueueMetadataResult(30, array());
  73. // Test
  74. $metadata->setApproximateMessageCount($expected);
  75. // Assert
  76. $this->assertEquals($expected, $metadata->getApproximateMessageCount());
  77. }
  78. /**
  79. * @covers WindowsAzure\Queue\Models\GetQueueMetadataResult::getMetadata
  80. */
  81. public function testGetMetadata()
  82. {
  83. // Setup
  84. $expected = array('key1' => 'value1', 'key2' => 'value2');
  85. $metadata = new GetQueueMetadataResult(0, $expected);
  86. // Test
  87. $actual = $metadata->getMetadata();
  88. // Assert
  89. $this->assertEquals($expected, $actual);
  90. }
  91. /**
  92. * @covers WindowsAzure\Queue\Models\GetQueueMetadataResult::setMetadata
  93. */
  94. public function testSetMetadata()
  95. {
  96. // Setup
  97. $expected = array('key1' => 'value1', 'key2' => 'value2');
  98. $metadata = new GetQueueMetadataResult(0, $expected);
  99. // Test
  100. $metadata->setMetadata($expected);
  101. // Assert
  102. $this->assertEquals($expected, $metadata->getMetadata());
  103. }
  104. }