| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?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\Core\Configure;
- use Cake\Core\Exception\MissingPluginException;
- use Cake\Core\PluginCollection;
- use Cake\Core\PluginInterface;
- use Cake\TestSuite\TestCase;
- use Company\TestPluginThree\Plugin as TestPluginThree;
- use InvalidArgumentException;
- use TestPlugin\Plugin as TestPlugin;
- /**
- * PluginCollection Test
- */
- class PluginCollectionTest extends TestCase
- {
- public function testConstructor()
- {
- $plugins = new PluginCollection([new TestPlugin()]);
- $this->assertCount(1, $plugins);
- $this->assertTrue($plugins->has('TestPlugin'));
- }
- public function testAdd()
- {
- $plugins = new PluginCollection();
- $this->assertCount(0, $plugins);
- $plugins->add(new TestPlugin());
- $this->assertCount(1, $plugins);
- }
- public function testAddOperations()
- {
- $plugins = new PluginCollection();
- $plugins->add(new TestPlugin());
- $this->assertFalse($plugins->has('Nope'));
- $this->assertSame($plugins, $plugins->remove('Nope'));
- $this->assertTrue($plugins->has('TestPlugin'));
- $this->assertSame($plugins, $plugins->remove('TestPlugin'));
- $this->assertCount(0, $plugins);
- $this->assertFalse($plugins->has('TestPlugin'));
- }
- public function testAddVendoredPlugin()
- {
- $plugins = new PluginCollection();
- $plugins->add(new TestPluginThree());
- $this->assertTrue($plugins->has('Company/TestPluginThree'));
- $this->assertFalse($plugins->has('TestPluginThree'));
- $this->assertFalse($plugins->has('Company'));
- $this->assertFalse($plugins->has('TestPlugin'));
- }
- public function testHas()
- {
- $plugins = new PluginCollection();
- $this->assertFalse($plugins->has('TestPlugin'));
- $plugins->add(new TestPlugin());
- $this->assertTrue($plugins->has('TestPlugin'));
- $this->assertFalse($plugins->has('Plugin'));
- }
- public function testGet()
- {
- $plugins = new PluginCollection();
- $plugin = new TestPlugin();
- $plugins->add($plugin);
- $this->assertSame($plugin, $plugins->get('TestPlugin'));
- }
- public function testGetInvalid()
- {
- $this->expectException(MissingPluginException::class);
- $plugins = new PluginCollection();
- $plugins->get('Invalid');
- }
- public function testIterator()
- {
- $data = [
- new TestPlugin(),
- new TestPluginThree(),
- ];
- $plugins = new PluginCollection($data);
- $out = [];
- foreach ($plugins as $key => $plugin) {
- $this->assertInstanceOf(PluginInterface::class, $plugin);
- $out[] = $plugin;
- }
- $this->assertSame($data, $out);
- }
- public function testWith()
- {
- $plugins = new PluginCollection();
- $plugin = new TestPlugin();
- $plugin->disable('routes');
- $pluginThree = new TestPluginThree();
- $plugins->add($plugin);
- $plugins->add($pluginThree);
- $out = [];
- foreach ($plugins->with('routes') as $p) {
- $out[] = $p;
- }
- $this->assertCount(1, $out);
- $this->assertSame($pluginThree, $out[0]);
- }
- /**
- * Test that looping over the plugin collection during
- * a with loop doesn't lose iteration state.
- *
- * This situation can happen when a plugin like bake
- * needs to discover things inside other plugins.
- *
- * @return
- */
- public function testWithInnerIteration()
- {
- $plugins = new PluginCollection();
- $plugin = new TestPlugin();
- $pluginThree = new TestPluginThree();
- $plugins->add($plugin);
- $plugins->add($pluginThree);
- $out = [];
- foreach ($plugins->with('routes') as $p) {
- foreach ($plugins as $i) {
- // Do nothing, we just need to enumerate the collection
- }
- $out[] = $p;
- }
- $this->assertCount(2, $out);
- $this->assertSame($plugin, $out[0]);
- $this->assertSame($pluginThree, $out[1]);
- }
- public function testWithInvalidHook()
- {
- $this->expectException(InvalidArgumentException::class);
- $plugins = new PluginCollection();
- foreach ($plugins->with('bad') as $p) {
- }
- }
- public function testFindPathNoConfigureData()
- {
- Configure::write('plugins', []);
- $plugins = new PluginCollection();
- $path = $plugins->findPath('TestPlugin');
- $this->assertEquals(TEST_APP . 'Plugin' . DS . 'TestPlugin' . DS, $path);
- }
- public function testFindPathLoadsConfigureData()
- {
- $configPath = ROOT . DS . 'cakephp-plugins.php';
- $this->skipIf(file_exists($configPath), 'cakephp-plugins.php exists, skipping overwrite');
- $file = <<<PHP
- <?php
- return [
- 'plugins' => [
- 'TestPlugin' => '/config/path'
- ]
- ];
- PHP;
- file_put_contents($configPath, $file);
- Configure::delete('plugins');
- $plugins = new PluginCollection();
- $path = $plugins->findPath('TestPlugin');
- unlink($configPath);
- $this->assertEquals('/config/path', $path);
- }
- public function testFindPathConfigureData()
- {
- Configure::write('plugins', ['TestPlugin' => '/some/path']);
- $plugins = new PluginCollection();
- $path = $plugins->findPath('TestPlugin');
- $this->assertEquals('/some/path', $path);
- }
- public function testFindPathMissingPlugin()
- {
- Configure::write('plugins', []);
- $plugins = new PluginCollection();
- $this->expectException(MissingPluginException::class);
- $plugins->findPath('InvalidPlugin');
- }
- }
|