Components = new ComponentCollection(); } /** * teardown * * @return void */ function teardown() { unset($this->Components); } /** * test triggering callbacks on loaded helpers * * @return void */ function testLoad() { $result = $this->Components->load('Cookie'); $this->assertInstanceOf('CookieComponent', $result); $this->assertInstanceOf('CookieComponent', $this->Components->Cookie); $result = $this->Components->attached(); $this->assertEquals(array('Cookie'), $result, 'attached() results are wrong.'); $this->assertTrue($this->Components->enabled('Cookie')); $result = $this->Components->load('Cookie'); $this->assertSame($result, $this->Components->Cookie); } /** * Tests loading as an alias * * @return void */ function testLoadWithAlias() { $result = $this->Components->load('Cookie', array('className' => 'CookieAlias', 'somesetting' => true)); $this->assertInstanceOf('CookieAliasComponent', $result); $this->assertInstanceOf('CookieAliasComponent', $this->Components->Cookie); $this->assertTrue($this->Components->Cookie->settings['somesetting']); $result = $this->Components->attached(); $this->assertEquals(array('Cookie'), $result, 'attached() results are wrong.'); $this->assertTrue($this->Components->enabled('Cookie')); $result = $this->Components->load('Cookie'); $this->assertInstanceOf('CookieAliasComponent', $result); App::build(array('plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS))); $result = $this->Components->load('SomeOther', array('className' => 'TestPlugin.OtherComponent')); $this->assertInstanceOf('OtherComponentComponent', $result); $this->assertInstanceOf('OtherComponentComponent', $this->Components->SomeOther); $result = $this->Components->attached(); $this->assertEquals(array('Cookie', 'SomeOther'), $result, 'attached() results are wrong.'); App::build(); } /** * test load and enable = false * * @return void */ function testLoadWithEnableFalse() { $result = $this->Components->load('Cookie', array('enabled' => false)); $this->assertInstanceOf('CookieComponent', $result); $this->assertInstanceOf('CookieComponent', $this->Components->Cookie); $this->assertFalse($this->Components->enabled('Cookie'), 'Cookie should be disabled'); } /** * test missingcomponent exception * * @expectedException MissingComponentFileException * @return void */ function testLoadMissingComponentFile() { $this->Components->load('ThisComponentShouldAlwaysBeMissing'); } /** * test loading a plugin component. * * @return void */ function testLoadPluginComponent() { App::build(array( 'plugins' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'plugins' . DS), )); $result = $this->Components->load('TestPlugin.OtherComponent'); $this->assertInstanceOf('OtherComponentComponent', $result, 'Component class is wrong.'); $this->assertInstanceOf('OtherComponentComponent', $this->Components->OtherComponent, 'Class is wrong'); App::build(); } /** * test unload() * * @return void */ function testUnload() { $this->Components->load('Cookie'); $this->Components->load('Security'); $result = $this->Components->attached(); $this->assertEquals(array('Cookie', 'Security'), $result, 'loaded components is wrong'); $this->Components->unload('Cookie'); $this->assertFalse(isset($this->Components->Cookie)); $this->assertTrue(isset($this->Components->Security)); $result = $this->Components->attached(); $this->assertEquals(array('Security'), $result, 'loaded components is wrong'); $result = $this->Components->enabled(); $this->assertEquals(array('Security'), $result, 'enabled components is wrong'); } /** * test getting the controller out of the collection * * @return void */ function testGetController() { $controller = $this->getMock('Controller'); $controller->components = array('Security'); $this->Components->init($controller); $result = $this->Components->getController(); $this->assertSame($controller, $result); } }