Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/framework/Validator/Test/Unit/Entity/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Validator/Test/Unit/Entity/PropertiesTest.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\Validator\Test\Unit\Entity;

use Magento\Framework\DataObject;
use Magento\Framework\Model\AbstractModel;
use Magento\Framework\Validator\Entity\Properties;
use PHPUnit\Framework\TestCase;

/**
 * Test for \Magento\Framework\Validator\Entity\Properties
 */
class PropertiesTest extends TestCase
{
    /**
     * @var DataObject
     */
    protected $_object;

    protected function setUp(): void
    {
        $this->_object = $this->createPartialMock(
            AbstractModel::class,
            ['hasDataChanges', 'getData', 'getOrigData']
        );
    }

    protected function tearDown(): void
    {
        unset($this->_object);
    }

    /**
     * Testing \Magento\Framework\Validator\Entity\Properties::isValid on invalid argument passed
     */
    public function testIsValidException()
    {
        $this->expectException('InvalidArgumentException');
        $this->expectExceptionMessage('Instance of \Magento\Framework\Model\AbstractModel is expected.');
        $validator = new Properties();
        $validator->isValid([]);
    }

    /**
     * Testing \Magento\Framework\Validator\Entity\Properties::isValid with hasDataChanges and invoked setter
     */
    public function testIsValidSuccessWithInvokedSetter()
    {
        $this->_object->expects($this->once())->method('hasDataChanges')->willReturn(true);
        $this->_object->expects($this->once())->method('getData')->with('attr1')->willReturn(1);
        $this->_object->expects($this->once())->method('getOrigData')->with('attr1')->willReturn(1);

        $validator = new Properties();
        $validator->setReadOnlyProperties(['attr1']);
        $this->assertTrue($validator->isValid($this->_object));
    }

    /**
     * Testing \Magento\Framework\Validator\Entity\Properties::isValid without invoked setter
     */
    public function testIsValidSuccessWithoutInvokedSetter()
    {
        $validator = new Properties();
        $this->assertTrue($validator->isValid($this->_object));
    }

    /**
     * Testing \Magento\Framework\Validator\Entity\Properties::isValid with unchanged data
     */
    public function testIsValidSuccessWithoutHasDataChanges()
    {
        $this->_object->expects($this->once())->method('hasDataChanges')->willReturn(false);
        $validator = new Properties();
        $validator->setReadOnlyProperties(['attr1']);
        $this->assertTrue($validator->isValid($this->_object));
    }

    /**
     * Testing \Magento\Framework\Validator\Entity\Properties::isValid with changed data and invoked setter
     */
    public function testIsValidFailed()
    {
        $this->_object->expects($this->once())->method('hasDataChanges')->willReturn(true);
        $this->_object->expects($this->once())->method('getData')->with('attr1')->willReturn(1);
        $this->_object->expects($this->once())->method('getOrigData')->with('attr1')->willReturn(2);

        $validator = new Properties();
        $validator->setReadOnlyProperties(['attr1']);
        $this->assertFalse($validator->isValid($this->_object));
    }
}