Current Path: > > opt > cloudlinux > > alt-php54 > root > usr > share > pear > test > XML_Util > tests
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
AbstractUnitTests.php | File | 424 bytes | May 12 2025 16:32:11. | |
ApiVersionTests.php | File | 221 bytes | May 12 2025 16:32:11. | |
AttributesToStringTests.php | File | 7702 bytes | May 12 2025 16:32:11. | |
Bug18343Tests.php | File | 1742 bytes | May 12 2025 16:32:11. | |
Bug21177Tests.php | File | 1054 bytes | May 12 2025 16:32:11. | |
Bug21184Tests.php | File | 450 bytes | May 12 2025 16:32:11. | |
Bug4950Tests.php | File | 729 bytes | May 12 2025 16:32:11. | |
Bug5392Tests.php | File | 767 bytes | May 12 2025 16:32:11. | |
CollapseEmptyTagsTests.php | File | 4353 bytes | May 12 2025 16:32:11. | |
CreateCDataSectionTests.php | File | 362 bytes | May 12 2025 16:32:11. | |
CreateCommentTests.php | File | 340 bytes | May 12 2025 16:32:11. | |
CreateEndElementTests.php | File | 613 bytes | May 12 2025 16:32:11. | |
CreateStartElementTests.php | File | 5410 bytes | May 12 2025 16:32:11. | |
CreateTagFromArrayTests.php | File | 13492 bytes | May 12 2025 16:32:11. | |
CreateTagTests.php | File | 7978 bytes | May 12 2025 16:32:11. | |
GetDocTypeDeclarationTests.php | File | 1779 bytes | May 12 2025 16:32:11. | |
GetXmlDeclarationTests.php | File | 1164 bytes | May 12 2025 16:32:11. | |
IsValidNameTests.php | File | 1983 bytes | May 12 2025 16:32:11. | |
RaiseErrorTests.php | File | 448 bytes | May 12 2025 16:32:11. | |
ReplaceEntitiesTests.php | File | 4321 bytes | May 12 2025 16:32:11. | |
ReverseEntitiesTests.php | File | 4310 bytes | May 12 2025 16:32:11. | |
SplitQualifiedNameTests.php | File | 839 bytes | May 12 2025 16:32:11. |
<?php class ReverseEntitiesTests extends AbstractUnitTests { protected function getSimpleData() { return 'This string contains < & >.'; } protected function getUtf8Data() { return 'This data contains special chars like <, >, & and " as well as ä, ö, ß, à and ê'; } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleData() { $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData())); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithInvalidOptionReturnsOriginalData() { $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), 'INVALID_OPTION')); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithEntitiesXml() { $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), XML_UTIL_ENTITIES_XML)); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithEntitiesXmlAndEncoding() { $encoding = "UTF-8"; $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), XML_UTIL_ENTITIES_XML), $encoding); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForUtf8DataWithEntitiesXmlAndEncoding() { $encoding = "UTF-8"; $expected = "This data contains special chars like <, >, & and \" as well as ä, ö, ß, à and ê"; $this->assertEquals($expected, XML_Util::reverseEntities($this->getUtf8Data(), XML_UTIL_ENTITIES_XML), $encoding); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithEntitiesXmlRequired() { $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), XML_UTIL_ENTITIES_XML_REQUIRED)); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithEntitiesXmlRequiredAndEncoding() { $encoding = "UTF-8"; $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), XML_UTIL_ENTITIES_XML_REQUIRED, $encoding)); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForUtf8DataWithEntitiesXmlRequiredAndEncoding() { $encoding = "UTF-8"; $expected = "This data contains special chars like <, >, & and \" as well as ä, ö, ß, à and ê"; $this->assertEquals($expected, XML_Util::reverseEntities($this->getUtf8Data(), XML_UTIL_ENTITIES_XML_REQUIRED, $encoding)); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithEntitiesHtml() { $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), XML_UTIL_ENTITIES_HTML)); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForSimpleDataWithEntitiesHtmlAndEncoding() { $encoding = "UTF-8"; $expected = "This string contains < & >."; $this->assertEquals($expected, XML_Util::reverseEntities($this->getSimpleData(), XML_UTIL_ENTITIES_HTML, $encoding)); } /** * @covers XML_Util::reverseEntities() */ public function testReverseEntitiesForUtf8DataWithEntitiesHtmlAndEncoding() { $encoding = "UTF-8"; $expected = "This data contains special chars like <, >, & and \" as well as ä, ö, ß, à and ê"; $this->assertEquals($expected, XML_Util::reverseEntities($this->getUtf8Data(), XML_UTIL_ENTITIES_HTML, $encoding)); } }
SILENT KILLER Tool