/codes-php/phpjakarta/tests/unit/WindowsAzure/Table/Models/EdmTypeTest.php

http://bukuphpjs.codeplex.com · PHP · 358 lines · 149 code · 60 blank · 149 comment · 1 complexity · 299f106d4eede38c35c9cbd0a699f86d 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\Table\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\Table\Models;
  24. use WindowsAzure\Table\Models\EdmType;
  25. use WindowsAzure\Common\Internal\Utilities;
  26. /**
  27. * Unit tests for class EdmTypeTest
  28. *
  29. * @category Microsoft
  30. * @package Tests\Unit\WindowsAzure\Table\Models
  31. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  32. * @copyright 2012 Microsoft Corporation
  33. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  34. * @version Release: @package_version@
  35. * @link https://github.com/windowsazure/azure-sdk-for-php
  36. */
  37. class EdmTypeTest extends \PHPUnit_Framework_TestCase
  38. {
  39. /**
  40. * @covers WindowsAzure\Table\Models\EdmType::processType
  41. */
  42. public function testProcessTypeWithNull()
  43. {
  44. // Setup
  45. $expected = EdmType::STRING;
  46. // Test
  47. $actual = EdmType::processType(null);
  48. // Assert
  49. $this->assertEquals($expected, $actual);
  50. }
  51. /**
  52. * @covers WindowsAzure\Table\Models\EdmType::processType
  53. */
  54. public function testProcessType()
  55. {
  56. // Setup
  57. $expected = EdmType::BINARY;
  58. // Test
  59. $actual = EdmType::processType($expected);
  60. // Assert
  61. $this->assertEquals($expected, $actual);
  62. }
  63. /**
  64. * @covers WindowsAzure\Table\Models\EdmType::unserializeQueryValue
  65. */
  66. public function testUnserializeQueryValueWithString()
  67. {
  68. // Setup
  69. $type = EdmType::STRING;
  70. $value = '1234';
  71. $expected = $value;
  72. // Test
  73. $actual = EdmType::unserializeQueryValue($type, $value);
  74. // Assert
  75. $this->assertEquals($expected, $actual);
  76. }
  77. /**
  78. * @covers WindowsAzure\Table\Models\EdmType::unserializeQueryValue
  79. */
  80. public function testUnserializeQueryValueWithBinary()
  81. {
  82. // Setup
  83. $type = EdmType::BINARY;
  84. $value = 'MTIzNDU=';
  85. $expected = base64_decode($value);
  86. // Test
  87. $actual = EdmType::unserializeQueryValue($type, $value);
  88. // Assert
  89. $this->assertEquals($expected, $actual);
  90. }
  91. /**
  92. * @covers WindowsAzure\Table\Models\EdmType::unserializeQueryValue
  93. */
  94. public function testUnserializeQueryValueWithDate()
  95. {
  96. // Setup
  97. $type = EdmType::DATETIME;
  98. $value = '2008-10-01T15:26:13Z';
  99. // Test
  100. $actual = EdmType::unserializeQueryValue($type, $value);
  101. // Assert
  102. $this->assertInstanceOf('\DateTime', $actual);
  103. }
  104. /**
  105. * @covers WindowsAzure\Table\Models\EdmType::unserializeQueryValue
  106. */
  107. public function testUnserializeQueryValueWithInt()
  108. {
  109. // Setup
  110. $type = EdmType::INT64;
  111. $value = '123';
  112. $expected = 123;
  113. // Test
  114. $actual = EdmType::unserializeQueryValue($type, $value);
  115. // Assert
  116. $this->assertEquals($expected, $actual);
  117. }
  118. /**
  119. * @covers WindowsAzure\Table\Models\EdmType::unserializeQueryValue
  120. */
  121. public function testUnserializeQueryValueWithBoolean()
  122. {
  123. // Setup
  124. $type = EdmType::BOOLEAN;
  125. $value = '1';
  126. $expected = true;
  127. // Test
  128. $actual = EdmType::unserializeQueryValue($type, $value);
  129. // Assert
  130. $this->assertEquals($expected, $actual);
  131. }
  132. /**
  133. * @covers WindowsAzure\Table\Models\EdmType::unserializeQueryValue
  134. */
  135. public function testUnserializeQueryValueWithInvalid()
  136. {
  137. // Assert
  138. $this->setExpectedException('\InvalidArgumentException');
  139. // Test
  140. EdmType::unserializeQueryValue('7amada', '1233');
  141. }
  142. /**
  143. * @covers WindowsAzure\Table\Models\EdmType::isValid
  144. */
  145. public function testIsValid()
  146. {
  147. // Setup
  148. $expected = true;
  149. // Test
  150. $actual = EdmType::isValid(EdmType::STRING);
  151. // Assert
  152. $this->assertEquals($expected, $actual);
  153. }
  154. /**
  155. * @covers WindowsAzure\Table\Models\EdmType::isValid
  156. */
  157. public function testIsValidWithInvalid()
  158. {
  159. // Setup
  160. $expected = false;
  161. // Test
  162. $actual = EdmType::isValid('hobba');
  163. // Assert
  164. $this->assertEquals($expected, $actual);
  165. }
  166. /**
  167. * @covers WindowsAzure\Table\Models\EdmType::validateEdmValue
  168. */
  169. public function testValidateEdmValueWithBinary()
  170. {
  171. // Setup
  172. $type = EdmType::BINARY;
  173. $value = 'MTIzNDU=';
  174. $expected = true;
  175. // Test
  176. $actual = EdmType::validateEdmValue($type, $value);
  177. // Assert
  178. $this->assertEquals($expected, $actual);
  179. }
  180. /**
  181. * @covers WindowsAzure\Table\Models\EdmType::validateEdmValue
  182. */
  183. public function testValidateEdmValueWithDate()
  184. {
  185. // Setup
  186. $type = EdmType::DATETIME;
  187. $value = new \DateTime();
  188. $expected = true;
  189. // Test
  190. $actual = EdmType::validateEdmValue($type, $value);
  191. // Assert
  192. $this->assertEquals($expected, $actual);
  193. }
  194. /**
  195. * @covers WindowsAzure\Table\Models\EdmType::validateEdmValue
  196. */
  197. public function testValidateEdmValueWithInt()
  198. {
  199. // Setup
  200. $type = EdmType::INT64;
  201. $value = '123';
  202. $expected = true;
  203. // Test
  204. $actual = EdmType::validateEdmValue($type, $value);
  205. // Assert
  206. $this->assertEquals($expected, $actual);
  207. }
  208. /**
  209. * @covers WindowsAzure\Table\Models\EdmType::validateEdmValue
  210. */
  211. public function testValidateEdmValueWithBoolean()
  212. {
  213. // Setup
  214. $type = EdmType::BOOLEAN;
  215. $value = false;
  216. $expected = true;
  217. // Test
  218. $actual = EdmType::validateEdmValue($type, $value);
  219. // Assert
  220. $this->assertEquals($expected, $actual);
  221. }
  222. /**
  223. * @covers WindowsAzure\Table\Models\EdmType::validateEdmValue
  224. */
  225. public function testValidateEdmValueWithInvalid()
  226. {
  227. // Assert
  228. $this->setExpectedException('\InvalidArgumentException');
  229. // Test
  230. EdmType::validateEdmValue('7amada', '1233');
  231. }
  232. /**
  233. * @covers WindowsAzure\Table\Models\EdmType::serializeValue
  234. */
  235. public function testSerializeValueWithBinary()
  236. {
  237. // Setup
  238. $type = EdmType::BINARY;
  239. $value = '010101010111';
  240. $expected = base64_encode($value);
  241. // Test
  242. $actual = EdmType::serializeValue($type, $value);
  243. // Assert
  244. $this->assertEquals($expected, $actual);
  245. }
  246. /**
  247. * @covers WindowsAzure\Table\Models\EdmType::serializeValue
  248. */
  249. public function testSerializeValueWithDate()
  250. {
  251. // Setup
  252. $type = EdmType::DATETIME;
  253. $value = new \DateTime();
  254. $expected = Utilities::convertToEdmDateTime($value);
  255. // Test
  256. $actual = EdmType::serializeValue($type, $value);
  257. // Assert
  258. $this->assertEquals($expected, $actual);
  259. }
  260. /**
  261. * @covers WindowsAzure\Table\Models\EdmType::serializeValue
  262. */
  263. public function testSerializeValueWithInt()
  264. {
  265. // Setup
  266. $type = EdmType::INT64;
  267. $value = 123;
  268. $expected = htmlspecialchars($value);
  269. // Test
  270. $actual = EdmType::serializeValue($type, $value);
  271. // Assert
  272. $this->assertEquals($expected, $actual);
  273. }
  274. /**
  275. * @covers WindowsAzure\Table\Models\EdmType::serializeValue
  276. */
  277. public function testSerializeValueWithBoolean()
  278. {
  279. // Setup
  280. $type = EdmType::BOOLEAN;
  281. $value = true;
  282. $expected = ($value == true ? '1' : '0');
  283. // Test
  284. $actual = EdmType::serializeValue($type, $value);
  285. // Assert
  286. $this->assertEquals($expected, $actual);
  287. }
  288. /**
  289. * @covers WindowsAzure\Table\Models\EdmType::serializeValue
  290. */
  291. public function testSerializeValueWithInvalid()
  292. {
  293. // Assert
  294. $this->setExpectedException('\InvalidArgumentException');
  295. // Test
  296. EdmType::serializeValue('7amada', '1233');
  297. }
  298. }