-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathXsdTest.php
48 lines (42 loc) · 1.35 KB
/
XsdTest.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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Config\Test\Unit;
use Magento\Framework\Config\Dom;
use PHPUnit\Framework\TestCase;
class XsdTest extends TestCase
{
/**
* @param string $xsdFile
* @param string $invalidXmlFile
* @param int $expectedErrorsQty
* @dataProvider invalidXmlFileDataProvider
*/
public function testInvalidXmlFile($xsdFile, $invalidXmlFile, $expectedErrorsQty)
{
if (!function_exists('libxml_set_external_entity_loader')) {
$this->markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033');
}
$dom = new \DOMDocument();
$dom->load(__DIR__ . "/_files/{$invalidXmlFile}");
$schema = __DIR__ . "/../../etc/{$xsdFile}";
libxml_use_internal_errors(true);
$result = Dom::validateDomDocument($dom, $schema);
$errorsQty = count($result);
libxml_use_internal_errors(false);
if ($expectedErrorsQty > 0) {
$this->assertNotEmpty($result);
}
$this->assertEquals($expectedErrorsQty, $errorsQty);
}
/**
* @return array
*/
public function invalidXmlFileDataProvider()
{
return [['view.xsd', 'view_invalid.xml', 8], ['theme.xsd', 'theme_invalid.xml', 1]];
}
}