Beispiel #1
0
 /**
  * @covers Mage_Core_Block_Template::fetchView
  * @covers Mage_Core_Block_Abstract::setLayout
  * @covers Mage_Core_Block_Abstract::getLayout
  * @see testAssign
  */
 public function testFetchView()
 {
     $layout = new Mage_Core_Model_Layout();
     $layout->setDirectOutput(true);
     $this->_block->setLayout($layout);
     $this->assertTrue($this->_block->getDirectOutput());
     $this->assertEmpty($this->_block->fetchView(uniqid('invalid_filename.phtml')));
 }
Beispiel #2
0
 /**
  * @covers Mage_Core_Block_Abstract::insert
  * @see testGetSortedChildren()
  */
 public function testInsert()
 {
     // invalid block from layout
     $blockZero = new Mage_Core_Block_Template();
     $blockZero->setLayout(Mage::app()->getLayout());
     $this->assertInstanceOf('Mage_Core_Block_Abstract', $blockZero->insert(uniqid('block.')));
     // anonymous block
     $blockOne = new Mage_Core_Block_Template();
     $blockOne->setIsAnonymous(true);
     $this->_block->insert($blockOne);
     $this->assertContains('.child0', $this->_block->getSortedChildren());
     // block with alias, to the last position
     $blockTwo = new Mage_Core_Block_Template();
     $blockTwo->setNameInLayout('block.two');
     $this->_block->insert($blockTwo, '', true, 'block_two');
     $this->assertContains('block.two', $this->_block->getSortedChildren());
     $this->assertSame($blockTwo, $this->_block->getChild('block_two'));
     // unknown sibling, to the 1st position
     $blockThree = new Mage_Core_Block_Template();
     $blockThree->setNameInLayout('block.three');
     $this->_block->insert($blockThree, 'wrong_sibling', false, 'block_three');
     $this->assertContains('block.three', $this->_block->getSortedChildren());
     $this->assertSame(0, array_search('block.three', $this->_block->getSortedChildren()));
     $blockFour = new Mage_Core_Block_Template();
     $blockFour->setNameInLayout('block.four');
     $this->_block->insert($blockFour, 'wrong_sibling', true, 'block_four');
     $this->assertContains('block.four', $this->_block->getSortedChildren());
     $this->assertSame(3, array_search('block.four', $this->_block->getSortedChildren()));
 }
 /**
  * @param Mage_Core_Block_Template
  * @param string
  * @return string
  */
 protected function getBlockContent(Mage_Core_Block_Template $block, $template)
 {
     $block->setLayout(Mage::app()->getLayout());
     return $block->setTemplate($template)->toHtml();
 }