![]() 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/vendor/magento/module-elasticsearch/Test/Unit/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Elasticsearch\Test\Unit\Model; use Magento\Elasticsearch\Model\Config; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class ConfigTest extends TestCase { /** * @var Config */ protected $model; /** * @var ScopeConfigInterface|MockObject */ protected $scopeConfig; /** * Setup * * @return void */ protected function setUp(): void { $this->scopeConfig = $this->getMockBuilder(ScopeConfigInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $objectManager = new ObjectManagerHelper($this); $this->model = $objectManager->getObject( Config::class, [ 'scopeConfig' => $this->scopeConfig ] ); } /** * Test prepareClientOptions() method */ public function testPrepareClientOptions() { $this->scopeConfig->expects($this->any()) ->method('getValue') ->willReturn(''); $options = [ 'hostname' => 'localhost', 'port' => '9200', 'index' => 'magento2', 'enableAuth' => '1', 'username' => 'user', 'password' => 'pass', 'timeout' => 1, ]; $this->assertEquals($options, $this->model->prepareClientOptions(array_merge($options, ['test' => 'test']))); } /** * Test getIndexPrefix() method */ public function testGetIndexPrefix() { $this->scopeConfig->expects($this->any()) ->method('getValue') ->willReturn('indexPrefix'); $this->assertEquals('indexPrefix', $this->model->getIndexPrefix()); } /** * Test getEntityType() method */ public function testGetEntityType() { $this->assertIsString($this->model->getEntityType()); } /** * Test getEntityType() method */ public function testIsElasticsearchEnabled() { $this->assertFalse($this->model->isElasticsearchEnabled()); } }