b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / vendor / magento / framework / Filesystem / Test / Unit / File /
Filename/home/dev2.destoffenstraat.com/vendor/magento/framework/Filesystem/Test/Unit/File/WriteTest.php
Size5.28 kb
Permissionrw-r--r--
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified07-Jan-2021 21:08
Last accessed23-Aug-2025 03:56
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Framework\Filesystem\Test\Unit\File;

use Magento\Framework\Exception\FileSystemException;
use Magento\Framework\Filesystem\DriverInterface;
use Magento\Framework\Filesystem\File\Read;
use Magento\Framework\Filesystem\File\Write;
use Magento\Framework\Phrase;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class WriteTest extends TestCase
{
/**
* @var Write
*/
protected $file;

/**
* @var string
*/
protected $path = 'path';

/**
* @var resource
*/
protected $resource;

/**
* @var string
*/
protected $mode = 'w';

/**
* @var DriverInterface|MockObject
*/
protected $driver;

protected function setUp(): void
{
$this->driver = $this->getMockForAbstractClass(DriverInterface::class);
$this->driver->expects($this->any())
->method('isExists')
->with($this->path)
->willReturn(true);
$this->driver->expects($this->once())
->method('fileOpen')
->with($this->path, $this->mode)
->willReturn(null);
$this->file = new Write($this->path, $this->driver, $this->mode);
}

protected function tearDown(): void
{
$this->file = null;
$this->driver = null;
}

public function testInstanceFileNotExists()
{
$this->expectException('Magento\Framework\Exception\FileSystemException');
$driver = $this->getMockForAbstractClass(DriverInterface::class);
$driver->expects($this->once())
->method('isExists')
->with($this->path)
->willReturn(false);
$file = new Write($this->path, $driver, 'r');
$this->assertInstanceOf(Read::class, $file);
}

public function testInstanceFileAlreadyExists()
{
$this->expectException('Magento\Framework\Exception\FileSystemException');
$driver = $this->getMockForAbstractClass(DriverInterface::class);
$driver->expects($this->once())
->method('isExists')
->with($this->path)
->willReturn(true);
$file = new Write($this->path, $driver, 'x');
$this->assertInstanceOf(Read::class, $file);
}

public function testWrite()
{
$result = 4;
$data = 'data';
$this->driver->expects($this->once())
->method('fileWrite')
->with($this->resource, $data)
->willReturn($result);
$this->assertEquals($result, $this->file->write($data));
}

public function testWriteCsv()
{
$data = [];
$delimiter = ',';
$enclosure = '"';
$result = 0;
$this->driver->expects($this->once())
->method('filePutCsv')
->with($this->resource, $data, $delimiter, $enclosure)
->willReturn($result);
$this->assertEquals($result, $this->file->writeCsv($data, $delimiter, $enclosure));
}

public function testFlush()
{
$result = true;
$this->driver->expects($this->once())
->method('fileFlush')
->with($this->resource)
->willReturn($result);
$this->assertEquals($result, $this->file->flush());
}

public function testWriteException()
{
$this->expectException('Magento\Framework\Exception\FileSystemException');
$data = 'data';
$emptyTranslation = '';

$this->driver->expects($this->once())
->method('fileWrite')
->with($this->resource, $data)
->willThrowException(new FileSystemException(new Phrase($emptyTranslation)));

$this->file->write($data);
}

public function testWriteCsvException()
{
$this->expectException('Magento\Framework\Exception\FileSystemException');
$data = [];
$delimiter = ',';
$enclosure = '"';
$emptyTranslation = '';

$this->driver->expects($this->once())
->method('filePutCsv')
->with($this->resource, $data, $delimiter, $enclosure)
->willThrowException(new FileSystemException(new Phrase($emptyTranslation)));

$this->file->writeCsv($data, $delimiter, $enclosure);
}

public function testFlushException()
{
$this->expectException('Magento\Framework\Exception\FileSystemException');
$emptyTranslation = '';

$this->driver->expects($this->once())
->method('fileFlush')
->with($this->resource)
->willThrowException(new FileSystemException(new Phrase($emptyTranslation)));

$this->file->flush();
}

public function testLock()
{
$lockMode = LOCK_EX;
$result = true;
$this->driver->expects($this->once())
->method('fileLock')
->with($this->resource, $lockMode)
->willReturn($result);
$this->assertEquals($result, $this->file->lock($lockMode));
}

public function testUnlock()
{
$result = true;
$this->driver->expects($this->once())
->method('fileUnlock')
->with($this->resource)
->willReturn($result);
$this->assertEquals($result, $this->file->unlock());
}
}