Kernel : Linux vmw02p.internet-indee.net 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Tue Nov 16 14:42:35 UTC 2021 x86_64
Disable function : NONE
Safe mode : OFF
Host : firofichi.it | Server ip : 5.196.164.15 | Your ip : 3.147.75.117 | Time @ Server : 19 Oct 2024 08:32:25
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/webmaster/firofichi/www/vendor/magento/framework/Reflection/Test/Unit/

HOME about upload exec mass file domain root vuln newfile newfolder kill me

File Path : /home/webmaster/firofichi/www/vendor/magento/framework/Reflection/Test/Unit/MethodsMapTest.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Framework\Reflection\Test\Unit; use Magento\Framework\Serialize\SerializerInterface; use Magento\Framework\Reflection\MethodsMap; use Magento\Framework\Reflection\TypeProcessor; /** * MethodsMap test */ class MethodsMapTest extends \PHPUnit\Framework\TestCase { /** * @var MethodsMap */ private $object; /** @var SerializerInterface|\PHPUnit_Framework_MockObject_MockObject */ private $serializerMock; /** * Set up helper. */ protected function setUp() { $objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this); $cacheMock = $this->getMockBuilder(\Magento\Framework\Cache\FrontendInterface::class) ->getMockForAbstractClass(); $cacheMock->expects($this->any()) ->method('save'); $cacheMock->expects($this->any()) ->method('load') ->will($this->returnValue(null)); $attributeTypeResolverMock = $this->getMockBuilder(\Magento\Framework\Api\AttributeTypeResolverInterface::class) ->getMockForAbstractClass(); $fieldNamerMock = $this->getMockBuilder(\Magento\Framework\Reflection\FieldNamer::class) ->getMockForAbstractClass(); $this->object = $objectManager->getObject( \Magento\Framework\Reflection\MethodsMap::class, [ 'cache' => $cacheMock, 'typeProcessor' => new TypeProcessor(), 'typeResolver' => $attributeTypeResolverMock, 'fieldNamer' => $fieldNamerMock, ] ); $this->serializerMock = $this->createMock(SerializerInterface::class); $objectManager->setBackwardCompatibleProperty( $this->object, 'serializer', $this->serializerMock ); } public function testGetMethodReturnType() { $this->assertEquals( 'string', $this->object->getMethodReturnType( \Magento\Framework\Reflection\FieldNamer::class, 'getFieldNameForMethodName' ) ); $this->assertEquals( 'mixed', $this->object->getMethodReturnType( \Magento\Framework\Reflection\TypeCaster::class, 'castValueToType' ) ); $this->assertEquals( 'array', $this->object->getMethodReturnType( \Magento\Framework\Reflection\MethodsMap::class, 'getMethodsMap' ) ); } public function testGetMethodsMap() { $data = [ 'getMethodReturnType' => [ 'type' => 'string', 'isRequired' => true, 'description' => null, 'parameterCount' => 2, ], 'getMethodsMap' => [ 'type' => 'array', 'isRequired' => true, 'description' => "<pre> Service methods' reflection data stored in cache as 'methodName' => " . "'returnType' ex. [ 'create' => '\Magento\Customer\Api\Data\Customer', 'validatePassword' " . "=> 'boolean' ] </pre>", 'parameterCount' => 1, ], 'getMethodParams' => [ 'type' => 'array', 'isRequired' => true, 'description' => null, 'parameterCount' => 2 ], 'isMethodValidForDataField' => [ 'type' => 'bool', 'isRequired' => true, 'description' => null, 'parameterCount' => 2, ], 'isMethodReturnValueRequired' => [ 'type' => 'bool', 'isRequired' => true, 'description' => null, 'parameterCount' => 2, ], ]; $this->serializerMock->expects($this->once()) ->method('serialize') ->with($data); $methodsMap = $this->object->getMethodsMap(\Magento\Framework\Reflection\MethodsMap::class); $this->assertEquals( $data, $methodsMap ); } /** * @param string $type * @param string $methodName * @param bool $expectedResult * @dataProvider isMethodValidForDataFieldProvider */ public function testIsMethodValidForDataField($type, $methodName, $expectedResult) { $this->assertEquals($this->object->isMethodValidForDataField($type, $methodName), $expectedResult); } /** * @return array */ public function isMethodValidForDataFieldProvider() { return [ 'MethodsMap#isMethodValidForDataField' => [\Magento\Framework\Reflection\MethodsMap::class, 'isMethodValidForDataField', false, ], 'DataObject#getAttrName' => [\Magento\Framework\Reflection\Test\Unit\DataObject::class, 'getAttrName', true, ], 'DataObject#isActive' => [\Magento\Framework\Reflection\Test\Unit\DataObject::class, 'isActive', true, ], ]; } /** * @param string $type * @param string $methodName * @param bool $expectedResult * @dataProvider isMethodReturnValueRequiredProvider */ public function testIsMethodReturnValueRequired($type, $methodName, $expectedResult) { $this->assertEquals($this->object->isMethodValidForDataField($type, $methodName), $expectedResult); } /** * @return array */ public function isMethodReturnValueRequiredProvider() { return [ 'DataObject#getAttrName' => [\Magento\Framework\Reflection\Test\Unit\DataObject::class, 'getAttrName', true, ], 'DataObject#isActive' => [\Magento\Framework\Reflection\Test\Unit\DataObject::class, 'isActive', true, ], 'FieldNamer#getFieldNameForMethodName' => [\Magento\Framework\Reflection\FieldNamer::class, 'getFieldNameForMethodName', false, ], ]; } }