View = $this->getMock('View', array(), array(null)); $this->Helpers = new HelperCollection($this->View); } /** * teardown * * @return void */ function teardown() { unset($this->Helpers, $this->View); } /** * test triggering callbacks on loaded helpers * * @return void */ function testLoad() { $result = $this->Helpers->load('Html'); $this->assertType('HtmlHelper', $result); $this->assertType('HtmlHelper', $this->Helpers->Html); $result = $this->Helpers->attached(); $this->assertEquals(array('Html'), $result, 'attached() results are wrong.'); $this->assertTrue($this->Helpers->enabled('Html')); } /** * test that the enabled setting disables the helper. * * @return void */ function testLoadWithEnabledFalse() { $result = $this->Helpers->load('Html', array('enabled' => false)); $this->assertType('HtmlHelper', $result); $this->assertType('HtmlHelper', $this->Helpers->Html); $this->assertFalse($this->Helpers->enabled('Html'), 'Html should be disabled'); } /** * test missinghelper exception * * @expectedException MissingHelperClassException * @return void */ function testLoadMissingHelperFile() { $result = $this->Helpers->load('ThisHelperShouldAlwaysBeMissing'); } /** * test loading a plugin helper. * * @return void */ function testLoadPluginHelper() { App::build(array( 'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS), )); $result = $this->Helpers->load('TestPlugin.OtherHelper'); $this->assertType('OtherHelperHelper', $result, 'Helper class is wrong.'); $this->assertType('OtherHelperHelper', $this->Helpers->OtherHelper, 'Class is wrong'); App::build(); } /** * test unload() * * @return void */ function testUnload() { $this->Helpers->load('Form'); $this->Helpers->load('Html'); $result = $this->Helpers->attached(); $this->assertEquals(array('Form', 'Html'), $result, 'loaded helpers is wrong'); $this->Helpers->unload('Html'); $this->assertFalse(isset($this->Helpers->Html)); $this->assertTrue(isset($this->Helpers->Form)); $result = $this->Helpers->attached(); $this->assertEquals(array('Form'), $result, 'loaded helpers is wrong'); } }