ValueCheckerTest.php 3.55 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Theme\Test\Unit\Model\Design\Config;

use Magento\Theme\Model\Design\Config\ValueChecker;

class ValueCheckerTest extends \PHPUnit\Framework\TestCase
{
    /** @var \Magento\Framework\App\ScopeFallbackResolverInterface|\PHPUnit_Framework_MockObject_MockObject */
    protected $fallbackResolver;

    /** @var \Magento\Framework\App\Config|\PHPUnit_Framework_MockObject_MockObject */
    protected $appConfig;

    /** @var ValueChecker */
    protected $valueChecker;

    /** @var \Magento\Theme\Model\Design\Config\ValueProcessor|\PHPUnit_Framework_MockObject_MockObject */
    protected $valueProcessor;

    public function setUp()
    {
        $this->fallbackResolver = $this->getMockForAbstractClass(
            \Magento\Framework\App\ScopeFallbackResolverInterface::class,
            [],
            '',
            false
        );
        $this->appConfig = $this->createMock(\Magento\Framework\App\Config::class);
        $this->valueProcessor = $this->getMockBuilder(\Magento\Theme\Model\Design\Config\ValueProcessor::class)
            ->disableOriginalConstructor()
            ->getMock();

        $this->valueChecker  = new ValueChecker(
            $this->fallbackResolver,
            $this->appConfig,
            $this->valueProcessor
        );
    }

    public function testIsDifferentFromDefault()
    {
        $this->fallbackResolver->expects($this->once())
            ->method('getFallbackScope')
            ->with('default', 0)
            ->willReturn([null, null]);

        $this->assertTrue(
            $this->valueChecker->isDifferentFromDefault(
                'value',
                'default',
                0,
                ['path' => 'design/head/default_title']
            )
        );
    }

    public function testIsDifferentFromDefaultWithWebsiteScope()
    {
        $this->fallbackResolver->expects($this->once())
            ->method('getFallbackScope')
            ->with('website', 1)
            ->willReturn(['default', 0]);
        $this->appConfig->expects($this->once())
            ->method('getValue')
            ->with('design/head/default_title', 'default', 0)
            ->willReturn('');
        $this->valueProcessor->expects($this->atLeastOnce())
            ->method('process')
            ->willReturnArgument(0);

        $this->assertTrue(
            $this->valueChecker->isDifferentFromDefault(
                'value',
                'website',
                1,
                ['path' => 'design/head/default_title']
            )
        );
    }

    public function testIsDifferentFromDefaultWithArrays()
    {
        $path = 'design/head/default_title';
        $this->fallbackResolver->expects($this->once())
            ->method('getFallbackScope')
            ->with('website', 1)
            ->willReturn(['default', 0]);
        $this->appConfig
            ->expects($this->once())
            ->method('getValue')
            ->with($path, 'default', 0)
            ->willReturn([
                [
                    'qwe' => 123
                ],
            ]);
        $this->valueProcessor->expects($this->atLeastOnce())
            ->method('process')
            ->willReturnArgument(0);
        $this->assertTrue(
            $this->valueChecker->isDifferentFromDefault(
                [
                    [
                        'sdf' => 1
                    ],

                ],
                'website',
                1,
                ['path' => $path]
            )
        );
    }
}