-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathXMLReaderTest.php
179 lines (149 loc) · 5.78 KB
/
XMLReaderTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWordTests\Shared;
use Exception;
use InvalidArgumentException;
use PhpOffice\PhpWord\Shared\XMLReader;
/**
* Test class for XMLReader.
*
* @coversDefaultClass \PhpOffice\PhpWord\Shared\XMLReader
*/
class XMLReaderTest extends \PHPUnit\Framework\TestCase
{
/**
* Test reading XML from string.
*/
public function testDomFromString(): void
{
$reader = new XMLReader();
$reader->getDomFromString('<element attr="test"><child attr="subtest">AAA</child></element>');
self::assertTrue($reader->elementExists('/element/child'));
self::assertEquals('AAA', $reader->getElement('/element/child')->textContent);
self::assertEquals('AAA', $reader->getValue('/element/child'));
self::assertEquals('test', $reader->getAttribute('attr', $reader->getElement('/element')));
self::assertEquals('subtest', $reader->getAttribute('attr', $reader->getElement('/element'), 'child'));
}
/**
* Test reading XML from zip.
*/
public function testDomFromZip(): void
{
$archiveFile = __DIR__ . '/../_files/xml/reader.zip';
$reader = new XMLReader();
$reader->getDomFromZip($archiveFile, 'test.xml');
self::assertTrue($reader->elementExists('/element/child'));
self::assertFalse($reader->getDomFromZip($archiveFile, 'non_existing_xml_file.xml'));
}
/**
* Office 365 add some slash before the path of XML file.
*/
public function testDomFromZipOffice365(): void
{
$archiveFile = __DIR__ . '/../_files/xml/reader.zip';
$reader = new XMLReader();
$reader->getDomFromZip($archiveFile, '/test.xml');
self::assertTrue($reader->elementExists('/element/child'));
self::assertFalse($reader->getDomFromZip($archiveFile, 'non_existing_xml_file.xml'));
}
/**
* Test that read from non existing archive throws exception.
*/
public function testThrowsExceptionOnNonExistingArchive(): void
{
$this->expectException(Exception::class);
$archiveFile = __DIR__ . '/../_files/xml/readers.zip';
$reader = new XMLReader();
$reader->getDomFromZip($archiveFile, 'test.xml');
}
/**
* Test that read from invalid archive throws exception.
*/
public function testThrowsExceptionOnZipArchiveOpenErrors(): void
{
/**
* @var string
*/
$tempPath = tempnam(sys_get_temp_dir(), 'PhpWord');
// Simulate a corrupt archive
file_put_contents($tempPath, mt_rand());
$exceptionMessage = null;
try {
$reader = new XMLReader();
$reader->getDomFromZip($tempPath, 'test.xml');
} catch (Exception $e) {
$exceptionMessage = $e->getMessage();
}
self::assertNotNull($exceptionMessage);
unlink($tempPath);
}
/**
* Test elements count.
*/
public function testCountElements(): void
{
$reader = new XMLReader();
$reader->getDomFromString('<element attr="test"><child>AAA</child><child>BBB</child></element>');
self::assertEquals(2, $reader->countElements('/element/child'));
}
/**
* Test read non existing elements.
*/
public function testReturnNullOnNonExistingNode(): void
{
$reader = new XMLReader();
self::assertSame(0, $reader->getElements('/element/children')->length);
$reader->getDomFromString('<element><child>AAA</child></element>');
self::assertNull($reader->getElement('/element/children'));
self::assertNull($reader->getValue('/element/children'));
}
/**
* Test that xpath fails if custom namespace is not registered.
*/
public function testShouldThrowExceptionIfNamespaceIsNotKnown(): void
{
try {
$reader = new XMLReader();
$reader->getDomFromString('<element><test:child xmlns:test="http://phpword.com/my/custom/namespace">AAA</test:child></element>');
self::assertTrue($reader->elementExists('/element/test:child'));
self::assertEquals('AAA', $reader->getElement('/element/test:child')->textContent);
self::fail();
} catch (Exception $e) {
self::assertTrue(true);
}
}
/**
* Test reading XML with manually registered namespace.
*/
public function testShouldParseXmlWithCustomNamespace(): void
{
$reader = new XMLReader();
$reader->getDomFromString('<element><test:child xmlns:test="http://phpword.com/my/custom/namespace">AAA</test:child></element>');
$reader->registerNamespace('test', 'http://phpword.com/my/custom/namespace');
self::assertTrue($reader->elementExists('/element/test:child'));
self::assertEquals('AAA', $reader->getElement('/element/test:child')->textContent);
}
/**
* Test that xpath fails if custom namespace is not registered.
*/
public function testShouldThowExceptionIfTryingToRegisterNamespaceBeforeReadingDoc(): void
{
$this->expectException(InvalidArgumentException::class);
$reader = new XMLReader();
$reader->registerNamespace('test', 'http://phpword.com/my/custom/namespace');
}
}