![]() 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/Cache/Test/Unit/Frontend/Decorator/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Cache\Test\Unit\Frontend\Decorator; use Magento\Framework\Cache\Frontend\Decorator\Bare; use Magento\Framework\Cache\FrontendInterface; use Magento\Framework\TestFramework\Unit\Helper\ProxyTesting; use PHPUnit\Framework\TestCase; class BareTest extends TestCase { /** * @param string $method * @param array $params * @param mixed $expectedResult * @dataProvider proxyMethodDataProvider */ public function testProxyMethod($method, $params, $expectedResult) { $frontendMock = $this->getMockForAbstractClass(FrontendInterface::class); $object = new Bare($frontendMock); $helper = new ProxyTesting(); $result = $helper->invokeWithExpectations($object, $frontendMock, $method, $params, $expectedResult); $this->assertSame($expectedResult, $result); } /** * @return array */ public function proxyMethodDataProvider() { return [ ['test', ['record_id'], 111], ['load', ['record_id'], '111'], ['save', ['record_value', 'record_id', ['tag'], 555], true], ['remove', ['record_id'], true], ['clean', [\Zend_Cache::CLEANING_MODE_MATCHING_ANY_TAG, ['tag']], true], ['getBackend', [], $this->createMock(\Zend_Cache_Backend::class)], ['getLowLevelFrontend', [], $this->createMock(\Zend_Cache_Core::class)], ]; } }