/codes-php/phpjakarta/tests/unit/WindowsAzure/ServiceRuntime/Internal/RuntimeVersionManagerTest.php

http://bukuphpjs.codeplex.com · PHP · 139 lines · 70 code · 21 blank · 48 comment · 0 complexity · 1cbc6c8a9b72c1c1c91c9a87ba108ed5 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\ServiceRuntime\Internal
  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\ServiceRuntime\Internal;
  24. use Tests\Framework\TestResources;
  25. use WindowsAzure\Common\Internal\Utilities;
  26. use WindowsAzure\ServiceRuntime\Internal\FileInputChannel;
  27. use WindowsAzure\ServiceRuntime\Internal\RuntimeVersionProtocolClient;
  28. use WindowsAzure\ServiceRuntime\Internal\RuntimeVersionManager;
  29. use WindowsAzure\Common\Internal\Resources;
  30. /**
  31. * Unit tests for class RuntimeVersionManager.
  32. *
  33. * @category Microsoft
  34. * @package Tests\Unit\WindowsAzure\ServiceRuntime\Internal
  35. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  36. * @copyright 2012 Microsoft Corporation
  37. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  38. * @version Release: @package_version@
  39. * @link https://github.com/windowsazure/azure-sdk-for-php
  40. */
  41. class RuntimeVersionManagerTest extends \PHPUnit_Framework_TestCase
  42. {
  43. /**
  44. * @covers WindowsAzure\ServiceRuntime\Internal\RuntimeVersionManager::__construct
  45. */
  46. public function testConstruct()
  47. {
  48. // Setup
  49. $runtimeVersionManager = new RuntimeVersionManager(null);
  50. // Test
  51. $this->assertInstanceOf(
  52. 'WindowsAzure\ServiceRuntime\Internal\RuntimeVersionManager',
  53. $runtimeVersionManager);
  54. }
  55. /**
  56. * @covers WindowsAzure\ServiceRuntime\Internal\RuntimeVersionManager::getRuntimeClient
  57. */
  58. public function testGetRuntimeClientInvalid()
  59. {
  60. // Setup
  61. $rootDirectory = 'root';
  62. \vfsStreamWrapper::register();
  63. \vfsStreamWrapper::setRoot(new \vfsStreamDirectory($rootDirectory));
  64. // Fake version will force the exception
  65. $fileName = 'versionendpoint';
  66. $fileContent = '<?xml version="1.0" encoding="utf-8"?>' .
  67. '<RuntimeServerDiscovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' .
  68. 'xmlns:xsd="http://www.w3.org/2001/XMLSchema">' .
  69. '<RuntimeServerEndpoints>' .
  70. '<RuntimeServerEndpoint version="2099-03-08" path="myPath1" />' .
  71. '</RuntimeServerEndpoints>' .
  72. '</RuntimeServerDiscovery>';
  73. $file = \vfsStream::newFile($fileName);
  74. $file->setContent($fileContent);
  75. \vfsStreamWrapper::getRoot()->addChild($file);
  76. $runtimeVersionProtocolClient =
  77. new RuntimeVersionProtocolClient(new FileInputChannel());
  78. $runtimeVersionManager = new RuntimeVersionManager(
  79. $runtimeVersionProtocolClient
  80. );
  81. // Test
  82. $this->setExpectedException(get_class(new \RuntimeException()));
  83. $runtimeVersionManager->getRuntimeClient(
  84. \vfsStream::url($rootDirectory . '/' . $fileName)
  85. );
  86. }
  87. /**
  88. * @covers WindowsAzure\ServiceRuntime\Internal\RuntimeVersionManager::getRuntimeClient
  89. */
  90. public function testGetRuntimeClient()
  91. {
  92. // Setup
  93. $rootDirectory = 'root';
  94. \vfsStreamWrapper::register();
  95. \vfsStreamWrapper::setRoot(new \vfsStreamDirectory($rootDirectory));
  96. $fileName = 'versionendpoint';
  97. $fileContent = '<?xml version="1.0" encoding="utf-8"?>' .
  98. '<RuntimeServerDiscovery xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ' .
  99. 'xmlns:xsd="http://www.w3.org/2001/XMLSchema">' .
  100. '<RuntimeServerEndpoints>' .
  101. '<RuntimeServerEndpoint version="2011-03-08" path="myPath1" />' .
  102. '</RuntimeServerEndpoints>' .
  103. '</RuntimeServerDiscovery>';
  104. $file = \vfsStream::newFile($fileName);
  105. $file->setContent($fileContent);
  106. \vfsStreamWrapper::getRoot()->addChild($file);
  107. $runtimeVersionProtocolClient =
  108. new RuntimeVersionProtocolClient(new FileInputChannel());
  109. $runtimeVersionManager = new RuntimeVersionManager(
  110. $runtimeVersionProtocolClient
  111. );
  112. $runtimeClient = $runtimeVersionManager->getRuntimeClient(
  113. \vfsStream::url($rootDirectory . '/' . $fileName)
  114. );
  115. // Test
  116. $this->assertNotEquals(null, $runtimeClient);
  117. }
  118. }