|
Apache/2.4.41 (Ubuntu) Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) server ip : 62.171.164.128 | your ip : 127.0.0.1 safemode OFF > / home / a / home / dev2.destoffenstraat.com / vendor / phpunit / phpunit / tests / unit / Util / |
Filename | /home/a/home/dev2.destoffenstraat.com/vendor/phpunit/phpunit/tests/unit/Util/XmlTest.php |
Size | 3.2 kb |
Permission | rw-r--r-- |
Owner | root : root |
Create time | 21-Aug-2025 12:26 |
Last modified | 01-Feb-2019 06:22 |
Last accessed | 11-Aug-2025 04:26 |
Actions | edit | rename | delete | download (gzip) |
View | text | code | image |
<?php
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Util;
use PHPUnit\Framework\Exception;
use PHPUnit\Framework\TestCase;
class XmlTest extends TestCase
{
/**
* @dataProvider charProvider
*/
public function testPrepareString($char)
{
$e = null;
$escapedString = Xml::prepareString($char);
$xml = "<?xml version='1.0' encoding='UTF-8' ?><tag>$escapedString</tag>";
$dom = new \DOMDocument('1.0', 'UTF-8');
try {
$dom->loadXML($xml);
} catch (Exception $e) {
}
$this->assertNull($e, \sprintf(
'PHPUnit_Util_XML::prepareString("\x%02x") should not crash DomDocument',
\ord($char)
));
}
public function charProvider()
{
$data = [];
for ($i = 0; $i < 256; $i++) {
$data[] = [\chr($i)];
}
return $data;
}
public function testLoadEmptyString()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('Could not load XML from empty string');
Xml::load('');
}
public function testLoadArray()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('Could not load XML from array');
Xml::load([1, 2, 3]);
}
public function testLoadBoolean()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('Could not load XML from boolean');
Xml::load(false);
}
public function testNestedXmlToVariable()
{
$xml = '<array><element key="a"><array><element key="b"><string>foo</string></element></array></element><element key="c"><string>bar</string></element></array>';
$dom = new \DOMDocument;
$dom->loadXML($xml);
$expected = [
'a' => [
'b' => 'foo',
],
'c' => 'bar',
];
$actual = Xml::xmlToVariable($dom->documentElement);
$this->assertSame($expected, $actual);
}
public function testXmlToVariableCanHandleMultipleOfTheSameArgumentType()
{
$xml = '<object class="SampleClass"><arguments><string>a</string><string>b</string><string>c</string></arguments></object>';
$dom = new \DOMDocument();
$dom->loadXML($xml);
$expected = ['a' => 'a', 'b' => 'b', 'c' => 'c'];
$actual = Xml::xmlToVariable($dom->documentElement);
$this->assertSame($expected, (array) $actual);
}
public function testXmlToVariableCanConstructObjectsWithConstructorArgumentsRecursively()
{
$xml = '<object class="Exception"><arguments><string>one</string><integer>0</integer><object class="Exception"><arguments><string>two</string></arguments></object></arguments></object>';
$dom = new \DOMDocument();
$dom->loadXML($xml);
$actual = Xml::xmlToVariable($dom->documentElement);
$this->assertEquals('one', $actual->getMessage());
$this->assertEquals('two', $actual->getPrevious()->getMessage());
}
}
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Util;
use PHPUnit\Framework\Exception;
use PHPUnit\Framework\TestCase;
class XmlTest extends TestCase
{
/**
* @dataProvider charProvider
*/
public function testPrepareString($char)
{
$e = null;
$escapedString = Xml::prepareString($char);
$xml = "<?xml version='1.0' encoding='UTF-8' ?><tag>$escapedString</tag>";
$dom = new \DOMDocument('1.0', 'UTF-8');
try {
$dom->loadXML($xml);
} catch (Exception $e) {
}
$this->assertNull($e, \sprintf(
'PHPUnit_Util_XML::prepareString("\x%02x") should not crash DomDocument',
\ord($char)
));
}
public function charProvider()
{
$data = [];
for ($i = 0; $i < 256; $i++) {
$data[] = [\chr($i)];
}
return $data;
}
public function testLoadEmptyString()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('Could not load XML from empty string');
Xml::load('');
}
public function testLoadArray()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('Could not load XML from array');
Xml::load([1, 2, 3]);
}
public function testLoadBoolean()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('Could not load XML from boolean');
Xml::load(false);
}
public function testNestedXmlToVariable()
{
$xml = '<array><element key="a"><array><element key="b"><string>foo</string></element></array></element><element key="c"><string>bar</string></element></array>';
$dom = new \DOMDocument;
$dom->loadXML($xml);
$expected = [
'a' => [
'b' => 'foo',
],
'c' => 'bar',
];
$actual = Xml::xmlToVariable($dom->documentElement);
$this->assertSame($expected, $actual);
}
public function testXmlToVariableCanHandleMultipleOfTheSameArgumentType()
{
$xml = '<object class="SampleClass"><arguments><string>a</string><string>b</string><string>c</string></arguments></object>';
$dom = new \DOMDocument();
$dom->loadXML($xml);
$expected = ['a' => 'a', 'b' => 'b', 'c' => 'c'];
$actual = Xml::xmlToVariable($dom->documentElement);
$this->assertSame($expected, (array) $actual);
}
public function testXmlToVariableCanConstructObjectsWithConstructorArgumentsRecursively()
{
$xml = '<object class="Exception"><arguments><string>one</string><integer>0</integer><object class="Exception"><arguments><string>two</string></arguments></object></arguments></object>';
$dom = new \DOMDocument();
$dom->loadXML($xml);
$actual = Xml::xmlToVariable($dom->documentElement);
$this->assertEquals('one', $actual->getMessage());
$this->assertEquals('two', $actual->getPrevious()->getMessage());
}
}