Current Path: > > opt > cloudlinux > alt-php70 > 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:55:58. | |
ApiVersionTests.php | File | 221 bytes | May 12 2025 16:55:58. | |
AttributesToStringTests.php | File | 7702 bytes | May 12 2025 16:55:58. | |
Bug18343Tests.php | File | 1742 bytes | May 12 2025 16:55:58. | |
Bug21177Tests.php | File | 1054 bytes | May 12 2025 16:55:58. | |
Bug21184Tests.php | File | 450 bytes | May 12 2025 16:55:58. | |
Bug4950Tests.php | File | 729 bytes | May 12 2025 16:55:58. | |
Bug5392Tests.php | File | 767 bytes | May 12 2025 16:55:58. | |
CollapseEmptyTagsTests.php | File | 4353 bytes | May 12 2025 16:55:58. | |
CreateCDataSectionTests.php | File | 362 bytes | May 12 2025 16:55:58. | |
CreateCommentTests.php | File | 340 bytes | May 12 2025 16:55:58. | |
CreateEndElementTests.php | File | 613 bytes | May 12 2025 16:55:58. | |
CreateStartElementTests.php | File | 5410 bytes | May 12 2025 16:55:58. | |
CreateTagFromArrayTests.php | File | 13492 bytes | May 12 2025 16:55:58. | |
CreateTagTests.php | File | 7978 bytes | May 12 2025 16:55:58. | |
GetDocTypeDeclarationTests.php | File | 1779 bytes | May 12 2025 16:55:58. | |
GetXmlDeclarationTests.php | File | 1164 bytes | May 12 2025 16:55:58. | |
IsValidNameTests.php | File | 1983 bytes | May 12 2025 16:55:58. | |
RaiseErrorTests.php | File | 448 bytes | May 12 2025 16:55:58. | |
ReplaceEntitiesTests.php | File | 4321 bytes | May 12 2025 16:55:58. | |
ReverseEntitiesTests.php | File | 4310 bytes | May 12 2025 16:55:58. | |
SplitQualifiedNameTests.php | File | 839 bytes | May 12 2025 16:55:58. |
<?php class IsValidNameTests extends AbstractUnitTests { /** * @covers XML_Util::isValidName() */ public function testIsValidNameForTagNameThatIsValid() { $tagName = "alpha-x_y_z.123"; $result = XML_Util::isValidName($tagName); $this->assertTrue($result); } /** * @covers XML_Util::isValidName() */ public function testIsValidNameForTagNameWithInvalidCharacter() { $tagName = "invalidTag?"; $result = XML_Util::isValidName($tagName); $this->assertInstanceOf('PEAR_Error', $result); $expectedError = "XML names may only contain alphanumeric chars, period, hyphen, colon and underscores"; $this->assertEquals($expectedError, $result->getMessage()); } /** * @covers XML_Util::isValidName() */ public function testIsValidNameForTagNameWithInvalidStartingCharacter() { $tagName = "1234five"; $result = XML_Util::isValidName($tagName); $this->assertInstanceOf('PEAR_Error', $result); $expectedError = "XML names may only start with letter or underscore"; $this->assertEquals($expectedError, $result->getMessage()); } /** * @covers XML_Util::isValidName() */ public function testIsValidNameForInt() { $tagName = 1; $result = XML_Util::isValidName($tagName); $this->assertInstanceOf('PEAR_Error', $result); $expectedError = "XML names may only start with letter or underscore"; $this->assertEquals($expectedError, $result->getMessage()); } /** * @covers XML_Util::isValidName() */ public function testIsValidNameForEmptyString() { $tagName = ''; $result = XML_Util::isValidName($tagName); $this->assertInstanceOf('PEAR_Error', $result); $expectedError = "XML names may only start with letter or underscore"; $this->assertEquals($expectedError, $result->getMessage()); } }
SILENT KILLER Tool