/Frontend/barca/vendor/microsoft/windowsazure/tests/unit/WindowsAzure/MediaServices/Models/ContentPropertiesTest.php

https://bitbucket.org/egyptstudio/studio-code · PHP · 182 lines · 92 code · 25 blank · 65 comment · 0 complexity · 3e3cd22d9aa4c1cda5d561a80d332a4d 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\MediaServices\Models
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 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\MediaServices\Models;
  24. use WindowsAzure\MediaServices\Models\ContentProperties;
  25. use WindowsAzure\Common\Internal\Resources;
  26. use WindowsAzure\MediaServices\Models\Asset;
  27. /**
  28. * Unit tests for class ContentProperties
  29. *
  30. * @category Microsoft
  31. * @package Tests\Unit\WindowsAzure\Common\Internal\Atom
  32. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  33. * @copyright Microsoft Corporation
  34. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  35. * @version Release: 0.4.0_2014-01
  36. * @link https://github.com/WindowsAzure/azure-sdk-for-php
  37. */
  38. class ContentPropertiesTest extends \PHPUnit_Framework_TestCase
  39. {
  40. /**
  41. * @covers WindowsAzure\MediaServices\Models\ContentProperties::__construct
  42. */
  43. public function test__construct(){
  44. // Setup
  45. // Test
  46. $prop = new ContentProperties();
  47. // Assert
  48. $this->assertNotNull($prop);
  49. }
  50. /**
  51. * @covers WindowsAzure\MediaServices\Models\ContentProperties::fromXml
  52. * @covers WindowsAzure\MediaServices\Models\ContentProperties::_fromXmlToArray
  53. * @covers WindowsAzure\MediaServices\Models\ContentProperties::getProperties
  54. */
  55. public function testFromXml(){
  56. // Setup
  57. $testString = 'testString';
  58. $nameKey = 'name';
  59. $objectKey = 'object';
  60. $xmlString = '<properties xmlns="' . Resources::DSM_XML_NAMESPACE . '" xmlns:d="' . Resources::DS_XML_NAMESPACE . '">
  61. <d:' . $nameKey . '>' . $testString . '</d:' . $nameKey . '>
  62. <d:' . $objectKey . '>
  63. <d:element>
  64. <d:' . $nameKey . '>' . $testString . '</d:' . $nameKey . '>
  65. </d:element>
  66. </d:' . $objectKey . '>
  67. </properties>';
  68. $xml = simplexml_load_string($xmlString);
  69. $prop = new ContentProperties();
  70. // Test
  71. $prop->fromXml($xml);
  72. $result = $prop->getProperties();
  73. // Assert
  74. $this->assertEquals(2, count($result));
  75. $this->assertEquals($testString, $result[$nameKey]);
  76. $this->assertEquals(1, count($result[$objectKey]));
  77. $this->assertEquals(1, count($result[$objectKey][0]));
  78. $this->assertEquals($testString, $result[$objectKey][0][$nameKey]);
  79. }
  80. /**
  81. * @covers WindowsAzure\MediaServices\Models\ContentProperties::setPropertiesFromObject
  82. */
  83. public function testSetPropertiesFromObject(){
  84. // Setup
  85. $name = 'NameName';
  86. $nameKey = 'Name';
  87. $createdKey = 'Created';
  88. $optionsKey = 'Options';
  89. $option = Asset::OPTIONS_STORAGE_ENCRYPTED;
  90. $assetArray= array(
  91. $optionsKey => $option,
  92. $createdKey => '2013-11-21',
  93. $nameKey => $name
  94. );
  95. $created = new \Datetime($assetArray[$createdKey]);
  96. $asset = Asset::createFromOptions($assetArray);
  97. $prop = new ContentProperties();
  98. // Test
  99. $prop->setPropertiesFromObject($asset);
  100. $result = $prop->getProperties();
  101. $createdFromResult = new \Datetime($result[$createdKey]);
  102. // Assert
  103. $this->assertEquals(3, count($result));
  104. $this->assertEquals($name, $result[$nameKey]);
  105. $this->assertEquals($option, $result[$optionsKey]);
  106. $this->assertEquals($created->getTimestamp(), $createdFromResult->getTimestamp());
  107. }
  108. /**
  109. * @covers WindowsAzure\MediaServices\Models\ContentProperties::writeXml
  110. */
  111. public function testWriteXml(){
  112. // Setup
  113. $name = 'Name';
  114. $option = Asset::OPTIONS_NONE;
  115. $asset = new Asset($option);
  116. $asset->setName($name);
  117. $asset->setOptions(Asset::OPTIONS_STORAGE_ENCRYPTED);
  118. $prop = new ContentProperties();
  119. $prop->setPropertiesFromObject($asset);
  120. $properties = $prop->getProperties();
  121. // Test
  122. $xmlWriter = new \XMLWriter();
  123. $xmlWriter->openMemory();
  124. $prop->writeXml($xmlWriter);
  125. $actual = $xmlWriter->outputMemory();
  126. $xml = simplexml_load_string($actual);
  127. $childrenCount = 0;
  128. foreach ($xml->children(Resources::DS_XML_NAMESPACE) as $child) {
  129. // Assert
  130. $this->assertContains((string)$child, $properties);
  131. $childrenCount++;
  132. }
  133. // Assert
  134. $this->assertEquals(2, $childrenCount);
  135. }
  136. /**
  137. * @covers WindowsAzure\MediaServices\Models\ContentProperties::writeInnerXml
  138. */
  139. public function testWriteInnerXml(){
  140. // Setup
  141. $name = 'Name';
  142. $option = Asset::OPTIONS_NONE;
  143. $asset = new Asset($option);
  144. $asset->setName($name);
  145. $asset->setOptions(Asset::OPTIONS_STORAGE_ENCRYPTED);
  146. $prop = new ContentProperties();
  147. $prop->setPropertiesFromObject($asset);
  148. // Test
  149. $xmlWriter = new \XMLWriter();
  150. $xmlWriter->openMemory();
  151. $prop->writeInnerXml($xmlWriter);
  152. $result = $xmlWriter->outputMemory();
  153. // Assert
  154. $this->assertContains(':Options', $result);
  155. $this->assertContains(':Name', $result);
  156. }
  157. }