From 3666643b84c8650643b867830ad8b0381baf705b Mon Sep 17 00:00:00 2001 From: mark_story Date: Sun, 4 Jul 2010 14:00:23 -0400 Subject: [PATCH] Adding ComponentCollection and a test case. --- cake/libs/controller/component_collection.php | 71 +++++++ .../controller/component_collection.test.php | 188 ++++++++++++++++++ 2 files changed, 259 insertions(+) create mode 100644 cake/libs/controller/component_collection.php create mode 100644 cake/tests/cases/libs/controller/component_collection.test.php diff --git a/cake/libs/controller/component_collection.php b/cake/libs/controller/component_collection.php new file mode 100644 index 00000000000..97228a8f26f --- /dev/null +++ b/cake/libs/controller/component_collection.php @@ -0,0 +1,71 @@ +_loaded[$name])) { + return $this->_loaded[$name]; + } + $componentClass = $name . 'Component'; + if (!class_exists($componentClass)) { + if (!App::import('Component', $component)) { + throw new MissingComponentFileException(Inflector::underscore($component) . '.php'); + } + if (!class_exists($componentClass)) { + throw new MissingComponentFileException($component); + } + } + $this->_loaded[$name] = new $componentClass($this, $settings); + if ($enable === true) { + $this->_enabled[] = $name; + } + return $this->_loaded[$name]; + } + +/** + * Name of the component to remove from the collection + * + * @param string $name Name of component to delete. + * @return void + */ + public function unload($name) { + list($plugin, $name) = pluginSplit($name); + unset($this->_loaded[$name]); + $this->_enabled = array_values(array_diff($this->_enabled, (array)$name)); + } + +} +/** + * Exceptions used by the ComponentCollection. + */ +class MissingComponentFileException extends RuntimeException { } + +class MissingComponentClassException extends RuntimeException { } \ No newline at end of file diff --git a/cake/tests/cases/libs/controller/component_collection.test.php b/cake/tests/cases/libs/controller/component_collection.test.php new file mode 100644 index 00000000000..3f91cdfcdd3 --- /dev/null +++ b/cake/tests/cases/libs/controller/component_collection.test.php @@ -0,0 +1,188 @@ +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->assertType('CookieComponent', $result); + $this->assertType('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); + } + +/** + * test load and enable = false + * + * @return void + */ + function testLoadWithEnableFalse() { + $result = $this->Components->load('Cookie', array(), false); + $this->assertType('CookieComponent', $result); + $this->assertType('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->assertType('OtherComponentComponent', $result, 'Component class is wrong.'); + $this->assertType('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 triggering callbacks. + * + * @return void + */ + function testTrigger() { + $controller = null; + if (!class_exists('TriggerMockCookieComponent')) { + $this->getMock('CookieComponent', array(), array(), 'TriggerMockCookieComponent'); + $this->getMock('SecurityComponent', array(), array(), 'TriggerMockSecurityComponent'); + } + $this->Components->load('TriggerMockCookie'); + $this->Components->load('TriggerMockSecurity'); + + $this->Components->TriggerMockCookie->expects($this->once())->method('startup') + ->with(null); + $this->Components->TriggerMockSecurity->expects($this->once())->method('startup') + ->with(null); + + $this->Components->trigger('startup', array(&$controller)); + } + +/** + * test trigger and disabled helpers. + * + * @return void + */ + function testTriggerWithDisabledComponents() { + $controller = null; + if (!class_exists('TriggerMockCookieComponent')) { + $this->getMock('CookieComponent', array(), array(), 'TriggerMockCookieComponent'); + $this->getMock('SecurityComponent', array(), array(), 'TriggerMockSecurityComponent'); + } + $this->Components->load('TriggerMockCookie'); + $this->Components->load('TriggerMockSecurity'); + + $this->Components->TriggerMockCookie->expects($this->once())->method('startup') + ->with(null); + $this->Components->TriggerMockSecurity->expects($this->never())->method('startup') + ->with(null); + + $this->Components->disable('TriggerMockSecurity'); + + $this->Components->trigger('startup', array(&$controller)); + } + +/** + * test normalizeObjectArray + * + * @return void + */ + function testnormalizeObjectArray() { + $components = array( + 'Html', + 'Foo.Bar' => array('one', 'two'), + 'Something', + 'Banana.Apple' => array('foo' => 'bar') + ); + $result = ComponentCollection::normalizeObjectArray($components); + $expected = array( + 'Html' => array('class' => 'Html', 'settings' => array()), + 'Bar' => array('class' => 'Foo.Bar', 'settings' => array('one', 'two')), + 'Something' => array('class' => 'Something', 'settings' => array()), + 'Apple' => array('class' => 'Banana.Apple', 'settings' => array('foo' => 'bar')), + ); + $this->assertEquals($expected, $result); + } +} \ No newline at end of file