![]() 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/cartforge.co/vendor/magento/framework/DB/Test/Unit/Adapter/Pdo/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\DB\Test\Unit\Adapter\Pdo; use Magento\Framework\DB\Adapter\Pdo\Mysql; use Magento\Framework\DB\Adapter\Pdo\MysqlFactory; use Magento\Framework\DB\LoggerInterface; use Magento\Framework\DB\SelectFactory; use Magento\Framework\ObjectManagerInterface; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class MysqlFactoryTest extends TestCase { /** * @var SelectFactory|MockObject */ private $selectFactoryMock; /** * @var LoggerInterface|MockObject */ private $loggerMock; /** * @var ObjectManagerInterface|MockObject */ private $objectManagerMock; /** * @var MysqlFactory */ private $mysqlFactory; protected function setUp(): void { $objectManager = new ObjectManager($this); $this->objectManagerMock = $this->getMockForAbstractClass(ObjectManagerInterface::class); $this->mysqlFactory = $objectManager->getObject( MysqlFactory::class, [ 'objectManager' => $this->objectManagerMock ] ); } /** * @param array $objectManagerArguments * @param array $config * @param LoggerInterface|null $logger * @param SelectFactory|null $selectFactory * @dataProvider createDataProvider */ public function testCreate( array $objectManagerArguments, array $config, LoggerInterface $logger = null, SelectFactory $selectFactory = null ) { $this->objectManagerMock->expects($this->once()) ->method('create') ->with( Mysql::class, $objectManagerArguments ); $this->mysqlFactory->create( Mysql::class, $config, $logger, $selectFactory ); } /** * @return array */ public function createDataProvider() { $this->loggerMock = $this->getMockForAbstractClass(LoggerInterface::class); $this->selectFactoryMock = $this->createMock(SelectFactory::class); return [ [ [ 'config' => ['foo' => 'bar'], 'logger' => $this->loggerMock, 'selectFactory' => $this->selectFactoryMock ], ['foo' => 'bar'], $this->loggerMock, $this->selectFactoryMock ], [ [ 'config' => ['foo' => 'bar'], 'logger' => $this->loggerMock ], ['foo' => 'bar'], $this->loggerMock, null ], [ [ 'config' => ['foo' => 'bar'], 'selectFactory' => $this->selectFactoryMock ], ['foo' => 'bar'], null, $this->selectFactoryMock ], ]; } public function testCreateInvalidClass() { $this->expectException('InvalidArgumentException'); $this->expectExceptionMessage('Invalid class, stdClass must extend Magento\Framework\DB\Adapter\Pdo\Mysql.'); $this->mysqlFactory->create( \stdClass::class, [] ); } }