mirror of
https://github.com/friendica/friendica
synced 2025-05-01 19:04:23 +02:00
Fix a lot of notices/warnings/deprecation notes in the test directory
This commit is contained in:
parent
efaec26b1d
commit
d55ecb9288
77 changed files with 428 additions and 558 deletions
|
@ -29,36 +29,36 @@ use PHPUnit\Framework\TestCase;
|
|||
*/
|
||||
class XmlTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* escape and unescape
|
||||
*/
|
||||
/**
|
||||
* escape and unescape
|
||||
*/
|
||||
public function testEscapeUnescape()
|
||||
{
|
||||
$text="<tag>I want to break\n this!11!<?hard?></tag>";
|
||||
$xml=XML::escape($text);
|
||||
$retext=XML::unescape($text);
|
||||
$text = "<tag>I want to break\n this!11!<?hard?></tag>";
|
||||
$xml = XML::escape($text);
|
||||
$retext = XML::unescape($text);
|
||||
self::assertEquals($text, $retext);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* escape and put in a document
|
||||
*/
|
||||
public function testEscapeDocument()
|
||||
{
|
||||
$tag="<tag>I want to break</tag>";
|
||||
$xml=XML::escape($tag);
|
||||
$text='<text>'.$xml.'</text>';
|
||||
$xml_parser=xml_parser_create();
|
||||
$tag = "<tag>I want to break</tag>";
|
||||
$xml = XML::escape($tag);
|
||||
$text = '<text>' . $xml . '</text>';
|
||||
$xml_parser = xml_parser_create();
|
||||
//should be possible to parse it
|
||||
$values=array();
|
||||
$index=array();
|
||||
$values = [];
|
||||
$index = [];
|
||||
self::assertEquals(1, xml_parse_into_struct($xml_parser, $text, $values, $index));
|
||||
self::assertEquals(
|
||||
array('TEXT'=>array(0)),
|
||||
['TEXT' => [0]],
|
||||
$index
|
||||
);
|
||||
self::assertEquals(
|
||||
array(array('tag'=>'TEXT', 'type'=>'complete', 'level'=>1, 'value'=>$tag)),
|
||||
[['tag' => 'TEXT', 'type' => 'complete', 'level' => 1, 'value' => $tag]],
|
||||
$values
|
||||
);
|
||||
xml_parser_free($xml_parser);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue