![]() 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-eav/Test/Unit/Model/Attribute/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Eav\Test\Unit\Model\Attribute\Data; use Magento\Eav\Model\Attribute; use Magento\Eav\Model\Attribute\Data\Select; use Magento\Eav\Model\AttributeDataFactory; use Magento\Eav\Model\Entity\Attribute\Source\AbstractSource; use Magento\Framework\Locale\ResolverInterface; use Magento\Framework\Model\AbstractModel; use Magento\Framework\Stdlib\DateTime\TimezoneInterface; use PHPUnit\Framework\TestCase; use Psr\Log\LoggerInterface; class SelectTest extends TestCase { /** * @var Select */ protected $model; protected function setUp(): void { $timezoneMock = $this->getMockForAbstractClass(TimezoneInterface::class); $loggerMock = $this->getMockForAbstractClass(LoggerInterface::class); $localeResolverMock = $this->getMockForAbstractClass(ResolverInterface::class); $this->model = new Select($timezoneMock, $loggerMock, $localeResolverMock); } /** * @covers \Magento\Eav\Model\Attribute\Data\Select::outputValue * * @param string $format * @param mixed $value * @param mixed $expectedResult * @dataProvider outputValueDataProvider */ public function testOutputValue($format, $value, $expectedResult) { $entityMock = $this->createMock(AbstractModel::class); $entityMock->expects($this->once())->method('getData')->willReturn($value); $sourceMock = $this->createMock(AbstractSource::class); $sourceMock->expects($this->any())->method('getOptionText')->willReturn(123); $attributeMock = $this->createMock(Attribute::class); $attributeMock->expects($this->any())->method('getSource')->willReturn($sourceMock); $this->model->setEntity($entityMock); $this->model->setAttribute($attributeMock); $this->assertEquals($expectedResult, $this->model->outputValue($format)); } /** * @return array */ public function outputValueDataProvider() { return [ [ 'format' => AttributeDataFactory::OUTPUT_FORMAT_JSON, 'value' => 'value', 'expectedResult' => 'value', ], [ 'format' => AttributeDataFactory::OUTPUT_FORMAT_TEXT, 'value' => '', 'expectedResult' => '' ], [ 'format' => AttributeDataFactory::OUTPUT_FORMAT_TEXT, 'value' => 'value', 'expectedResult' => '123' ], ]; } /** * @covers \Magento\Eav\Model\Attribute\Data\Select::validateValue * * @param mixed $value * @param mixed $originalValue * @param bool $isRequired * @param array $expectedResult * @dataProvider validateValueDataProvider */ public function testValidateValue($value, $originalValue, $isRequired, $expectedResult) { $entityMock = $this->createMock(AbstractModel::class); $entityMock->expects($this->any())->method('getData')->willReturn($originalValue); $attributeMock = $this->createMock(Attribute::class); $attributeMock->expects($this->any())->method('getStoreLabel')->willReturn('Label'); $attributeMock->expects($this->any())->method('getIsRequired')->willReturn($isRequired); $this->model->setEntity($entityMock); $this->model->setAttribute($attributeMock); $this->assertEquals($expectedResult, $this->model->validateValue($value)); } /** * @return array */ public function validateValueDataProvider() { return [ [ 'value' => false, 'originalValue' => 'value', 'isRequired' => false, 'expectedResult' => true, ], [ 'value' => false, 'originalValue' => null, 'isRequired' => true, 'expectedResult' => ['"Label" is a required value.'], ], [ 'value' => false, 'originalValue' => null, 'isRequired' => false, 'expectedResult' => true, ], [ 'value' => false, 'originalValue' => '0', 'isRequired' => true, 'expectedResult' => true, ], [ 'value' => 'value', 'originalValue' => '', 'isRequired' => true, 'expectedResult' => true, ] ]; } /** * @covers \Magento\Eav\Model\Attribute\Data\Select::compactValue */ public function testCompactValue() { $entityMock = $this->createMock(AbstractModel::class); $entityMock->expects($this->once())->method('setData')->with('attrCode', 'value'); $attributeMock = $this->createMock(Attribute::class); $attributeMock->expects($this->any())->method('getAttributeCode')->willReturn('attrCode'); $this->model->setAttribute($attributeMock); $this->model->setEntity($entityMock); $this->model->compactValue('value'); } /** * @covers \Magento\Eav\Model\Attribute\Data\Select::compactValue */ public function testCompactValueWithFalseValue() { $entityMock = $this->createMock(AbstractModel::class); $entityMock->expects($this->never())->method('setData'); $this->model->setEntity($entityMock); $this->model->compactValue(false); } }