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 / a / home / dev2.destoffenstraat.com / vendor / magento / framework / Module / Test / Unit /
Filename/home/a/home/dev2.destoffenstraat.com/vendor/magento/framework/Module/Test/Unit/SetupTest.php
Size3.31 kb
Permissionrw-r--r--
Ownerroot : root
Create time21-Aug-2025 12:26
Last modified07-Jan-2021 21:08
Last accessed23-Aug-2025 10: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\Module\Test\Unit;

use Magento\Framework\App\ResourceConnection;
use Magento\Framework\DB\Adapter\AdapterInterface;
use Magento\Framework\Module\Setup;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class SetupTest extends TestCase
{
const CONNECTION_NAME = 'connection';

/**
* @var ResourceConnection|MockObject
*/
private $resourceModel;

/**
* @var AdapterInterface|MockObject
*/
private $connection;

/**
* @var Setup
*/
private $object;

protected function setUp(): void
{
$this->resourceModel = $this->createMock(ResourceConnection::class);
$this->connection = $this->getMockForAbstractClass(AdapterInterface::class);
$this->resourceModel->expects($this->any())
->method('getConnection')
->with(self::CONNECTION_NAME)
->willReturn($this->connection);
$this->resourceModel->expects($this->any())
->method('getConnectionByName')
->with(ResourceConnection::DEFAULT_CONNECTION)
->willReturn($this->connection);
$this->object = new Setup($this->resourceModel, self::CONNECTION_NAME);
}

public function testGetConnection()
{
$this->assertSame($this->connection, $this->object->getConnection());
// Check that new connection is not created every time
$this->assertSame($this->connection, $this->object->getConnection());
}

public function testSetTableName()
{
$tableName = 'table';
$expectedTableName = 'expected_table';

$this->assertEmpty($this->object->getTable($tableName));
$this->object->setTable($tableName, $expectedTableName);
$this->assertSame($expectedTableName, $this->object->getTable($tableName));
}

public function testGetTable()
{
$tableName = 'table';
$expectedTableName = 'expected_table';

$this->resourceModel->expects($this->once())
->method('getTableName')
->with($tableName)
->willReturn($expectedTableName);

$this->assertSame($expectedTableName, $this->object->getTable($tableName));
// Check that table name is cached
$this->assertSame($expectedTableName, $this->object->getTable($tableName));
}

public function testTableExists()
{
$tableName = 'table';
$this->object->setTable($tableName, $tableName);
$this->connection->expects($this->once())
->method('isTableExists')
->with($tableName)
->willReturn(true);
$this->assertTrue($this->object->tableExists($tableName));
}

public function testRun()
{
$q = 'SELECT something';
$this->connection->expects($this->once())
->method('query')
->with($q);
$this->object->run($q);
}

public function testStartSetup()
{
$this->connection->expects($this->once())
->method('startSetup');
$this->object->startSetup();
}

public function testEndSetup()
{
$this->connection->expects($this->once())
->method('endSetup');
$this->object->endSetup();
}
}