/codes-php/phpjakarta/tests/unit/WindowsAzure/Common/Internal/Authentication/StorageAuthSchemeTest.php

http://bukuphpjs.codeplex.com · PHP · 127 lines · 64 code · 17 blank · 46 comment · 0 complexity · 56f2b08e3582ce93862016d820bd7fcb 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\Authentication
  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\Authentication;
  24. use WindowsAzure\Common\Internal\Authentication\StorageAuthScheme;
  25. use Tests\Unit\Utilities;
  26. use Tests\Mock\WindowsAzure\Common\Internal\Authentication\StorageAuthSchemeMock;
  27. use Tests\Framework\TestResources;
  28. use WindowsAzure\Common\Internal\Resources;
  29. /**
  30. * Unit tests for StorageAuthScheme class.
  31. *
  32. * @package Tests\Unit\WindowsAzure\Common\Internal\Authentication
  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 StorageAuthSchemeTest extends \PHPUnit_Framework_TestCase
  40. {
  41. /**
  42. * @covers WindowsAzure\Common\Internal\Authentication\StorageAuthScheme::__construct
  43. */
  44. public function test__construct()
  45. {
  46. $mock = new StorageAuthSchemeMock(TestResources::ACCOUNT_NAME, TestResources::KEY4);
  47. $this->assertEquals(TestResources::ACCOUNT_NAME, $mock->getAccountName());
  48. $this->assertEquals(TestResources::KEY4, $mock->getAccountKey());
  49. }
  50. /**
  51. * @covers WindowsAzure\Common\Internal\Authentication\StorageAuthScheme::computeCanonicalizedHeaders
  52. */
  53. public function testComputeCanonicalizedHeadersMock()
  54. {
  55. $date = TestResources::DATE1;
  56. $headers = array();
  57. $headers[Resources::X_MS_DATE] = $date;
  58. $headers[Resources::X_MS_VERSION] = Resources::STORAGE_API_LATEST_VERSION;
  59. $expected = array();
  60. $expected[] = Resources::X_MS_DATE . ':' . $date;
  61. $expected[] = Resources::X_MS_VERSION . ':' . Resources::STORAGE_API_LATEST_VERSION;
  62. $mock = new StorageAuthSchemeMock(TestResources::ACCOUNT_NAME, TestResources::KEY4);
  63. $actual = $mock->computeCanonicalizedHeadersMock($headers);
  64. $this->assertEquals($expected, $actual);
  65. }
  66. /**
  67. * @covers WindowsAzure\Common\Internal\Authentication\StorageAuthScheme::computeCanonicalizedResource
  68. */
  69. public function testComputeCanonicalizedResourceMockSimple()
  70. {
  71. $queryVariables = array();
  72. $queryVariables['COMP'] = 'list';
  73. $accountName = TestResources::ACCOUNT_NAME;
  74. $url = TestResources::URI1;
  75. $expected = '/' . $accountName . parse_url($url, PHP_URL_PATH) . "\n" . 'comp:list';
  76. $mock = new StorageAuthSchemeMock($accountName, TestResources::KEY4);
  77. $actual = $mock->computeCanonicalizedResourceMock($url, $queryVariables);
  78. $this->assertEquals($expected, $actual);
  79. }
  80. /**
  81. * @covers WindowsAzure\Common\Internal\Authentication\StorageAuthScheme::computeCanonicalizedResource
  82. */
  83. public function testComputeCanonicalizedResourceMockMultipleValues()
  84. {
  85. $queryVariables = array();
  86. $queryVariables['COMP'] = 'list';
  87. $queryVariables[Resources::QP_INCLUDE] = 'snapshots,metadata,uncommittedblobs';
  88. $expectedQueryPart = "comp:list\ninclude:metadata,snapshots,uncommittedblobs";
  89. $accountName = TestResources::ACCOUNT_NAME;
  90. $url = TestResources::URI1;
  91. $expected = '/' . $accountName . parse_url($url, PHP_URL_PATH) . "\n" . $expectedQueryPart;
  92. $mock = new StorageAuthSchemeMock($accountName, TestResources::KEY4);
  93. $actual = $mock->computeCanonicalizedResourceMock($url, $queryVariables);
  94. $this->assertEquals($expected, $actual);
  95. }
  96. /**
  97. * @covers WindowsAzure\Common\Internal\Authentication\StorageAuthScheme::computeCanonicalizedResourceForTable
  98. */
  99. public function testComputeCanonicalizedResourceForTableMock()
  100. {
  101. $queryVariables = array();
  102. $queryVariables['COMP'] = 'list';
  103. $accountName = TestResources::ACCOUNT_NAME;
  104. $url = TestResources::URI1;
  105. $expected = '/' . $accountName . parse_url($url, PHP_URL_PATH) . '?comp=list';
  106. $mock = new StorageAuthSchemeMock($accountName, TestResources::KEY4);
  107. $actual = $mock->computeCanonicalizedResourceForTableMock($url, $queryVariables);
  108. $this->assertEquals($expected, $actual);
  109. }
  110. }