Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/dev/tests/integration/testsuite/Magento/Framework/DB/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/dev/tests/integration/testsuite/Magento/Framework/DB/TransactionTest.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\DB;

use Magento\Framework\Flag;

class TransactionTest extends \PHPUnit\Framework\TestCase
{
    protected $objectManager;

    /**
     * @var \Magento\Framework\DB\Transaction
     */
    protected $_model;

    protected function setUp(): void
    {
        $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
        $this->_model = $this->objectManager
            ->create(\Magento\Framework\DB\Transaction::class);
    }

    /**
     * @magentoAppArea adminhtml
     */
    public function testSaveDelete()
    {
        /** @var Flag $first */
        $first = $this->objectManager->create(Flag::class, ['data' => ['flag_code' => 'test1']]);
        $first->setFlagData('test1data');
        $second = $this->objectManager->create(Flag::class, ['data' => ['flag_code' => 'test2']]);
        $second->setFlagData('test2data');

        $first->save();
        $this->_model->addObject($first)->addObject($second, 'second');
        $this->_model->save();
        $this->assertNotEmpty($first->getId());
        $this->assertNotEmpty($second->getId());

        $this->_model->delete();

        $test = $this->objectManager->create(Flag::class);
        $test->load($first->getId());
        $this->assertEmpty($test->getId());
    }

    /**
     * @magentoDbIsolation disabled
     */
    public function testTransactionLevelDbIsolationDisable()
    {
        $resourceConnection = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
            ->get(\Magento\Framework\App\ResourceConnection::class);
        $this->assertEquals(0, $resourceConnection->getConnection('default')->getTransactionLevel());
    }

    /**
     * @magentoDbIsolation enabled
     */
    public function testTransactionLevelDbIsolationEnabled()
    {
        $resourceConnection = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
            ->get(\Magento\Framework\App\ResourceConnection::class);
        $this->assertEquals(1, $resourceConnection->getConnection('default')->getTransactionLevel());
    }

    /**
     * @magentoDataFixture Magento/Framework/DB/_files/dummy_fixture.php
     */
    public function testTransactionLevelDbIsolationDefault()
    {
        $resourceConnection = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()
            ->get(\Magento\Framework\App\ResourceConnection::class);
        $this->assertEquals(1, $resourceConnection->getConnection('default')->getTransactionLevel());
    }
}

Spamworldpro Mini