![]() 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-indexer/Test/Unit/Model/Message/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Indexer\Test\Unit\Model\Message; use Magento\Framework\Indexer\StateInterface; use Magento\Framework\UrlInterface; use Magento\Indexer\Model\Indexer; use Magento\Indexer\Model\Indexer\Collection; use Magento\Indexer\Model\Message\Invalid; use PHPUnit\Framework\TestCase; class InvalidTest extends TestCase { /** * @var Indexer */ private $indexerMock = null; /** * @var Invalid */ protected $model; /** * Set up test */ protected function setUp(): void { $collectionMock = $this->createPartialMock(Collection::class, ['getItems']); $this->indexerMock = $this->createPartialMock(Indexer::class, ['getStatus']); $urlBuilder = $this->getMockForAbstractClass(UrlInterface::class); $collectionMock->expects($this->any())->method('getItems')->with()->willReturn([$this->indexerMock]); $this->model = new Invalid( $collectionMock, $urlBuilder ); } public function testDisplayMessage() { $this->indexerMock->expects($this->any())->method('getStatus')->with() ->willReturn(StateInterface::STATUS_INVALID); $this->assertTrue($this->model->isDisplayed()); } public function testHideMessage() { $this->indexerMock->expects($this->any())->method('getStatus')->with() ->willReturn('Status other than "invalid"'); $this->assertFalse($this->model->isDisplayed()); } }