123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\ProductVideo\Test\Unit\Helper;
- use Magento\ProductVideo\Helper\Media;
- class MediaTest extends \PHPUnit\Framework\TestCase
- {
- /** @var \Magento\Framework\App\Config\ScopeConfigInterface|\PHPUnit_Framework_MockObject_MockObject */
- protected $scopeConfigMock;
- /**
- * @var \Magento\ProductVideo\Helper\Media|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $helper;
- /**
- * @var \Magento\Framework\App\Helper\Context|\PHPUnit_Framework_MockObject_MockObject
- */
- protected $contextMock;
- /**
- * Create mock objects
- */
- protected function setUp()
- {
- $this->scopeConfigMock = $this->getMockBuilder(\Magento\Framework\App\Config\ScopeConfigInterface::class)
- ->getMock();
- $this->contextMock = $this->createMock(\Magento\Framework\App\Helper\Context::class);
- $this->contextMock->expects($this->any())->method('getScopeConfig')->willReturn($this->scopeConfigMock);
- $this->helper = new \Magento\ProductVideo\Helper\Media(
- $this->contextMock
- );
- }
- /**
- * Test for method getPlayIfBaseAttribute
- */
- public function testGetPlayIfBaseAttribute()
- {
- $return = 'some_value';
- $this->scopeConfigMock->expects($this->once())->method('getValue')
- ->with(Media::XML_PATH_PLAY_IF_BASE)
- ->will($this->returnValue($return));
- $this->assertEquals(
- $return,
- $this->helper->getPlayIfBaseAttribute()
- );
- }
- /**
- * Test for method getShowRelatedAttribute
- */
- public function testGetShowRelatedAttribute()
- {
- $return = 'some_value';
- $this->scopeConfigMock->expects($this->once())->method('getValue')
- ->with(Media::XML_PATH_SHOW_RELATED)
- ->will($this->returnValue($return));
- $this->assertEquals(
- $return,
- $this->helper->getShowRelatedAttribute()
- );
- }
- /**
- * Test for method getVideoAutoRestartAttribute
- */
- public function testGetVideoAutoRestartAttribute()
- {
- $return = 'some_value';
- $this->scopeConfigMock->expects($this->once())->method('getValue')
- ->with(Media::XML_PATH_VIDEO_AUTO_RESTART)
- ->will($this->returnValue($return));
- $this->assertEquals(
- $return,
- $this->helper->getVideoAutoRestartAttribute()
- );
- }
- /**
- * Test for method getYouTubeApiKey
- */
- public function testGetYouTubeApiKey()
- {
- $return = 'some_value';
- $this->scopeConfigMock->expects($this->once())->method('getValue')
- ->with(Media::XML_PATH_YOUTUBE_API_KEY)
- ->will($this->returnValue($return));
- $this->assertEquals(
- $return,
- $this->helper->getYouTubeApiKey()
- );
- }
- }
|