123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\Fixer\Casing;
- use PhpCsFixer\Tests\Test\AbstractFixerTestCase;
- /**
- * @author SpacePossum
- *
- * @internal
- *
- * @covers \PhpCsFixer\Fixer\Casing\NativeFunctionCasingFixer
- */
- final class NativeFunctionCasingFixerTest extends AbstractFixerTestCase
- {
- /**
- * @dataProvider provideFixCases
- */
- public function testFix(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- public function provideFixCases()
- {
- return [
- [
- '<?php
- namespace Bar {
- function STRLEN($str) {
- return "overriden" . \strlen($str);
- }
- }
- namespace {
- echo \Bar\STRLEN("xxx");
- }',
- ],
- [
- '<?php
- echo strtolower("hello 1");
- ',
- '<?php
- echo STRTOLOWER("hello 1");
- ',
- ],
- [
- '<?php
- echo strtolower //a
- ("hello 2");
- ',
- '<?php
- echo STRTOLOWER //a
- ("hello 2");
- ',
- ],
- [
- '<?php
- echo strtolower /**/ ("hello 3");
- ',
- '<?php
- echo STRTOLOWER /**/ ("hello 3");
- ',
- ],
- [
- '<?php
- echo \sqrt(4);
- ',
- '<?php
- echo \sQrT(4);
- ',
- ],
- [
- '<?php
- echo "1".\sqrt("hello 5");
- ',
- '<?php
- echo "1".\SQRT("hello 5");
- ',
- ],
- [
- '<?php
- class Test{
- public function gettypE()
- {
- return 1;
- }
- function sqrT($a)
- {
- }
- function &END($a)
- {
- }
- }
- ',
- ],
- [
- '<?php
- new STRTOLOWER();
- ',
- ],
- [
- '<?php
- new \STRTOLOWER();
- ',
- ],
- [
- '<?php
- new \A\B\STRTOLOWER();
- ',
- ],
- [
- '<?php
- a::STRTOLOWER();
- ',
- ],
- [
- '<?php
- $a->STRTOLOWER();
- ',
- ],
- [
- '<?php fOoO();',
- ],
- [
- '<?php
- namespace Foo {
- function &Next() {
- return prev(-1);
- }
- }',
- ],
- [
- '<?php
- $next1 = & next($array1);
- $next2 = & \next($array2);
- ',
- '<?php
- $next1 = & Next($array1);
- $next2 = & \Next($array2);
- ',
- ],
- ];
- }
- /**
- * @requires PHP 7.3
- * @dataProvider provideFix73Cases
- */
- public function testFix73(string $expected, ?string $input = null): void
- {
- $this->doTest($expected, $input);
- }
- public function provideFix73Cases()
- {
- return [
- [
- '<?php
- echo \sqrt(4 , );
- ',
- '<?php
- echo \sQrT(4 , );
- ',
- ],
- [
- '<?php
- $a->STRTOLOWER(1,);
- ',
- ],
- ];
- }
- /**
- * @requires PHP 8.0
- */
- public function testFix80(): void
- {
- $this->doTest('<?php $a?->STRTOLOWER(1,);');
- }
- }
|