]> git.mxchange.org Git - friendica.git/blob - tests/src/Util/XmlTest.php
Merge remote-tracking branch 'upstream/develop' into inbox-gsid
[friendica.git] / tests / src / Util / XmlTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Util;
23
24 use Friendica\Util\XML;
25 use PHPUnit\Framework\TestCase;
26
27 /**
28  * XML utility test class
29  */
30 class XmlTest extends TestCase
31 {
32         /**
33          * escape and unescape
34          */
35         public function testEscapeUnescape()
36         {
37                 $text   = "<tag>I want to break\n this!11!<?hard?></tag>";
38                 $xml    = XML::escape($text);
39                 $retext = XML::unescape($text);
40                 self::assertEquals($text, $retext);
41         }
42
43         /**
44          * escape and put in a document
45          */
46         public function testEscapeDocument()
47         {
48                 $tag        = "<tag>I want to break</tag>";
49                 $xml        = XML::escape($tag);
50                 $text       = '<text>' . $xml . '</text>';
51                 $xml_parser = xml_parser_create();
52                 //should be possible to parse it
53                 $values = [];
54                 $index  = [];
55                 self::assertEquals(1, xml_parse_into_struct($xml_parser, $text, $values, $index));
56                 self::assertEquals(
57                         ['TEXT' => [0]],
58                         $index
59                 );
60                 self::assertEquals(
61                         [['tag' => 'TEXT', 'type' => 'complete', 'level' => 1, 'value' => $tag]],
62                         $values
63                 );
64                 xml_parser_free($xml_parser);
65         }
66 }