/codes-php/phpjakarta/tests/unit/WindowsAzure/Common/Internal/Http/UrlTest.php

http://bukuphpjs.codeplex.com · PHP · 335 lines · 149 code · 52 blank · 134 comment · 0 complexity · 8d0e36d2a428ed0aa01506b9118429aa 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\Http
  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\Http;
  24. use WindowsAzure\Common\Internal\Http\Url;
  25. use Tests\Framework\TestResources;
  26. use WindowsAzure\Common\Internal\Resources;
  27. use WindowsAzure\Common\Internal\InvalidArgumentTypeException;
  28. /**
  29. * Unit tests for class Url
  30. *
  31. * @category Microsoft
  32. * @package Tests\Unit\WindowsAzure\Common\Internal\Http
  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 UrlTest extends \PHPUnit_Framework_TestCase
  40. {
  41. /**
  42. * @covers WindowsAzure\Common\Internal\Http\Url::__construct
  43. * @covers WindowsAzure\Common\Internal\Http\Url::_setPathIfEmpty
  44. */
  45. public function test__construct()
  46. {
  47. // Setup
  48. $urlString = TestResources::VALID_URL;
  49. // Test
  50. $url = new Url($urlString);
  51. // Assert
  52. $this->assertEquals($urlString . '/', $url->getUrl());
  53. }
  54. /**
  55. * @covers WindowsAzure\Common\Internal\Http\Url::__construct
  56. */
  57. public function test__constructEmptyUrlFail()
  58. {
  59. // Setup
  60. $urlString = '';
  61. $this->setExpectedException(get_class(new \InvalidArgumentException(Resources::INVALID_URL_MSG)));
  62. // Test
  63. new Url($urlString);
  64. }
  65. /**
  66. * @covers WindowsAzure\Common\Internal\Http\Url::__construct
  67. */
  68. public function test__constructNonStringUrlFail()
  69. {
  70. // Setup
  71. $urlString = 1;
  72. $this->setExpectedException(get_class(new \InvalidArgumentException(Resources::INVALID_URL_MSG)));
  73. // Test
  74. new Url($urlString);
  75. }
  76. /**
  77. * @covers WindowsAzure\Common\Internal\Http\Url::__construct
  78. */
  79. public function test__constructInvalidUrlFail()
  80. {
  81. // Setup
  82. $urlString = 'ww.invalidurl,com';
  83. $this->setExpectedException(get_class(new \InvalidArgumentException(Resources::INVALID_URL_MSG)));
  84. // Test
  85. new Url($urlString);
  86. }
  87. /**
  88. * @covers WindowsAzure\Common\Internal\Http\Url::__construct
  89. */
  90. public function test__constructWithUrlPath()
  91. {
  92. // Setup
  93. $urlString = TestResources::VALID_URL . '/';
  94. // Test
  95. $url = new Url($urlString);
  96. $this->assertEquals($urlString, $url->getUrl());
  97. }
  98. /**
  99. * @covers WindowsAzure\Common\Internal\Http\Url::getQuery
  100. */
  101. public function testGetQuery()
  102. {
  103. // Setup
  104. $urlString = TestResources::VALID_URL;
  105. $expectedQueryString = TestResources::HEADER1 . '=' . TestResources::HEADER1_VALUE;
  106. $url = new Url($urlString);
  107. $url->setQueryVariable(TestResources::HEADER1, TestResources::HEADER1_VALUE);
  108. // Test
  109. $actualQueryString = $url->getQuery();
  110. $this->assertEquals($expectedQueryString, $actualQueryString);
  111. }
  112. /**
  113. * @covers WindowsAzure\Common\Internal\Http\Url::getQueryVariables
  114. */
  115. public function testGetQueryVariables()
  116. {
  117. // Setup
  118. $urlString = TestResources::VALID_URL;
  119. $expectedQueryVariables = array(TestResources::HEADER1 => TestResources::HEADER1_VALUE);
  120. $url = new Url($urlString);
  121. $url->setQueryVariable(TestResources::HEADER1, TestResources::HEADER1_VALUE);
  122. // Test
  123. $actualQueryVariables = $url->getQueryVariables();
  124. $this->assertEquals($expectedQueryVariables, $actualQueryVariables);
  125. }
  126. /**
  127. * @covers WindowsAzure\Common\Internal\Http\Url::setQueryVariable
  128. */
  129. public function testSetQueryVariable()
  130. {
  131. // Setup
  132. $urlString = TestResources::VALID_URL;
  133. $expectedQueryVariables = array(TestResources::HEADER1 => TestResources::HEADER1_VALUE);
  134. $url = new Url($urlString);
  135. // Test
  136. $url->setQueryVariable(TestResources::HEADER1, TestResources::HEADER1_VALUE);
  137. // Assert
  138. $this->assertEquals($expectedQueryVariables, $url->getQueryVariables());
  139. }
  140. /**
  141. * @covers WindowsAzure\Common\Internal\Http\Url::setQueryVariable
  142. */
  143. public function testSetQueryVariableInvalidKeyFail()
  144. {
  145. // Setup
  146. $urlString = TestResources::VALID_URL;
  147. $invalidKey = new \DateTime();
  148. $value = 'ValidValue';
  149. $url = new Url($urlString);
  150. $this->setExpectedException(get_class(new InvalidArgumentTypeException(gettype(''))));
  151. // Test
  152. $url->setQueryVariable($invalidKey, $value);
  153. }
  154. /**
  155. * @covers WindowsAzure\Common\Internal\Http\Url::setQueryVariable
  156. */
  157. public function testSetQueryVariableEmptyKeyFail()
  158. {
  159. // Setup
  160. $urlString = TestResources::VALID_URL;
  161. $invalidKey = new \DateTime();
  162. $value = 'ValidValue';
  163. $url = new Url($urlString);
  164. $this->setExpectedException(get_class(new \InvalidArgumentException(Resources::NULL_OR_EMPTY_MSG)));
  165. // Test
  166. $url->setQueryVariable($invalidKey, $value);
  167. }
  168. /**
  169. * @covers WindowsAzure\Common\Internal\Http\Url::setQueryVariable
  170. */
  171. public function testSetQueryVariableInvalidValueFail()
  172. {
  173. // Setup
  174. $urlString = TestResources::VALID_URL;
  175. $key = 'ValidKey';
  176. $invalidValue = new \DateTime();
  177. $url = new Url($urlString);
  178. $this->setExpectedException(get_class(new InvalidArgumentTypeException(gettype(''))));
  179. // Test
  180. $url->setQueryVariable($key, $invalidValue);
  181. }
  182. /**
  183. * @covers WindowsAzure\Common\Internal\Http\Url::setQueryVariable
  184. */
  185. public function testSetQueryVariableSetEmptyValue()
  186. {
  187. // Setup
  188. $urlString = TestResources::VALID_URL;
  189. $key = 'validkey';
  190. $url = new Url($urlString);
  191. // Test
  192. $url->setQueryVariable($key, Resources::EMPTY_STRING, true);
  193. // Assert
  194. $queryVariables = $url->getQueryVariables();
  195. $this->assertEquals(Resources::EMPTY_STRING, $queryVariables[$key]);
  196. }
  197. /**
  198. * @covers WindowsAzure\Common\Internal\Http\Url::getUrl
  199. * @covers WindowsAzure\Common\Internal\Http\Url::_setPathIfEmpty
  200. */
  201. public function testGetUrl()
  202. {
  203. // Setup
  204. $urlString = TestResources::VALID_URL;
  205. $url = new Url($urlString);
  206. // Test
  207. $actualUrl = $url->getUrl();
  208. // Assert
  209. $this->assertEquals($urlString . '/', $actualUrl);
  210. }
  211. /**
  212. * @covers WindowsAzure\Common\Internal\Http\Url::setUrlPath
  213. */
  214. public function testSetUrlPath()
  215. {
  216. // Setup
  217. $urlString = TestResources::VALID_URL;
  218. $urlPath = '/myqueue';
  219. $url = new Url($urlString);
  220. // Test
  221. $url->setUrlPath($urlPath);
  222. // Assert
  223. $this->assertEquals($urlPath, parse_url($url->getUrl(), PHP_URL_PATH));
  224. }
  225. /**
  226. * @covers WindowsAzure\Common\Internal\Http\Url::appendUrlPath
  227. */
  228. public function testAppendUrlPath()
  229. {
  230. // Setup
  231. $urlString = TestResources::VALID_URL;
  232. $expectedUrlPath = '/myqueue';
  233. $urlPath = 'myqueue';
  234. $url = new Url($urlString);
  235. // Test
  236. $url->appendUrlPath($urlPath);
  237. // Assert
  238. $this->assertEquals($expectedUrlPath, parse_url($url->getUrl(), PHP_URL_PATH));
  239. }
  240. /**
  241. * @covers WindowsAzure\Common\Internal\Http\Url::__toString
  242. * @covers WindowsAzure\Common\Internal\Http\Url::_setPathIfEmpty
  243. */
  244. public function test__toString()
  245. {
  246. // Setup
  247. $urlString = TestResources::VALID_URL;
  248. $url = new Url($urlString);
  249. // Test
  250. $actualUrl = $url->__toString();
  251. // Assert
  252. $this->assertEquals($urlString . '/', $actualUrl);
  253. }
  254. /**
  255. * @covers WindowsAzure\Common\Internal\Http\Url::__clone
  256. */
  257. public function test__clone()
  258. {
  259. // Setup
  260. $urlString = TestResources::VALID_URL;
  261. $url = new Url($urlString);
  262. // Test
  263. $actualUrl = clone $url;
  264. $url->setQueryVariable('key', 'value');
  265. // Assert
  266. $this->assertNotEquals($url->getQueryVariables(), $actualUrl->getQueryVariables());
  267. }
  268. /**
  269. * @covers WindowsAzure\Common\Internal\Http\Url::setQueryVariables
  270. */
  271. public function testSetQueryVariables()
  272. {
  273. // Setup
  274. $urlString = TestResources::VALID_URL;
  275. $expectedQueryVariables = array(TestResources::HEADER1 => TestResources::HEADER1_VALUE,
  276. TestResources::HEADER2 => TestResources::HEADER2_VALUE);
  277. $url = new Url($urlString);
  278. // Test
  279. $url->setQueryVariables($expectedQueryVariables);
  280. // Assert
  281. $this->assertEquals($expectedQueryVariables, $url->getQueryVariables());
  282. }
  283. }