| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <?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.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Core;
- use Cake\Core\StaticConfigTrait;
- use Cake\TestSuite\TestCase;
- /**
- * TestCacheStaticConfig
- */
- class TestCacheStaticConfig
- {
- use StaticConfigTrait;
- /**
- * Cache driver class map.
- *
- * @var array
- */
- protected static $_dsnClassMap = [
- 'apc' => 'Cake\Cache\Engine\ApcuEngine', // @deprecated in 3.6. Use apcu instead.
- 'apcu' => 'Cake\Cache\Engine\ApcuEngine',
- 'file' => 'Cake\Cache\Engine\FileEngine',
- 'memcached' => 'Cake\Cache\Engine\MemcachedEngine',
- 'null' => 'Cake\Cache\Engine\NullEngine',
- 'redis' => 'Cake\Cache\Engine\RedisEngine',
- 'wincache' => 'Cake\Cache\Engine\WincacheEngine',
- 'xcache' => 'Cake\Cache\Engine\XcacheEngine',
- ];
- }
- /**
- * TestEmailStaticConfig
- */
- class TestEmailStaticConfig
- {
- use StaticConfigTrait;
- /**
- * Email driver class map.
- *
- * @var array
- */
- protected static $_dsnClassMap = [
- 'debug' => 'Cake\Mailer\Transport\DebugTransport',
- 'mail' => 'Cake\Mailer\Transport\MailTransport',
- 'smtp' => 'Cake\Mailer\Transport\SmtpTransport',
- ];
- }
- /**
- * TestLogStaticConfig
- */
- class TestLogStaticConfig
- {
- use StaticConfigTrait;
- /**
- * Log engine class map.
- *
- * @var array
- */
- protected static $_dsnClassMap = [
- 'console' => 'Cake\Log\Engine\ConsoleLog',
- 'file' => 'Cake\Log\Engine\FileLog',
- 'syslog' => 'Cake\Log\Engine\SyslogLog',
- ];
- }
- /**
- * StaticConfigTraitTest class
- */
- class StaticConfigTraitTest extends TestCase
- {
- /**
- * setup method
- *
- * @return void
- */
- public function setUp()
- {
- parent::setUp();
- $this->subject = $this->getObjectForTrait('Cake\Core\StaticConfigTrait');
- }
- /**
- * teardown method
- *
- * @return void
- */
- public function tearDown()
- {
- unset($this->subject);
- parent::tearDown();
- }
- /**
- * Tests simple usage of parseDsn
- *
- * @return void
- */
- public function testSimpleParseDsn()
- {
- $className = get_class($this->subject);
- $this->assertSame([], $className::parseDsn(''));
- }
- /**
- * Tests that failing to pass a string to parseDsn will throw an exception
- *
- * @return void
- */
- public function testParseBadType()
- {
- $this->expectException(\InvalidArgumentException::class);
- $className = get_class($this->subject);
- $className::parseDsn(['url' => 'http://:80']);
- }
- /**
- * Tests parsing querystring values
- *
- * @return void
- */
- public function testParseDsnQuerystring()
- {
- $dsn = 'file:///?url=test';
- $expected = [
- 'className' => 'Cake\Log\Engine\FileLog',
- 'path' => '/',
- 'scheme' => 'file',
- 'url' => 'test',
- ];
- $this->assertEquals($expected, TestLogStaticConfig::parseDsn($dsn));
- $dsn = 'file:///?file=debug&key=value';
- $expected = [
- 'className' => 'Cake\Log\Engine\FileLog',
- 'file' => 'debug',
- 'key' => 'value',
- 'path' => '/',
- 'scheme' => 'file',
- ];
- $this->assertEquals($expected, TestLogStaticConfig::parseDsn($dsn));
- $dsn = 'file:///tmp?file=debug&types[]=notice&types[]=info&types[]=debug';
- $expected = [
- 'className' => 'Cake\Log\Engine\FileLog',
- 'file' => 'debug',
- 'path' => '/tmp',
- 'scheme' => 'file',
- 'types' => ['notice', 'info', 'debug'],
- ];
- $this->assertEquals($expected, TestLogStaticConfig::parseDsn($dsn));
- $dsn = 'mail:///?timeout=30&key=true&key2=false&client=null&tls=null';
- $expected = [
- 'className' => 'Cake\Mailer\Transport\MailTransport',
- 'client' => null,
- 'key' => true,
- 'key2' => false,
- 'path' => '/',
- 'scheme' => 'mail',
- 'timeout' => '30',
- 'tls' => null,
- ];
- $this->assertEquals($expected, TestEmailStaticConfig::parseDsn($dsn));
- $dsn = 'mail://true:false@null/1?timeout=30&key=true&key2=false&client=null&tls=null';
- $expected = [
- 'className' => 'Cake\Mailer\Transport\MailTransport',
- 'client' => null,
- 'host' => 'null',
- 'key' => true,
- 'key2' => false,
- 'password' => 'false',
- 'path' => '/1',
- 'scheme' => 'mail',
- 'timeout' => '30',
- 'tls' => null,
- 'username' => 'true',
- ];
- $this->assertEquals($expected, TestEmailStaticConfig::parseDsn($dsn));
- $dsn = 'mail://user:secret@localhost:25?timeout=30&client=null&tls=null#fragment';
- $expected = [
- 'className' => 'Cake\Mailer\Transport\MailTransport',
- 'client' => null,
- 'host' => 'localhost',
- 'password' => 'secret',
- 'port' => 25,
- 'scheme' => 'mail',
- 'timeout' => '30',
- 'tls' => null,
- 'username' => 'user',
- 'fragment' => 'fragment',
- ];
- $this->assertEquals($expected, TestEmailStaticConfig::parseDsn($dsn));
- $dsn = 'file:///?prefix=myapp_cake_core_&serialize=true&duration=%2B2 minutes';
- $expected = [
- 'className' => 'Cake\Log\Engine\FileLog',
- 'duration' => '+2 minutes',
- 'path' => '/',
- 'prefix' => 'myapp_cake_core_',
- 'scheme' => 'file',
- 'serialize' => true,
- ];
- $this->assertEquals($expected, TestLogStaticConfig::parseDsn($dsn));
- }
- /**
- * Tests loading a single plugin
- *
- * @return void
- */
- public function testParseDsnPathSetting()
- {
- $dsn = 'file:///?path=/tmp/persistent/';
- $expected = [
- 'className' => 'Cake\Log\Engine\FileLog',
- 'path' => '/tmp/persistent/',
- 'scheme' => 'file',
- ];
- $this->assertEquals($expected, TestLogStaticConfig::parseDsn($dsn));
- }
- /**
- * Test that the dsn map can be updated/append to
- *
- * @return void
- */
- public function testCanUpdateClassMap()
- {
- $this->deprecated(function () {
- $expected = [
- 'console' => 'Cake\Log\Engine\ConsoleLog',
- 'file' => 'Cake\Log\Engine\FileLog',
- 'syslog' => 'Cake\Log\Engine\SyslogLog',
- ];
- $result = TestLogStaticConfig::getdsnClassMap();
- $this->assertEquals($expected, $result, 'The class map should match the class property');
- $expected = [
- 'console' => 'Special\EngineLog',
- 'file' => 'Cake\Log\Engine\FileLog',
- 'syslog' => 'Cake\Log\Engine\SyslogLog',
- ];
- $result = TestLogStaticConfig::dsnClassMap(['console' => 'Special\EngineLog']);
- $this->assertEquals($expected, $result, 'Should be possible to change the map');
- $expected = [
- 'console' => 'Special\EngineLog',
- 'file' => 'Cake\Log\Engine\FileLog',
- 'syslog' => 'Cake\Log\Engine\SyslogLog',
- 'my' => 'Special\OtherLog'
- ];
- $result = TestLogStaticConfig::dsnClassMap(['my' => 'Special\OtherLog']);
- $this->assertEquals($expected, $result, 'Should be possible to add to the map');
- });
- }
- /**
- * Tests that former handling of integer keys coming in from PHP internal conversions
- * won't break in 3.4.
- *
- * @return void
- */
- public function testConfigBC()
- {
- $this->deprecated(function () {
- $result = TestLogStaticConfig::config(404);
- $this->assertNull($result);
- });
- }
- }
|