objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
}
public function testGetStorageRoot()
{
/** @var \Magento\Framework\Filesystem $filesystem */
$filesystem = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
\Magento\Framework\Filesystem::class
);
$mediaPath = $filesystem->getDirectoryRead(DirectoryList::MEDIA)->getAbsolutePath();
/** @var \Magento\Cms\Helper\Wysiwyg\Images $helper */
$helper = $this->objectManager->create(
\Magento\Cms\Helper\Wysiwyg\Images::class
);
$this->assertStringStartsWith($mediaPath, $helper->getStorageRoot());
}
/**
* @magentoConfigFixture current_store web/unsecure/base_url http://example.com/
*/
public function testGetCurrentUrl()
{
/** @var \Magento\Cms\Helper\Wysiwyg\Images $helper */
$helper = $this->objectManager->create(
\Magento\Cms\Helper\Wysiwyg\Images::class
);
$this->assertStringStartsWith('http://example.com/', $helper->getCurrentUrl());
}
/**
* @param bool $isStaticUrlsAllowed
* @param string $filename
* @param bool $renderAsTag
* @param string|callable $expectedResult - string or callable to make unique assertions on $expectedResult
* @magentoConfigFixture current_store web/unsecure/base_url http://example.com/
* @dataProvider providerGetImageHtmlDeclaration
*/
public function testGetImageHtmlDeclaration(
$isStaticUrlsAllowed,
$filename,
$renderAsTag,
$expectedResult
) {
$helper = $this->generateHelper($isStaticUrlsAllowed);
$actualResult = $helper->getImageHtmlDeclaration($filename, $renderAsTag);
if (is_callable($expectedResult)) {
$expectedResult($actualResult);
} else {
$this->assertEquals(
$expectedResult,
$actualResult
);
}
}
/**
* Data provider for testGetImageHtmlDeclaration
*
* @return array
*/
public function providerGetImageHtmlDeclaration()
{
return [
[true, 'wysiwyg/hello.png', true, '
'],
[
false,
'wysiwyg/hello.png',
false,
function ($actualResult) {
$expectedResult = (
'/backend/cms/wysiwyg/directive/___directive/' .
'e3ttZWRpYSB1cmw9Ind5c2l3eWcvaGVsbG8ucG5nIn19/'
);
$this->assertContains($expectedResult, parse_url($actualResult, PHP_URL_PATH));
}
],
[true, 'wysiwyg/hello.png', false, 'http://example.com/pub/media/wysiwyg/hello.png'],
[false, 'wysiwyg/hello.png', true, '
'],
];
}
/**
* Generate instance of Images Helper
*
* @param bool $isStaticUrlsAllowed - mock is created to override value of isUsingStaticUrlsAllowed method in class
* @return \Magento\Cms\Helper\Wysiwyg\Images
* @SuppressWarnings(PHPMD.UnusedLocalVariable)
*/
private function generateHelper($isStaticUrlsAllowed = false)
{
$storeId = 1;
$eventManagerMock = $this->createMock(\Magento\Framework\Event\ManagerInterface::class);
$contextMock = $this->objectManager->create(\Magento\Framework\App\Helper\Context::class, [
'eventManager' => $eventManagerMock,
]);
$helper = $this->objectManager->create(\Magento\Cms\Helper\Wysiwyg\Images::class, [
'context' => $contextMock
]);
$checkResult = new \stdClass();
$checkResult->isAllowed = false;
$eventManagerMock->expects($this->any())
->method('dispatch')
->with('cms_wysiwyg_images_static_urls_allowed', ['result' => $checkResult, 'store_id' => $storeId])
->willReturnCallback(function ($_, $arr) use ($isStaticUrlsAllowed) {
$arr['result']->isAllowed = $isStaticUrlsAllowed;
});
$helper->setStoreId($storeId);
return $helper;
}
}