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 10:02:25
MySQL : OFF | MSSQL : OFF | cURL : ON | Oracle : OFF | wget : ON | Perl : ON

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

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

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

<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Test\Unit\Data; use Magento\Framework\Data\Collection; use Magento\Framework\Data\Collection\EntityFactoryInterface; use Magento\Framework\DataObject; use PHPUnit\Framework\TestCase; class CollectionTest extends TestCase { /** * @var Collection */ private $collection; protected function setUp(): void { $factoryMock = $this->getMockForAbstractClass(EntityFactoryInterface::class); $this->collection = new Collection($factoryMock); } /** * Test that callback works correctly for all items in collection. * @see https://github.com/magento/magento2/pull/5742 */ public function testWalk() { $objOne = new DataObject(['id' => 1, 'name' => 'one']); $objTwo = new DataObject(['id' => 2, 'name' => 'two']); $objThree = new DataObject(['id' => 3, 'name' => 'three']); $this->collection->addItem($objOne); $this->collection->addItem($objTwo); $this->collection->addItem($objThree); $this->assertEquals([1, 2, 3], $this->collection->getAllIds(), 'Items added incorrectly to the collection'); $this->collection->walk([$this, 'modifyObjectNames'], ['test prefix']); $this->assertEquals([1, 2, 3], $this->collection->getAllIds(), 'Incorrect IDs after callback function'); $expectedNames = [ 'test prefix one', 'test prefix two', 'test prefix three' ]; $this->assertEquals( $expectedNames, $this->collection->getColumnValues('name'), 'Incorrect Names after callback function' ); } /** * Ensure that getSize works correctly with clear * */ public function testClearTotalRecords() { $objOne = new DataObject(['id' => 1, 'name' => 'one']); $objTwo = new DataObject(['id' => 2, 'name' => 'two']); $objThree = new DataObject(['id' => 3, 'name' => 'three']); /** @noinspection PhpUnhandledExceptionInspection */ $this->collection->addItem($objOne); /** @noinspection PhpUnhandledExceptionInspection */ $this->collection->addItem($objTwo); /** @noinspection PhpUnhandledExceptionInspection */ $this->collection->addItem($objThree); $this->assertEquals(3, $this->collection->getSize()); $this->collection->clear(); $this->assertEquals(0, $this->collection->getSize()); } /** * Callback function. * * @param \Magento\Framework\DataObject $object * @param string $prefix */ public function modifyObjectNames(DataObject $object, $prefix) { $object->setData('name', $prefix . ' ' . $object->getData('name')); } }