![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Indexer/Test/Unit/_files/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); return [ 'without_indexer_handle' => [ '<?xml version="1.0"?><config></config>', ["Element 'config': Missing child element(s). Expected is ( indexer ).\nLine: 1\n"], ], 'indexer_with_notallowed_attribute' => [ '<?xml version="1.0"?><config>' . '<indexer id="somename" view_id="view_01" class="Class\Name" notallowed="some value">' . '<title>Test</title><description>Test</description></indexer></config>', ["Element 'indexer', attribute 'notallowed': The attribute 'notallowed' is not allowed.\nLine: 1\n"], ], 'indexer_without_view_attribute' => [ '<?xml version="1.0"?><config><indexer id="somename" class="Class\Name">' . '<title>Test</title><description>Test</description></indexer></config>', ["Element 'indexer': The attribute 'view_id' is required but missing.\nLine: 1\n"], ], 'indexer_with_wrong_class_name' => [ '<?xml version="1.0"?><config><indexer id="somename" view_id="view_01" class="Class+\Name">' . '<title>Test</title><description>Test</description></indexer></config>', [ "Element 'indexer', attribute 'class': [facet 'pattern'] The value 'Class+\Name' " . "is not accepted by the pattern '[a-zA-Z|\\\\]+[a-zA-Z0-9\\\\]+'.\nLine: 1\n" ], ], 'indexer_duplicate_view_attribute' => [ '<?xml version="1.0"?><config><indexer id="somename" view_id="view_01" class="Class\Name">' . '<title>Test</title><description>Test</description></indexer>' . '<indexer id="somename_two" view_id="view_01" class="Class\Name">' . '<title>Test</title><description>Test</description></indexer></config>', [ "Element 'indexer': Duplicate key-sequence ['view_01'] in unique identity-constraint" . " 'uniqueViewId'.\nLine: 1\n" ], ], ];