-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathDom.php
424 lines (395 loc) · 13 KB
/
Dom.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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\FunctionalTestingFramework\Config;
use Magento\FunctionalTestingFramework\Config\Dom\ValidationException;
/**
* Magento configuration XML DOM utility
*/
class Dom
{
/**
* Prefix which will be used for root namespace
*/
const ROOT_NAMESPACE_PREFIX = 'x';
/**
* Format of items in errors array to be used by default. Available placeholders - fields of \LibXMLError.
*/
const ERROR_FORMAT_DEFAULT = "%message%\nLine: %line%\n";
/**
* Dom document
*
* @var \DOMDocument
*/
protected $dom;
/**
* Configuration of identifier attributes to be taken into account during merging.
*
* @var Dom\NodeMergingConfig
*/
protected $nodeMergingConfig;
/**
* Name of attribute that specifies type of argument node
*
* @var string|null
*/
protected $typeAttributeName;
/**
* Schema validation file
*
* @var string
*/
protected $schemaFile;
/**
* Format of error messages
*
* @var string
*/
protected $errorFormat;
/**
* Default namespace for xml elements
*
* @var string
*/
protected $rootNamespace;
/**
* Build DOM with initial XML contents and specifying identifier attributes for merging
*
* Format of $idAttributes: array('/xpath/to/some/node' => 'id_attribute_name')
* The path to ID attribute name should not include any attribute notations or modifiers -- only node names
*
* @param string $xml
* @param array $idAttributes
* @param string $typeAttributeName
* @param string $schemaFile
* @param string $errorFormat
*/
public function __construct(
$xml,
array $idAttributes = [],
$typeAttributeName = null,
$schemaFile = null,
$errorFormat = self::ERROR_FORMAT_DEFAULT
) {
$this->schemaFile = $schemaFile;
$this->nodeMergingConfig = new Dom\NodeMergingConfig(new Dom\NodePathMatcher(), $idAttributes);
$this->typeAttributeName = $typeAttributeName;
$this->errorFormat = $errorFormat;
$this->dom = $this->initDom($xml);
$this->rootNamespace = $this->dom->lookupNamespaceUri($this->dom->namespaceURI);
}
/**
* Merge $xml into DOM document
*
* @param string $xml
* @param string $filename
* @param ExceptionCollector $exceptionCollector
* @return void
*/
public function merge($xml, $filename = null, $exceptionCollector = null)
{
$dom = $this->initDom($xml, $filename, $exceptionCollector);
$this->mergeNode($dom->documentElement, '');
}
/**
* Recursive merging of the \DOMElement into the original document
*
* Algorithm:
* 1. Find the same node in original document
* 2. Extend and override original document node attributes and scalar value if found
* 3. Append new node if original document doesn't have the same node
*
* @param \DOMElement $node
* @param string $parentPath Path to parent node.
* @return void
*/
protected function mergeNode(\DOMElement $node, $parentPath)
{
$path = $this->getNodePathByParent($node, $parentPath);
$matchedNode = $this->getMatchedNode($path);
/* Update matched node attributes and value */
if ($matchedNode) {
$this->mergeMatchingNode($node, $parentPath, $matchedNode, $path);
} else {
/* Add node as is to the document under the same parent element */
$parentMatchedNode = $this->getMatchedNode($parentPath);
$newNode = $this->dom->importNode($node, true);
$parentMatchedNode->appendChild($newNode);
}
}
/**
* Function to process matching node merges. Broken into shared logic for extending classes.
*
* @param \DomElement $node
* @param string $parentPath
* @param |DomElement $matchedNode
* @param string $path
* @return void
* @SuppressWarnings(PHPMD.CyclomaticComplexity)
* @SuppressWarnings(PHPMD.NPathComplexity)
* @TODO Ported magento code - to be refactored later
*/
protected function mergeMatchingNode(\DomElement $node, $parentPath, $matchedNode, $path)
{
//different node type
if ($this->typeAttributeName
&& $node->hasAttribute($this->typeAttributeName)
&& $matchedNode->hasAttribute($this->typeAttributeName)
&& $node->getAttribute($this->typeAttributeName)
!== $matchedNode->getAttribute($this->typeAttributeName)
) {
$this->replaceNodeValue($parentPath, $node, $matchedNode);
return;
}
$this->mergeAttributes($matchedNode, $node);
if ($node->nodeValue === '' && $matchedNode->nodeValue !== '' && $matchedNode->childNodes->length === 1) {
$this->replaceNodeValue($parentPath, $node, $matchedNode);
}
if (!$node->hasChildNodes()) {
return;
}
/* override node value */
if ($this->isTextNode($node)) {
/* skip the case when the matched node has children, otherwise they get overridden */
if (!$matchedNode->hasChildNodes() || $this->isTextNode($matchedNode)) {
$matchedNode->nodeValue = $node->childNodes->item(0)->nodeValue;
}
} else {
/* recursive merge for all child nodes */
foreach ($node->childNodes as $childNode) {
if ($childNode instanceof \DOMElement) {
$this->mergeNode($childNode, $path);
}
}
}
}
/**
* Replace node value.
*
* @param string $parentPath
* @param \DOMElement $node
* @param \DOMElement $matchedNode
*
* @return void
*/
protected function replaceNodeValue($parentPath, \DOMElement $node, \DOMElement $matchedNode)
{
$parentMatchedNode = $this->getMatchedNode($parentPath);
$newNode = $this->dom->importNode($node, true);
$parentMatchedNode->replaceChild($newNode, $matchedNode);
}
/**
* Check if the node content is text
*
* @param \DOMElement $node
* @return boolean
*/
protected function isTextNode($node)
{
return $node->childNodes->length == 1 && $node->childNodes->item(0) instanceof \DOMText;
}
/**
* Merges attributes of the merge node to the base node
*
* @param \DOMElement $baseNode
* @param \DOMNode $mergeNode
* @return void
*/
protected function mergeAttributes($baseNode, $mergeNode)
{
foreach ($mergeNode->attributes as $attribute) {
// Do not overwrite filename of base node
if ($attribute->name === "filename") {
$baseNode->setAttribute(
$this->getAttributeName($attribute),
$baseNode->getAttribute("filename") . "," . $attribute->value
);
continue;
}
$baseNode->setAttribute($this->getAttributeName($attribute), $attribute->value);
}
}
/**
* Identify node path based on parent path and node attributes
*
* @param \DOMElement $node
* @param string $parentPath
* @return string
*/
protected function getNodePathByParent(\DOMElement $node, $parentPath)
{
$prefix = $this->rootNamespace === null ? '' : self::ROOT_NAMESPACE_PREFIX . ':';
$path = $parentPath . '/' . $prefix . $node->tagName;
$idAttribute = $this->nodeMergingConfig->getIdAttribute($path);
if ($idAttribute) {
foreach (explode('|', $idAttribute) as $idAttributeValue) {
if ($value = $node->getAttribute($idAttributeValue)) {
$path .= "[@{$idAttributeValue}='{$value}']";
break;
}
}
}
return $path;
}
/**
* Getter for node by path
* An exception is possible if original document contains multiple nodes for identifier
*
* @param string $nodePath
* @throws \Exception
* @return \DOMElement|null
*/
protected function getMatchedNode($nodePath)
{
$xPath = new \DOMXPath($this->dom);
if ($this->rootNamespace) {
$xPath->registerNamespace(self::ROOT_NAMESPACE_PREFIX, $this->rootNamespace);
}
$matchedNodes = $xPath->query($nodePath);
$node = null;
if ($matchedNodes->length > 1) {
throw new \Exception("More than one node matching the query: {$nodePath}");
} elseif ($matchedNodes->length == 1) {
$node = $matchedNodes->item(0);
}
return $node;
}
/**
* Validate dom document
*
* @param \DOMDocument $dom
* @param string $schemaFileName
* @param string $errorFormat
* @return array of errors
* @throws \Exception
*/
public static function validateDomDocument(
\DOMDocument $dom,
$schemaFileName,
$errorFormat = self::ERROR_FORMAT_DEFAULT
) {
libxml_use_internal_errors(true);
try {
$result = $dom->schemaValidate($schemaFileName);
$errors = [];
if (!$result) {
$validationErrors = libxml_get_errors();
if (count($validationErrors)) {
foreach ($validationErrors as $error) {
$errors[] = self::renderErrorMessage($error, $errorFormat);
}
} else {
$errors[] = 'Unknown validation error';
}
}
} catch (\Exception $exception) {
libxml_use_internal_errors(false);
throw new \Exception(
sprintf(
'Failed to validate xml using schema: %s. Exception: %s',
$schemaFileName,
$exception->getMessage()
)
);
}
libxml_use_internal_errors(false);
return $errors;
}
/**
* Render error message string by replacing placeholders '%field%' with properties of \LibXMLError
*
* @param \LibXMLError $errorInfo
* @param string $format
* @return string
* @throws \InvalidArgumentException
*/
private static function renderErrorMessage(\LibXMLError $errorInfo, $format)
{
$result = $format;
foreach ($errorInfo as $field => $value) {
$placeholder = '%' . $field . '%';
$value = trim((string)$value);
$result = str_replace($placeholder, $value, $result);
}
if (strpos($result, '%') !== false) {
throw new \InvalidArgumentException("Error format '{$format}' contains unsupported placeholders.");
}
return $result;
}
/**
* DOM document getter
*
* @return \DOMDocument
*/
public function getDom()
{
return $this->dom;
}
/**
* Create DOM document based on $xml parameter
*
* @param string $xml
* @param string $filename
* @return \DOMDocument
* @throws \Magento\FunctionalTestingFramework\Config\Dom\ValidationException
*/
protected function initDom($xml, $filename = null)
{
$dom = new \DOMDocument();
try {
$domSuccess = $dom->loadXML($xml);
if (!$domSuccess) {
throw new \Exception();
}
} catch (\Exception $exception) {
throw new ValidationException("XML Parse Error: $filename\n");
}
if ($this->schemaFile) {
$errors = self::validateDomDocument($dom, $this->schemaFile, $this->errorFormat);
if (count($errors)) {
throw new \Magento\FunctionalTestingFramework\Config\Dom\ValidationException(implode("\n", $errors));
}
}
return $dom;
}
/**
* Validate self contents towards to specified schema
*
* @param string $schemaFileName Absolute path to schema file.
* @param array $errors
* @return boolean
*/
public function validate($schemaFileName, &$errors = [])
{
$errors = self::validateDomDocument($this->dom, $schemaFileName, $this->errorFormat);
return !count($errors);
}
/**
* Set schema file
*
* @param string $schemaFile
* @return $this
*/
public function setSchemaFile($schemaFile)
{
$this->schemaFile = $schemaFile;
return $this;
}
/**
* Returns the attribute name with prefix, if there is one
*
* @param \DOMAttr $attribute
* @return string
*/
private function getAttributeName($attribute)
{
if ($attribute->prefix !== null && !empty($attribute->prefix)) {
$attributeName = $attribute->prefix . ':' . $attribute->name;
} else {
$attributeName = $attribute->name;
}
return $attributeName;
}
}