123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\GoogleAnalytics\Block;
- use Magento\TestFramework\TestCase\AbstractController;
- class GaTest extends AbstractController
- {
- /**
- * Layout instance
- *
- * @var \Magento\Framework\View\LayoutInterface
- */
- private $layout;
- /**
- * @inheritdoc
- */
- protected function setUp()
- {
- parent::setUp();
- $this->dispatch('/');
- $this->layout = $this->_objectManager->get(\Magento\Framework\View\LayoutInterface::class);
- }
- /**
- * Check for correct position of GA block
- */
- public function testBlockPresentInHead()
- {
- $this->assertNotNull(
- $this->getGaBlockFromNode('head.additional')
- );
- }
- /**
- * Test that block has been successfully moved
- * from body to head tag.
- */
- public function testBlockIsAbsentInBody()
- {
- $this->assertFalse(
- $this->getGaBlockFromNode('after.body.start')
- );
- }
- /**
- * Test null output when GA is disabled
- *
- * @magentoAppArea frontend
- * @magentoConfigFixture current_store google/analytics/active 0
- * @magentoConfigFixture current_store google/analytics/account XXXXXXX
- */
- public function testBlockOutputIsEmptyWhenGaIsDisabled()
- {
- $this->assertEquals(
- "",
- $this->getGaBlockFromNode('head.additional')->toHtml()
- );
- }
- /**
- * Check, that block successfully gets rendered when configuration is
- * active.
- *
- * @magentoAppArea frontend
- * @magentoConfigFixture current_store google/analytics/active 1
- * @magentoConfigFixture current_store google/analytics/account XXXXXXX
- */
- public function testBlockOutputExistsWhenGaIsEnabled()
- {
- $this->assertNotEquals(
- "",
- $this->getGaBlockFromNode('head.additional')->toHtml()
- );
- }
- /**
- * Get GA block
- *
- * @param string $nodeName
- * @return \Magento\Framework\View\Element\AbstractBlock|false
- */
- private function getGaBlockFromNode($nodeName = 'head.additional')
- {
- $childBlocks = $this->layout->getChildBlocks($nodeName);
- foreach ($childBlocks as $block) {
- if (strpos($block->getNameInLayout(), 'google_analytics') !== false) {
- return $block;
- }
- }
- return false;
- }
- }
|