123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Element;
- use Magento\Framework\View\Element\AbstractBlock;
- /**
- * @magentoAppIsolation enabled
- */
- class AbstractBlockTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\View\Element\AbstractBlock
- */
- protected $_block;
- /**
- * @var \Magento\Framework\View\LayoutInterface
- */
- protected $_layout = null;
- protected static $_mocks = [];
- protected function setUp()
- {
- \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(\Magento\Framework\App\State::class)
- ->setAreaCode('frontend');
- \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\DesignInterface::class
- )->setDefaultDesignTheme();
- $this->_block = $this->getMockForAbstractClass(
- \Magento\Framework\View\Element\AbstractBlock::class,
- [
- \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\Element\Context::class
- ),
- ['module_name' => 'Magento_Theme']
- ]
- );
- }
- /**
- * Checks, that not existing image in CSS not affected own publication
- *
- * @magentoAppIsolation enabled
- */
- public function testCssWithWrongImage()
- {
- $cssUrl = $this->_block->getViewFileUrl(
- 'css/wrong.css',
- ['area' => 'frontend', 'theme' => 'Magento/luma', 'locale' => 'en_US']
- );
- $this->assertStringMatchesFormat('%s/css/wrong.css', $cssUrl);
- }
- public function testGetRequest()
- {
- $this->assertInstanceOf(\Magento\Framework\App\RequestInterface::class, $this->_block->getRequest());
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testGetParentBlock()
- {
- // Without layout
- $this->assertFalse($this->_block->getParentBlock());
- // Need to create blocks through layout
- $parentBlock = $this->_createBlockWithLayout('block1', 'block1', \Magento\Framework\View\Element\Text::class);
- $childBlock = $this->_createBlockWithLayout('block2', 'block2');
- $this->assertEmpty($childBlock->getParentBlock());
- $parentBlock->setChild('block2', $childBlock);
- $this->assertSame($parentBlock, $childBlock->getParentBlock());
- }
- /**
- * @covers \Magento\Framework\View\Element\AbstractBlock::addChild
- */
- public function testAddChild()
- {
- $parentBlock = $this->_createBlockWithLayout(
- 'testAddChild',
- 'testAddChild',
- \Magento\Framework\View\Element\Text::class
- );
- $child = $parentBlock->addChild(
- 'testAddChildAlias',
- \Magento\Framework\View\Element\Text::class,
- ['content' => 'content']
- );
- $this->assertInstanceOf(\Magento\Framework\View\Element\Text::class, $child);
- $this->assertEquals('testAddChild.testAddChildAlias', $child->getNameInLayout());
- $this->assertEquals($child, $parentBlock->getChildBlock('testAddChildAlias'));
- $this->assertEquals('content', $child->getContent());
- }
- public function testSetGetNameInLayout()
- {
- // Basic setting/getting
- $this->assertEmpty($this->_block->getNameInLayout());
- $name = uniqid('name');
- $this->_block->setNameInLayout($name);
- $this->assertEquals($name, $this->_block->getNameInLayout());
- // Setting second time, along with the layout
- $layout = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\LayoutInterface::class
- );
- $layout->createBlock(\Magento\Framework\View\Element\Template::class, $name);
- $block = $layout->getBlock($name);
- $this->assertInstanceOf(\Magento\Framework\View\Element\AbstractBlock::class, $block);
- $block->setNameInLayout($name);
- $this->assertInstanceOf(\Magento\Framework\View\Element\AbstractBlock::class, $layout->getBlock($name));
- $this->assertEquals($name, $block->getNameInLayout());
- $this->assertTrue($layout->hasElement($name));
- $newName = 'new_name';
- $block->setNameInLayout($newName);
- $this->assertTrue($layout->hasElement($newName));
- $this->assertFalse($layout->hasElement($name));
- }
- /**
- * @magentoAppIsolation enabled
- * @covers \Magento\Framework\View\Element\AbstractBlock::getChildNames
- * @covers \Magento\Framework\View\Element\AbstractBlock::insert
- */
- public function testGetChildNames()
- {
- // Without layout
- $this->assertEquals([], $this->_block->getChildNames());
- // With layout
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $block1 = $this->_createBlockWithLayout('block1');
- $block2 = $this->_createBlockWithLayout('block2');
- $block3 = $this->_createBlockWithLayout('block3');
- $block4 = $this->_createBlockWithLayout('block4');
- $parent->insert($block1);
- // add one block
- $parent->insert($block2, 'block1', false);
- // add second to the 1st position
- $parent->insert($block3, 'block1', false);
- // add third to the 2nd position
- $parent->insert($block4, 'block3', true);
- // add fourth block to the 3rd position
- $this->assertEquals(['block2', 'block3', 'block4', 'block1'], $parent->getChildNames());
- }
- public function testSetAttribute()
- {
- $this->assertEmpty($this->_block->getSomeValue());
- $this->_block->setAttribute('some_value', 'value');
- $this->assertEquals('value', $this->_block->getSomeValue());
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testSetGetUnsetChild()
- {
- // With layout
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- // Regular block
- $nameOne = uniqid('block.');
- $blockOne = $this->_createBlockWithLayout($nameOne, $nameOne);
- $parent->setChild('block1', $blockOne);
- $this->assertSame($blockOne, $parent->getChildBlock('block1'));
- // Block factory name
- $blockTwo = $this->_createBlockWithLayout('parent_block2', 'parent_block2');
- $blockTwo->setChild('block2', $nameOne);
- $this->assertSame($blockOne, $blockTwo->getChildBlock('block2'));
- // No name block
- $blockThree = $this->_createBlockWithLayout('');
- $parent->setChild('block3', $blockThree);
- $this->assertSame($blockThree, $parent->getChildBlock('block3'));
- // Unset
- $parent->unsetChild('block3');
- $this->assertNotSame($blockThree, $parent->getChildBlock('block3'));
- $parent->insert($blockOne, '', true, 'block1');
- $this->assertContains($nameOne, $parent->getChildNames());
- $parent->unsetChild('block1');
- $this->assertNotSame($blockOne, $parent->getChildBlock('block1'));
- $this->assertNotContains($nameOne, $parent->getChildNames());
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testUnsetCallChild()
- {
- $blockParent = $this->_createBlockWithLayout('parent', 'parent');
- $block = $this->_createBlockWithLayout('block1', 'block1');
- $block->setSomeValue(true);
- $blockParent->setChild('block1', $block);
- $this->assertSame($block, $blockParent->getChildBlock('block1'));
- $blockParent->unsetCallChild('block1', 'getSomeValue', true, []);
- $this->assertNotSame($block, $blockParent->getChildBlock('block1'));
- }
- /**
- * @magentoAppIsolation enabled
- * @covers \Magento\Framework\View\Element\AbstractBlock::unsetChildren
- * @covers \Magento\Framework\View\Element\AbstractBlock::getChildBlock
- */
- public function testUnsetChildren()
- {
- $parent = $this->_createBlockWithLayout('block', 'block');
- $this->assertEquals([], $parent->getChildNames());
- $blockOne = $this->_createBlockWithLayout('block1', 'block1');
- $blockTwo = $this->_createBlockWithLayout('block2', 'block2');
- $parent->setChild('block1', $blockOne);
- $parent->setChild('block2', $blockTwo);
- $this->assertSame($blockOne, $parent->getChildBlock('block1'));
- $this->assertSame($blockTwo, $parent->getChildBlock('block2'));
- $parent->unsetChildren();
- $this->assertEquals([], $parent->getChildNames());
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testGetChildBlock()
- {
- $childAlias = 'child_alias';
- $childName = 'child';
- $parentName = 'parent';
- // Without layout
- $this->assertFalse($this->_block->getChildBlock($childAlias));
- // With layout
- /** @var $layout \Magento\Framework\View\Layout */
- $layout = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\LayoutInterface::class
- );
- $child = $layout->createBlock(\Magento\Framework\View\Element\Text::class, $childName);
- $layout->addBlock($this->_block, $parentName);
- $this->_block->setChild($childAlias, $child);
- $result = $this->_block->getChildBlock($childAlias);
- $this->assertInstanceOf(\Magento\Framework\View\Element\Text::class, $result);
- $this->assertEquals($childName, $result->getNameInLayout());
- $this->assertEquals($child, $result);
- }
- /**
- * @magentoAppIsolation enabled
- * @covers \Magento\Framework\View\Element\AbstractBlock::getChildHtml
- * @covers \Magento\Framework\View\Element\AbstractBlock::getChildChildHtml
- */
- public function testGetChildHtml()
- {
- // Without layout
- $this->assertEmpty($this->_block->getChildHtml());
- $this->assertEmpty($this->_block->getChildHtml('block'));
- // With layout
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $blockOne = $this->_createBlockWithLayout('block1', 'block1', \Magento\Framework\View\Element\Text::class);
- $blockTwo = $this->_createBlockWithLayout('block2', 'block2', \Magento\Framework\View\Element\Text::class);
- $blockOne->setText('one');
- $blockTwo->setText('two');
- $parent->insert($blockTwo, '-', false, 'block2');
- // make block2 1st
- $parent->insert($blockOne, '-', false, 'block1');
- // make block1 1st
- $this->assertEquals('one', $parent->getChildHtml('block1'));
- $this->assertEquals('two', $parent->getChildHtml('block2'));
- // GetChildChildHtml
- $blockTwo->setChild('block11', $blockOne);
- $this->assertEquals('one', $parent->getChildChildHtml('block2'));
- $this->assertEquals('', $parent->getChildChildHtml(''));
- $this->assertEquals('', $parent->getChildChildHtml('block3'));
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testGetChildChildHtml()
- {
- // Without layout
- $this->assertEmpty($this->_block->getChildChildHtml('alias'));
- // With layout
- $parent1 = $this->_createBlockWithLayout('parent1', 'parent1');
- $parent2 = $this->_createBlockWithLayout('parent2', 'parent2');
- $block1 = $this->_createBlockWithLayout('block1', 'block1', \Magento\Framework\View\Element\Text::class);
- $block2 = $this->_createBlockWithLayout('block2', 'block2', \Magento\Framework\View\Element\Text::class);
- $block3 = $this->_createBlockWithLayout('block3', 'block3', \Magento\Framework\View\Element\Text::class);
- $block4 = $this->_createBlockWithLayout('block4', 'block4', \Magento\Framework\View\Element\Text::class);
- $block1->setText('one');
- $block2->setText('two');
- $block3->setText('three');
- $block4->setText('four');
- $parent1->insert($parent2);
- $parent2->insert($block1, '-', false, 'block1');
- $parent2->insert($block2, '-', false, 'block2');
- $parent2->insert($block3, '-', true, 'block3');
- $parent1->insert($block4);
- $this->assertEquals('twoonethree', $parent1->getChildChildHtml('parent2'));
- }
- public function testGetBlockHtml()
- {
- // Without layout
- /** @var $blockFactory \Magento\Framework\View\Element\BlockFactory */
- $blockFactory = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\Element\BlockFactory::class
- );
- $block1 = $blockFactory->createBlock(\Magento\Framework\View\Element\Text::class);
- $block1->setText('Block text');
- $block1->setNameInLayout('block');
- $html = $this->_block->getBlockHtml('block');
- $this->assertInternalType('string', $html);
- $this->assertEmpty($html);
- // With layout
- $expected = 'Block2';
- $block2 = $this->_createBlockWithLayout('block2', 'block2', \Magento\Framework\View\Element\Text::class);
- $block3 = $this->_createBlockWithLayout('block3', 'block3');
- $block2->setText($expected);
- $html = $block3->getBlockHtml('block2');
- $this->assertInternalType('string', $html);
- $this->assertEquals($expected, $html);
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testInsertBlockWithoutName()
- {
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $block = $this->_createBlockWithLayout('');
- $parent->setChild('', $block);
- $this->assertContains('abstractblockmock_0', $parent->getChildNames());
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testInsertBlockWithAlias()
- {
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $block = $this->_createBlockWithLayout('block_name');
- $parent->insert($block, '', true, 'block_alias');
- $this->assertContains('block_name', $parent->getChildNames());
- $this->assertSame($block, $parent->getChildBlock('block_alias'));
- }
- public function testInsertWithSibling()
- {
- $name1 = 'block_one';
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $blockOne = $this->_createBlockWithLayout($name1);
- $parent->insert($blockOne);
- $this->assertContains($name1, $parent->getChildNames());
- $name2 = 'block_two';
- $blockTwo = $this->_createBlockWithLayout($name2);
- $parent->insert($blockTwo, 'wrong_sibling', false);
- $this->assertSame(1, array_search($name2, $parent->getChildNames()));
- $name3 = 'block_three';
- $blockThree = $this->_createBlockWithLayout($name3);
- $parent->insert($blockThree, $name2, false);
- $this->assertSame(1, array_search($name3, $parent->getChildNames()));
- $name4 = 'block_four';
- $blockFour = $this->_createBlockWithLayout($name4);
- $parent->insert($blockFour, $name1, true);
- $this->assertSame(1, array_search($name4, $parent->getChildNames()));
- }
- /**
- * @magentoAppIsolation enabled
- * @expectedException \OutOfBoundsException
- */
- public function testInsertWithoutCreateBlock()
- {
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $parent->insert('block');
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testInsertContainer()
- {
- $parentName = 'parent';
- $name = 'container';
- $parent = $this->_createBlockWithLayout($parentName, $parentName);
- $layout = $parent->getLayout();
- $this->assertEmpty($layout->getChildNames($parentName));
- $layout->addContainer($name, 'Container');
- $parent->insert($name);
- $this->assertEquals([$name], $layout->getChildNames($parentName));
- }
- /**
- * @magentoAppIsolation enabled
- */
- public function testAppend()
- {
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $child1 = $this->_createBlockWithLayout('child1');
- $parent->append($child1, 'child1');
- $child2 = $this->_createBlockWithLayout('child2');
- $parent->append($child2);
- $this->assertEquals(['child1', 'child2'], $parent->getChildNames());
- }
- /**
- * @magentoAppIsolation enabled
- * @covers \Magento\Framework\View\Element\AbstractBlock::getGroupChildNames
- * @covers \Magento\Framework\View\Layout::addToParentGroup
- */
- public function testAddToParentGroup()
- {
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $block1 = $this->_createBlockWithLayout('block1', 'block1');
- $block2 = $this->_createBlockWithLayout('block2', 'block2');
- $parent->setChild('block1', $block1)->setChild('block2', $block2);
- $this->_layout->addToParentGroup('block1', 'group');
- $this->_layout->addToParentGroup('block2', 'group');
- $group = $parent->getGroupChildNames('group');
- $this->assertContains('block1', $group);
- $this->assertContains('block2', $group);
- $this->assertSame($group[0], 'block1');
- $this->assertSame($group[1], 'block2');
- }
- public function testGetChildData()
- {
- $parent = $this->_createBlockWithLayout('parent', 'parent');
- $block = $this->_createBlockWithLayout('block', 'block');
- $block->setSomeProperty('some_value');
- $parent->setChild('block1', $block);
- // all child data
- $actualChildData = $parent->getChildData('block1');
- $this->assertArrayHasKey('some_property', $actualChildData);
- $this->assertEquals('some_value', $actualChildData['some_property']);
- // specific child data key
- $this->assertEquals('some_value', $parent->getChildData('block1', 'some_property'));
- // non-existing child block
- $this->assertNull($parent->getChildData('unknown_block'));
- }
- public function testGetUrl()
- {
- $base = 'http://localhost/index.php/';
- $withRoute = "{$base}catalog/product/view/id/10/";
- $this->assertEquals($base, $this->_block->getUrl());
- $this->assertEquals($withRoute, $this->_block->getUrl('catalog/product/view', ['id' => 10]));
- }
- public function testGetViewFileUrl()
- {
- $actualResult = $this->_block->getViewFileUrl('css/styles.css');
- $this->assertStringMatchesFormat(
- 'http://localhost/pub/static/%s/frontend/%s/en_US/css/styles.css',
- $actualResult
- );
- }
- public function testGetModuleName()
- {
- $this->assertEquals('Magento_Theme', $this->_block->getModuleName());
- $this->assertEquals('Magento_Theme', $this->_block->getData('module_name'));
- }
- /**
- * @dataProvider escapeHtmlDataProvider
- */
- public function testEscapeHtml($data, $expected)
- {
- $actual = $this->_block->escapeHtml($data);
- $this->assertEquals($expected, $actual);
- }
- /**
- * @return array
- */
- public function escapeHtmlDataProvider()
- {
- return [
- 'array data' => [
- 'data' => ['one', '<two>three</two>'],
- 'expected' => ['one', '<two>three</two>'],
- ],
- 'string data conversion' => [
- 'data' => '<two>three</two>',
- 'expected' => '<two>three</two>',
- ],
- 'string data no conversion' => ['data' => 'one', 'expected' => 'one']
- ];
- }
- public function testStripTags()
- {
- $str = '<p>text</p>';
- $this->assertEquals('text', $this->_block->stripTags($str));
- }
- public function testEscapeUrl()
- {
- $url = 'http://example.com/?wsdl=1';
- $this->assertEquals($url, $this->_block->escapeUrl($url));
- }
- public function testEscapeJsQuote()
- {
- $script = "var s = 'text';";
- $this->assertEquals('var s = \\\'text\\\';', $this->_block->escapeJsQuote($script));
- }
- public function testGetCacheKeyInfo()
- {
- $name = uniqid('block.');
- $block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\LayoutInterface::class
- )->createBlock(
- \Magento\Framework\View\Element\Text::class
- );
- $block->setNameInLayout($name);
- $this->assertEquals([$name], $block->getCacheKeyInfo());
- }
- public function testGetCacheKey()
- {
- $name = uniqid('block.');
- $block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\LayoutInterface::class
- )->createBlock(
- \Magento\Framework\View\Element\Text::class
- );
- $block->setNameInLayout($name);
- $key = $block->getCacheKey();
- $this->assertNotEmpty($key);
- $this->assertNotEquals('key', $key);
- $this->assertNotEquals($name, $key);
- $block->setCacheKey('key');
- $this->assertEquals(AbstractBlock::CACHE_KEY_PREFIX . 'key', $block->getCacheKey());
- }
- /**
- * Create <N> sample blocks
- *
- * @param int $qty
- * @param bool $withLayout
- * @param string $className
- * @return array
- */
- protected function _createSampleBlocks(
- $qty,
- $withLayout = true,
- $className = \Magento\Framework\View\Element\Template::class
- ) {
- $blocks = [];
- $names = [];
- $layout = false;
- if ($withLayout) {
- $layout = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\LayoutInterface::class
- );
- }
- for ($i = 0; $i < $qty; $i++) {
- $name = uniqid('block.');
- if ($layout) {
- $block = $layout->createBlock($className, $name);
- } else {
- $block = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create($className);
- $block->setNameInLayout($name);
- }
- $blocks[] = $block;
- $names[] = $name;
- }
- return [$blocks, $names];
- }
- /**
- * Create Block with Layout
- *
- * @param string $name
- * @param null|string $alias
- * @param null|string $type
- * @return \Magento\Framework\View\Element\AbstractBlock
- */
- protected function _createBlockWithLayout(
- $name = 'block',
- $alias = null,
- $type = \Magento\Framework\View\Element\AbstractBlock::class
- ) {
- $typePart = explode('\\', $type);
- $mockClass = array_pop($typePart) . 'Mock';
- if (!isset(self::$_mocks[$mockClass])) {
- self::$_mocks[$mockClass] = $this->getMockForAbstractClass(
- $type,
- [
- \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\Element\Context::class
- ),
- ['module_name' => 'Magento_Theme']
- ],
- $mockClass
- );
- }
- if ($this->_layout === null) {
- $this->_layout = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->get(
- \Magento\Framework\View\LayoutInterface::class
- );
- }
- $block = $this->_layout->addBlock($mockClass, $name, '', $alias);
- return $block;
- }
- }
|