2018-11-05 07:53:12 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-11-05 07:53:12 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2019-02-27 06:32:56 -05:00
|
|
|
namespace Friendica\Test\src\Util;
|
2018-11-05 07:53:12 -05:00
|
|
|
|
2018-11-05 13:08:33 -05:00
|
|
|
use Friendica\Util\XML;
|
2018-11-05 07:53:12 -05:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* XML utility test class
|
2018-11-05 07:53:12 -05:00
|
|
|
*/
|
2018-11-05 13:08:33 -05:00
|
|
|
class XmlTest extends TestCase
|
2018-11-05 07:53:12 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
$this->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();
|
|
|
|
//should be possible to parse it
|
|
|
|
$values=array();
|
|
|
|
$index=array();
|
|
|
|
$this->assertEquals(1, xml_parse_into_struct($xml_parser, $text, $values, $index));
|
|
|
|
$this->assertEquals(
|
|
|
|
array('TEXT'=>array(0)),
|
|
|
|
$index
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
array(array('tag'=>'TEXT', 'type'=>'complete', 'level'=>1, 'value'=>$tag)),
|
|
|
|
$values
|
|
|
|
);
|
|
|
|
xml_parser_free($xml_parser);
|
|
|
|
}
|
|
|
|
}
|