| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * 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.6.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Core;
- use Cake\Console\CommandCollection;
- use Cake\Core\BasePlugin;
- use Cake\Core\Configure;
- use Cake\Core\Plugin;
- use Cake\Core\PluginApplicationInterface;
- use Cake\Http\MiddlewareQueue;
- use Cake\Routing\RouteBuilder;
- use Cake\Routing\RouteCollection;
- use Cake\TestSuite\TestCase;
- use Company\TestPluginThree\Plugin as TestPluginThree;
- use TestPlugin\Plugin as TestPlugin;
- /**
- * BasePluginTest class
- */
- class BasePluginTest extends TestCase
- {
- /**
- * tearDown method
- *
- * @return void
- */
- public function tearDown()
- {
- parent::tearDown();
- $this->clearPlugins();
- }
- /**
- * testConfigForRoutesAndBootstrap
- *
- * @return void
- */
- public function testConfigForRoutesAndBootstrap()
- {
- $plugin = new BasePlugin([
- 'bootstrap' => false,
- 'routes' => false,
- ]);
- $this->assertFalse($plugin->isEnabled('routes'));
- $this->assertFalse($plugin->isEnabled('bootstrap'));
- $this->assertTrue($plugin->isEnabled('console'));
- $this->assertTrue($plugin->isEnabled('middleware'));
- }
- public function testGetName()
- {
- $plugin = new TestPlugin();
- $this->assertSame('TestPlugin', $plugin->getName());
- $plugin = new TestPluginThree();
- $this->assertSame('Company/TestPluginThree', $plugin->getName());
- }
- public function testGetNameOption()
- {
- $plugin = new TestPlugin(['name' => 'Elephants']);
- $this->assertSame('Elephants', $plugin->getName());
- }
- public function testMiddleware()
- {
- $plugin = new BasePlugin();
- $middleware = new MiddlewareQueue();
- $this->assertSame($middleware, $plugin->middleware($middleware));
- }
- public function testConsoleNoop()
- {
- $plugin = new BasePlugin();
- $commands = new CommandCollection();
- $this->assertSame($commands, $plugin->console($commands));
- }
- public function testConsoleFind()
- {
- $plugin = new TestPlugin();
- Plugin::getCollection()->add($plugin);
- $result = $plugin->console(new CommandCollection());
- $this->assertTrue($result->has('widget'), 'Should have plugin command added');
- $this->assertTrue($result->has('test_plugin.widget'), 'Should have long plugin name');
- $this->assertTrue($result->has('example'), 'Should have plugin shell added');
- $this->assertTrue($result->has('test_plugin.example'), 'Should have long plugin name');
- }
- public function testBootstrap()
- {
- $app = $this->createMock(PluginApplicationInterface::class);
- $plugin = new TestPlugin();
- $this->assertFalse(Configure::check('PluginTest.test_plugin.bootstrap'));
- $this->assertNull($plugin->bootstrap($app));
- $this->assertTrue(Configure::check('PluginTest.test_plugin.bootstrap'));
- }
- /**
- * No errors should be emitted when a plugin doesn't have a bootstrap file.
- */
- public function testBootstrapSkipMissingFile()
- {
- $app = $this->createMock(PluginApplicationInterface::class);
- $plugin = new BasePlugin();
- $this->assertNull($plugin->bootstrap($app));
- }
- /**
- * No errors should be emitted when a plugin doesn't have a routes file.
- */
- public function testRoutesSkipMissingFile()
- {
- $app = $this->createMock(PluginApplicationInterface::class);
- $plugin = new BasePlugin();
- $routeBuilder = new RouteBuilder(new RouteCollection(), '/');
- $this->assertNull($plugin->routes($routeBuilder));
- }
- public function testConstructorArguments()
- {
- $plugin = new BasePlugin([
- 'routes' => false,
- 'bootstrap' => false,
- 'console' => false,
- 'middleware' => false,
- ]);
- $this->assertFalse($plugin->isEnabled('routes'));
- $this->assertFalse($plugin->isEnabled('bootstrap'));
- $this->assertFalse($plugin->isEnabled('console'));
- $this->assertFalse($plugin->isEnabled('middleware'));
- }
- public function testGetPathBaseClass()
- {
- $plugin = new BasePlugin();
- $expected = CAKE . 'Core' . DS;
- $this->assertSame($expected, $plugin->getPath());
- $this->assertSame($expected . 'config' . DS, $plugin->getConfigPath());
- $this->assertSame($expected . 'src' . DS, $plugin->getClassPath());
- }
- public function testGetPathOptionValue()
- {
- $plugin = new BasePlugin(['path' => '/some/path']);
- $expected = '/some/path';
- $this->assertSame($expected, $plugin->getPath());
- $this->assertSame($expected . 'config' . DS, $plugin->getConfigPath());
- $this->assertSame($expected . 'src' . DS, $plugin->getClassPath());
- }
- public function testGetPathSubclass()
- {
- $plugin = new TestPlugin();
- $expected = TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS;
- $this->assertSame($expected, $plugin->getPath());
- $this->assertSame($expected . 'config' . DS, $plugin->getConfigPath());
- $this->assertSame($expected . 'src' . DS, $plugin->getClassPath());
- }
- }
|