| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?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.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Core;
- use Cake\Http\Response;
- use Cake\TestSuite\TestCase;
- /**
- * Test cases for functions in Core\functions.php
- */
- class FunctionsTest extends TestCase
- {
- /**
- * Test cases for env()
- */
- public function testEnv()
- {
- $_ENV['DOES_NOT_EXIST'] = null;
- $this->assertNull(env('DOES_NOT_EXIST'));
- $this->assertEquals('default', env('DOES_NOT_EXIST', 'default'));
- $_ENV['DOES_EXIST'] = 'some value';
- $this->assertEquals('some value', env('DOES_EXIST'));
- $this->assertEquals('some value', env('DOES_EXIST', 'default'));
- $_ENV['EMPTY_VALUE'] = '';
- $this->assertEquals('', env('EMPTY_VALUE'));
- $this->assertEquals('', env('EMPTY_VALUE', 'default'));
- $_ENV['ZERO'] = '0';
- $this->assertEquals('0', env('ZERO'));
- $this->assertEquals('0', env('ZERO', '1'));
- }
- /**
- * Test cases for h()
- *
- * @return void
- * @dataProvider hInputProvider
- */
- public function testH($value, $expected)
- {
- $result = h($value);
- $this->assertSame($expected, $result);
- }
- public function hInputProvider()
- {
- return [
- ['i am clean', 'i am clean'],
- ['i "need" escaping', 'i "need" escaping'],
- [null, null],
- [1, 1],
- [1.1, 1.1],
- [new \stdClass(), '(object)stdClass'],
- [new Response(), ''],
- [['clean', '"clean-me'], ['clean', '"clean-me']],
- ];
- }
- /**
- * Test error messages coming out when deprecated level is on, manually setting the stack frame
- *
- * @expectedException PHPUnit\Framework\Error\Deprecated
- * @expectedExceptionMessageRegExp /This is going away - (.*?)[\/\\]FunctionsTest.php, line\: \d+/
- */
- public function testDeprecationWarningEnabled()
- {
- $this->withErrorReporting(E_ALL, function () {
- deprecationWarning('This is going away', 2);
- });
- }
- /**
- * Test error messages coming out when deprecated level is on, not setting the stack frame manually
- *
- * @expectedException PHPUnit\Framework\Error\Deprecated
- * @expectedExceptionMessageRegExp /This is going away - (.*?)[\/\\]TestCase.php, line\: \d+/
- */
- public function testDeprecationWarningEnabledDefaultFrame()
- {
- $this->withErrorReporting(E_ALL, function () {
- deprecationWarning('This is going away');
- });
- }
- /**
- * Test no error when deprecated level is off.
- *
- * @return void
- */
- public function testDeprecationWarningLevelDisabled()
- {
- $this->withErrorReporting(E_ALL ^ E_USER_DEPRECATED, function () {
- $this->assertNull(deprecationWarning('This is going away'));
- });
- }
- /**
- * Test error messages coming out when warning level is on.
- *
- * @expectedException PHPUnit\Framework\Error\Warning
- * @expectedExceptionMessageRegExp /This is going away - (.*?)[\/\\]TestCase.php, line\: \d+/
- */
- public function testTriggerWarningEnabled()
- {
- $this->withErrorReporting(E_ALL, function () {
- triggerWarning('This is going away');
- });
- }
- /**
- * Test no error when warning level is off.
- *
- * @return void
- */
- public function testTriggerWarningLevelDisabled()
- {
- $this->withErrorReporting(E_ALL ^ E_USER_WARNING, function () {
- $this->assertNull(triggerWarning('This is going away'));
- });
- }
- /**
- * testing getTypeName()
- *
- * @return void
- */
- public function testgetTypeName()
- {
- $this->assertEquals('stdClass', getTypeName(new \stdClass()));
- $this->assertEquals('array', getTypeName([]));
- $this->assertEquals('string', getTypeName(''));
- }
- }
|