59 lines
1.6 KiB
PHP
Executable File
59 lines
1.6 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
namespace Magento\Test\Integrity\Modular;
|
|
|
|
use Magento\Framework\App\Filesystem\DirectoryList;
|
|
|
|
class MviewConfigFilesTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* Configuration acl file list
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fileList = [];
|
|
|
|
/**
|
|
* Path to scheme file
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $schemaFile;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$urnResolver = new \Magento\Framework\Config\Dom\UrnResolver();
|
|
$this->schemaFile = $urnResolver->getRealPath('urn:magento:framework:Mview/etc/mview.xsd');
|
|
}
|
|
|
|
/**
|
|
* Test each acl configuration file
|
|
* @param string $file
|
|
* @dataProvider mviewConfigFileDataProvider
|
|
*/
|
|
public function testIndexerConfigFile($file)
|
|
{
|
|
$validationStateMock = $this->createMock(\Magento\Framework\Config\ValidationStateInterface::class);
|
|
$validationStateMock->method('isValidationRequired')
|
|
->willReturn(true);
|
|
$domConfig = new \Magento\Framework\Config\Dom(file_get_contents($file), $validationStateMock);
|
|
$result = $domConfig->validate($this->schemaFile, $errors);
|
|
$message = "Invalid XML-file: {$file}\n";
|
|
foreach ($errors as $error) {
|
|
$message .= "{$error}\n";
|
|
}
|
|
$this->assertTrue($result, $message);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function mviewConfigFileDataProvider()
|
|
{
|
|
return \Magento\Framework\App\Utility\Files::init()->getConfigFiles('mview.xml');
|
|
}
|
|
}
|