12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Eav\Test\Unit\Model\Attribute\Data;
- class BooleanTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Eav\Model\Attribute\Data\Boolean
- */
- protected $model;
- protected function setUp()
- {
- $timezoneMock = $this->createMock(\Magento\Framework\Stdlib\DateTime\TimezoneInterface::class);
- $loggerMock = $this->createMock(\Psr\Log\LoggerInterface::class);
- $localeResolverMock = $this->createMock(\Magento\Framework\Locale\ResolverInterface::class);
- $this->model = new \Magento\Eav\Model\Attribute\Data\Boolean($timezoneMock, $loggerMock, $localeResolverMock);
- }
- /**
- * @covers \Magento\Eav\Model\Attribute\Data\Boolean::_getOptionText
- *
- * @param string $format
- * @param mixed $value
- * @param mixed $expectedResult
- * @dataProvider getOptionTextDataProvider
- */
- public function testOutputValue($format, $value, $expectedResult)
- {
- $entityMock = $this->createMock(\Magento\Framework\Model\AbstractModel::class);
- $entityMock->expects($this->once())->method('getData')->will($this->returnValue($value));
- $attributeMock = $this->createMock(\Magento\Eav\Model\Attribute::class);
- $this->model->setEntity($entityMock);
- $this->model->setAttribute($attributeMock);
- $this->assertEquals($expectedResult, $this->model->outputValue($format));
- }
- /**
- * @return array
- */
- public function getOptionTextDataProvider()
- {
- return [
- [
- 'format' => \Magento\Eav\Model\AttributeDataFactory::OUTPUT_FORMAT_TEXT,
- 'value' => '0',
- 'expectedResult' => 'No',
- ],
- [
- 'format' => \Magento\Eav\Model\AttributeDataFactory::OUTPUT_FORMAT_TEXT,
- 'value' => '1',
- 'expectedResult' => 'Yes'
- ],
- [
- 'format' => \Magento\Eav\Model\AttributeDataFactory::OUTPUT_FORMAT_TEXT,
- 'value' => '2',
- 'expectedResult' => ''
- ],
- ];
- }
- }
|