/lib/Cake/Test/Case/Controller/ComponentCollectionTest.php

https://bitbucket.org/floresj/notetime · PHP · 178 lines · 87 code · 25 blank · 66 comment · 0 complexity · 2a15e8d540fdc93a4f809463f3fc7726 MD5 · raw file

  1. <?php
  2. /**
  3. * ComponentCollectionTest file
  4. *
  5. * PHP 5
  6. *
  7. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  8. * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  9. *
  10. * Licensed under The MIT License
  11. * Redistributions of files must retain the above copyright notice.
  12. *
  13. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  14. * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
  15. * @package Cake.Test.Case.Controller
  16. * @since CakePHP(tm) v 2.0
  17. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  18. */
  19. App::uses('CakeResponse', 'Network');
  20. App::uses('CookieComponent', 'Controller/Component');
  21. App::uses('SecurityComponent', 'Controller/Component');
  22. App::uses('ComponentCollection', 'Controller');
  23. /**
  24. * Extended CookieComponent
  25. */
  26. class CookieAliasComponent extends CookieComponent {
  27. }
  28. class ComponentCollectionTest extends CakeTestCase {
  29. /**
  30. * setUp
  31. *
  32. * @return void
  33. */
  34. public function setUp() {
  35. parent::setUp();
  36. $this->Components = new ComponentCollection();
  37. }
  38. /**
  39. * tearDown
  40. *
  41. * @return void
  42. */
  43. public function tearDown() {
  44. parent::tearDown();
  45. unset($this->Components);
  46. }
  47. /**
  48. * test triggering callbacks on loaded helpers
  49. *
  50. * @return void
  51. */
  52. public function testLoad() {
  53. $result = $this->Components->load('Cookie');
  54. $this->assertInstanceOf('CookieComponent', $result);
  55. $this->assertInstanceOf('CookieComponent', $this->Components->Cookie);
  56. $result = $this->Components->attached();
  57. $this->assertEquals(array('Cookie'), $result, 'attached() results are wrong.');
  58. $this->assertTrue($this->Components->enabled('Cookie'));
  59. $result = $this->Components->load('Cookie');
  60. $this->assertSame($result, $this->Components->Cookie);
  61. }
  62. /**
  63. * Tests loading as an alias
  64. *
  65. * @return void
  66. */
  67. public function testLoadWithAlias() {
  68. $result = $this->Components->load('Cookie', array('className' => 'CookieAlias', 'somesetting' => true));
  69. $this->assertInstanceOf('CookieAliasComponent', $result);
  70. $this->assertInstanceOf('CookieAliasComponent', $this->Components->Cookie);
  71. $this->assertTrue($this->Components->Cookie->settings['somesetting']);
  72. $result = $this->Components->attached();
  73. $this->assertEquals(array('Cookie'), $result, 'attached() results are wrong.');
  74. $this->assertTrue($this->Components->enabled('Cookie'));
  75. $result = $this->Components->load('Cookie');
  76. $this->assertInstanceOf('CookieAliasComponent', $result);
  77. App::build(array('Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS)));
  78. CakePlugin::load('TestPlugin');
  79. $result = $this->Components->load('SomeOther', array('className' => 'TestPlugin.Other'));
  80. $this->assertInstanceOf('OtherComponent', $result);
  81. $this->assertInstanceOf('OtherComponent', $this->Components->SomeOther);
  82. $result = $this->Components->attached();
  83. $this->assertEquals(array('Cookie', 'SomeOther'), $result, 'attached() results are wrong.');
  84. App::build();
  85. CakePlugin::unload();
  86. }
  87. /**
  88. * test load and enable = false
  89. *
  90. * @return void
  91. */
  92. public function testLoadWithEnableFalse() {
  93. $result = $this->Components->load('Cookie', array('enabled' => false));
  94. $this->assertInstanceOf('CookieComponent', $result);
  95. $this->assertInstanceOf('CookieComponent', $this->Components->Cookie);
  96. $this->assertFalse($this->Components->enabled('Cookie'), 'Cookie should be disabled');
  97. }
  98. /**
  99. * test missingcomponent exception
  100. *
  101. * @expectedException MissingComponentException
  102. * @return void
  103. */
  104. public function testLoadMissingComponent() {
  105. $this->Components->load('ThisComponentShouldAlwaysBeMissing');
  106. }
  107. /**
  108. * test loading a plugin component.
  109. *
  110. * @return void
  111. */
  112. public function testLoadPluginComponent() {
  113. App::build(array(
  114. 'Plugin' => array(CAKE . 'Test' . DS . 'test_app' . DS . 'Plugin' . DS),
  115. ));
  116. CakePlugin::load('TestPlugin');
  117. $result = $this->Components->load('TestPlugin.Other');
  118. $this->assertInstanceOf('OtherComponent', $result, 'Component class is wrong.');
  119. $this->assertInstanceOf('OtherComponent', $this->Components->Other, 'Class is wrong');
  120. App::build();
  121. CakePlugin::unload();
  122. }
  123. /**
  124. * test unload()
  125. *
  126. * @return void
  127. */
  128. public function testUnload() {
  129. $this->Components->load('Cookie');
  130. $this->Components->load('Security');
  131. $result = $this->Components->attached();
  132. $this->assertEquals(array('Cookie', 'Security'), $result, 'loaded components is wrong');
  133. $this->Components->unload('Cookie');
  134. $this->assertFalse(isset($this->Components->Cookie));
  135. $this->assertTrue(isset($this->Components->Security));
  136. $result = $this->Components->attached();
  137. $this->assertEquals(array('Security'), $result, 'loaded components is wrong');
  138. $result = $this->Components->enabled();
  139. $this->assertEquals(array('Security'), $result, 'enabled components is wrong');
  140. }
  141. /**
  142. * test getting the controller out of the collection
  143. *
  144. * @return void
  145. */
  146. public function testGetController() {
  147. $controller = $this->getMock('Controller');
  148. $controller->components = array('Security');
  149. $this->Components->init($controller);
  150. $result = $this->Components->getController();
  151. $this->assertSame($controller, $result);
  152. }
  153. }