![]() 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/Filter/Test/Unit/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Filter\Test\Unit; use Laminas\Filter\FilterInterface; use Magento\Framework\Filter\Input; use Magento\Framework\ObjectManagerInterface; use PHPUnit\Framework\TestCase; class InputTest extends TestCase { public function testFilterLaminasFilterAsObject() { $objectManagerMock = $this->getMockForAbstractClass(ObjectManagerInterface::class); $inputFilter = new Input($objectManagerMock); /** @var FilterInterface $filterMock */ /** This filter should be applied to 'field1' field value only */ $filterMock = $this->createMock(FilterInterface::class); $filterMock->expects($this->exactly(1))->method('filter')->willReturnCallback( function ($input) { return '(' . $input . ')'; } ); $inputFilter->addFilter('field1', $filterMock); /** Execute SUT and ensure that array items were filtered correctly */ $inputArray = ['field1' => 'value1', 'field2' => 'value2']; $expectedOutput = ['field1' => '(value1)', 'field2' => 'value2']; $this->assertEquals($expectedOutput, $inputFilter->filter($inputArray), 'Array was filtered incorrectly.'); } public function testFilterLaminasFilterAsArray() { $objectManagerMock = $this->getMockForAbstractClass(ObjectManagerInterface::class); $inputFilter = new Input($objectManagerMock); /** This filter should be applied to 'field1' field value only */ $inputFilter->setFilters( [ 'field1' => [ [ 'laminas' => 'StringToUpper', 'args' => ['encoding' => 'utf-8'], ], ], ] ); /** Execute SUT and ensure that array items were filtered correctly */ $inputArray = ['field1' => 'value1', 'field2' => 'value2']; $expectedOutput = ['field1' => 'VALUE1', 'field2' => 'value2']; $this->assertEquals($expectedOutput, $inputFilter->filter($inputArray), 'Array was filtered incorrectly.'); } }