| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.5.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Http;
- use Cake\Core\BasePlugin;
- use Cake\Core\Configure;
- use Cake\Core\Plugin;
- use Cake\Http\BaseApplication;
- use Cake\Http\MiddlewareQueue;
- use Cake\Http\Response;
- use Cake\Http\ServerRequestFactory;
- use Cake\Routing\RouteBuilder;
- use Cake\Routing\RouteCollection;
- use Cake\Routing\Router;
- use Cake\TestSuite\TestCase;
- use InvalidArgumentException;
- use Psr\Http\Message\ResponseInterface;
- use TestPlugin\Plugin as TestPlugin;
- /**
- * Base application test.
- *
- * @coversDefaultClass \Cake\Http\BaseApplication
- */
- class BaseApplicationTest extends TestCase
- {
- /**
- * Setup
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- static::setAppNamespace();
- $this->path = dirname(dirname(__DIR__));
- }
- public function tearDown()
- {
- parent::tearDown();
- $this->clearPlugins();
- }
- /**
- * Integration test for a simple controller.
- *
- * @return void
- */
- public function testInvoke()
- {
- $next = function ($req, $res) {
- return $res;
- };
- $response = new Response();
- $request = ServerRequestFactory::fromGlobals(['REQUEST_URI' => '/cakes']);
- $request = $request->withAttribute('params', [
- 'controller' => 'Cakes',
- 'action' => 'index',
- 'plugin' => null,
- 'pass' => [],
- ]);
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $result = $app($request, $response, $next);
- $this->assertInstanceOf(ResponseInterface::class, $result);
- $this->assertEquals('Hello Jane', '' . $result->getBody());
- }
- /**
- * Ensure that plugins with no plugin class can be loaded.
- * This makes adopting the new API easier
- */
- public function testAddPluginUnknownClass()
- {
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $app->addPlugin('PluginJs');
- $plugin = $app->getPlugins()->get('PluginJs');
- $this->assertInstanceOf(BasePlugin::class, $plugin);
- $this->assertEquals(
- TEST_APP . 'Plugin' . DS . 'PluginJs' . DS,
- $plugin->getPath()
- );
- $this->assertEquals(
- TEST_APP . 'Plugin' . DS . 'PluginJs' . DS . 'config' . DS,
- $plugin->getConfigPath()
- );
- $this->assertEquals(
- TEST_APP . 'Plugin' . DS . 'PluginJs' . DS . 'src' . DS,
- $plugin->getClassPath()
- );
- }
- /**
- * Ensure that plugin interfaces are implemented.
- */
- public function testAddPluginBadClass()
- {
- $this->expectException(InvalidArgumentException::class);
- $this->expectExceptionMessage('does not implement');
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $app->addPlugin(__CLASS__);
- }
- public function testAddPluginValidShortName()
- {
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $app->addPlugin('TestPlugin');
- $this->assertCount(1, $app->getPlugins());
- $this->assertTrue($app->getPlugins()->has('TestPlugin'));
- $app->addPlugin('Company/TestPluginThree');
- $this->assertCount(2, $app->getPlugins());
- $this->assertTrue($app->getPlugins()->has('Company/TestPluginThree'));
- }
- public function testAddPluginValid()
- {
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $app->addPlugin(TestPlugin::class);
- $this->assertCount(1, $app->getPlugins());
- $this->assertTrue($app->getPlugins()->has('TestPlugin'));
- }
- public function testPluginMiddleware()
- {
- $start = new MiddlewareQueue();
- $app = $this->getMockForAbstractClass(
- BaseApplication::class,
- [$this->path]
- );
- $app->addPlugin(TestPlugin::class);
- $after = $app->pluginMiddleware($start);
- $this->assertSame($start, $after);
- $this->assertCount(1, $after);
- }
- public function testPluginRoutes()
- {
- $collection = new RouteCollection();
- $routes = new RouteBuilder($collection, '/');
- $app = $this->getMockForAbstractClass(
- BaseApplication::class,
- [$this->path]
- );
- $app->addPlugin(TestPlugin::class);
- $result = $app->pluginRoutes($routes);
- $this->assertSame($routes, $result);
- $url = [
- 'plugin' => 'TestPlugin',
- 'controller' => 'TestPlugin',
- 'action' => 'index',
- '_method' => 'GET',
- ];
- $this->assertNotEmpty($collection->match($url, []));
- }
- public function testPluginBootstrap()
- {
- $app = $this->getMockForAbstractClass(
- BaseApplication::class,
- [$this->path]
- );
- $app->addPlugin(TestPlugin::class);
- $this->assertFalse(Configure::check('PluginTest.test_plugin.bootstrap'));
- $this->assertNull($app->pluginBootstrap());
- $this->assertTrue(Configure::check('PluginTest.test_plugin.bootstrap'));
- }
- /**
- * Ensure that plugins loaded via Plugin::load()
- * don't have their bootstrapping run twice.
- *
- * @return void
- */
- public function testPluginBootstrapInteractWithPluginLoad()
- {
- $this->deprecated(function () {
- Plugin::load('TestPlugin', ['bootstrap' => true]);
- $app = $this->getMockForAbstractClass(
- BaseApplication::class,
- [$this->path]
- );
- $this->assertTrue(Configure::check('PluginTest.test_plugin.bootstrap'));
- Configure::delete('PluginTest.test_plugin.bootstrap');
- $this->assertNull($app->pluginBootstrap());
- $this->assertFalse(
- Configure::check('PluginTest.test_plugin.bootstrap'),
- 'Key should not be set, as plugin has already had bootstrap run'
- );
- });
- }
- /**
- * Test that plugins loaded with addPlugin() can load additional
- * plugins.
- *
- * @return void
- */
- public function testPluginBootstrapRecursivePlugins()
- {
- $app = $this->getMockForAbstractClass(
- BaseApplication::class,
- [$this->path]
- );
- $app->addPlugin('ParentPlugin');
- $this->deprecated(function () use ($app) {
- $app->pluginBootstrap();
- });
- $this->assertTrue(
- Configure::check('ParentPlugin.bootstrap'),
- 'Plugin bootstrap should be run'
- );
- $this->assertTrue(
- Configure::check('PluginTest.test_plugin.bootstrap'),
- 'Nested plugin should have bootstrap run'
- );
- $this->assertTrue(
- Configure::check('PluginTest.test_plugin_two.bootstrap'),
- 'Nested plugin should have bootstrap run'
- );
- }
- /**
- * Ensure that Router::$initialized is toggled even if the routes
- * file fails. This prevents the routes file from being re-parsed
- * during the error handling process.
- *
- * @return void
- */
- public function testRouteHookInitializesRouterOnError()
- {
- $app = $this->getMockForAbstractClass(
- 'Cake\Http\BaseApplication',
- [TEST_APP . 'invalid_routes' . DS]
- );
- $builder = Router::createRouteBuilder('/');
- try {
- $app->routes($builder);
- $this->fail('invalid_routes/routes.php file should raise an error.');
- } catch (\InvalidArgumentException $e) {
- $this->assertTrue(Router::$initialized, 'Should be toggled to prevent duplicate route errors');
- $this->assertContains('route class', $e->getMessage());
- }
- }
- /**
- * Tests that loading a non existing plugin through addOptionalPlugin() does not throw an exception
- *
- * @return void
- * @covers ::addOptionalPlugin
- */
- public function testAddOptionalPluginLoadingNonExistingPlugin()
- {
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $pluginCountBefore = count($app->getPlugins());
- $nonExistingPlugin = 'NonExistingPlugin';
- $app->addOptionalPlugin($nonExistingPlugin);
- $pluginCountAfter = count($app->getPlugins());
- $this->assertSame($pluginCountBefore, $pluginCountAfter);
- }
- /**
- * Tests that loading an existing plugin through addOptionalPlugin() works
- *
- * @return void
- * @covers ::addOptionalPlugin
- */
- public function testAddOptionalPluginLoadingNonExistingPluginValid()
- {
- $app = $this->getMockForAbstractClass(BaseApplication::class, [$this->path]);
- $app->addOptionalPlugin(TestPlugin::class);
- $this->assertCount(1, $app->getPlugins());
- $this->assertTrue($app->getPlugins()->has('TestPlugin'));
- }
- }
|