* Copyright (c) 2006, Larry E. Masters Shorewood, IL. 60431 * Author(s): Larry E. Masters aka PhpNut * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. * * @filesource * @author Larry E. Masters aka PhpNut * @copyright Copyright (c) 2006, Larry E. Masters Shorewood, IL. 60431 * @link http://www.phpnut.com/projects/ * @package test_suite * @subpackage test_suite.cases.app * @since CakePHP Test Suite v 1.0.0.0 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */ require_once LIBS.'../app_helper.php'; require_once LIBS.'class_registry.php'; require_once LIBS.DS.'view'.DS.'view.php'; require_once LIBS.DS.'view'.DS.'helper.php'; require_once LIBS.DS.'view'.DS.'helpers'.DS.'html.php'; require_once LIBS.DS.'controller'.DS.'controller.php'; class TheHtmlTestController extends Controller { var $name = 'TheTest'; var $uses = null; } class HtmlHelperTest extends UnitTestCase { var $html = null; function setUp() { $this->Html =& new HtmlHelper(); $view =& new View(new TheHtmlTestController()); ClassRegistry::addObject('view', $view); } function testLinkEscape() { $result = $this->Html->link('Next >', '#'); $expected = '/^Next ><\/a>$/'; $this->assertPattern($expected, $result); $result = $this->Html->link('Next >', '#', array('escape' => false)); $expected = '/^Next ><\/a>$/'; $this->assertPattern($expected, $result); } function testImageLink() { $result = $this->Html->link($this->Html->image('test.gif'), '#', array(), false, false, false); $expected = '/^<\/a>$/'; $this->assertPattern($expected, $result); } function testStyle() { $result = $this->Html->style(array('display'=> 'none', 'margin'=>'10px')); $expected = 'style="display:none; margin:10px;"'; $this->assertEqual($expected, $result); $result = $this->Html->style(array('display'=> 'none', 'margin'=>'10px'), false); $expected = "display:none;\nmargin:10px;"; $this->assertEqual($expected, $result); } function tearDown() { unset($this->Html); } } ?>