/tests/unit/WindowsAzure/ServiceManagement/Models/RoleInstanceTest.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 181 lines · 63 code · 27 blank · 91 comment · 0 complexity · 38bf1b8aaf955a19d1a3f2e427ada5d8 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. *
  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. *
  22. * @link https://github.com/windowsazure/azure-sdk-for-php
  23. */
  24. namespace Tests\unit\WindowsAzure\ServiceManagement\Models;
  25. use WindowsAzure\ServiceManagement\Models\RoleInstance;
  26. use PHPUnit\Framework\TestCase;
  27. /**
  28. * Unit tests for class RoleInstance.
  29. *
  30. * @category Microsoft
  31. *
  32. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  33. * @copyright 2012 Microsoft Corporation
  34. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  35. *
  36. * @version Release: 0.5.0_2016-11
  37. *
  38. * @link https://github.com/windowsazure/azure-sdk-for-php
  39. */
  40. class RoleInstanceTest extends TestCase
  41. {
  42. /**
  43. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setRoleName
  44. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getRoleName
  45. */
  46. public function testSetRoleName()
  47. {
  48. // Setup
  49. $expected = 'rolename';
  50. $roleInstance = new RoleInstance();
  51. // Test
  52. $roleInstance->setRoleName($expected);
  53. // Assert
  54. $this->assertEquals($expected, $roleInstance->getRoleName());
  55. }
  56. /**
  57. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceName
  58. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceName
  59. */
  60. public function testSetInstanceName()
  61. {
  62. // Setup
  63. $expected = 'instancename';
  64. $roleInstance = new RoleInstance();
  65. // Test
  66. $roleInstance->setInstanceName($expected);
  67. // Assert
  68. $this->assertEquals($expected, $roleInstance->getInstanceName());
  69. }
  70. /**
  71. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceStatus
  72. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceStatus
  73. */
  74. public function testSetInstanceStatus()
  75. {
  76. // Setup
  77. $expected = 'instancestatus';
  78. $roleInstance = new RoleInstance();
  79. // Test
  80. $roleInstance->setInstanceStatus($expected);
  81. // Assert
  82. $this->assertEquals($expected, $roleInstance->getInstanceStatus());
  83. }
  84. /**
  85. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceUpgradeDomain
  86. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceUpgradeDomain
  87. */
  88. public function testSetInstanceUpgradeDomain()
  89. {
  90. // Setup
  91. $expected = 1;
  92. $roleInstance = new RoleInstance();
  93. // Test
  94. $roleInstance->setInstanceUpgradeDomain($expected);
  95. // Assert
  96. $this->assertEquals($expected, $roleInstance->getInstanceUpgradeDomain());
  97. }
  98. /**
  99. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceFaultDomain
  100. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceFaultDomain
  101. */
  102. public function testSetInstanceFaultDomain()
  103. {
  104. // Setup
  105. $expected = 'instancefaultdomain';
  106. $roleInstance = new RoleInstance();
  107. // Test
  108. $roleInstance->setInstanceFaultDomain($expected);
  109. // Assert
  110. $this->assertEquals($expected, $roleInstance->getInstanceFaultDomain());
  111. }
  112. /**
  113. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceSize
  114. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceSize
  115. */
  116. public function testSetInstanceSize()
  117. {
  118. // Setup
  119. $expected = 'instancesize';
  120. $roleInstance = new RoleInstance();
  121. // Test
  122. $roleInstance->setInstanceSize($expected);
  123. // Assert
  124. $this->assertEquals($expected, $roleInstance->getInstanceSize());
  125. }
  126. /**
  127. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceStateDetails
  128. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceStateDetails
  129. */
  130. public function testSetInstanceStateDetails()
  131. {
  132. // Setup
  133. $expected = 'instancestatedetails';
  134. $roleInstance = new RoleInstance();
  135. // Test
  136. $roleInstance->setInstanceStateDetails($expected);
  137. // Assert
  138. $this->assertEquals($expected, $roleInstance->getInstanceStateDetails());
  139. }
  140. /**
  141. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::setInstanceErrorCode
  142. * @covers \WindowsAzure\ServiceManagement\Models\RoleInstance::getInstanceErrorCode
  143. */
  144. public function testSetInstanceErrorCode()
  145. {
  146. // Setup
  147. $expected = 'instanceerrorcode';
  148. $roleInstance = new RoleInstance();
  149. // Test
  150. $roleInstance->setInstanceErrorCode($expected);
  151. // Assert
  152. $this->assertEquals($expected, $roleInstance->getInstanceErrorCode());
  153. }
  154. }