Skip to content

Commit

Permalink
Mutator: UnwrapUcFirst (unwrap the first argument of ucfirst() functi…
Browse files Browse the repository at this point in the history
…on) (#635)
  • Loading branch information
maks-rafalko committed Feb 17, 2019
1 parent e2fdecc commit 3327740
Show file tree
Hide file tree
Showing 3 changed files with 248 additions and 0 deletions.
54 changes: 54 additions & 0 deletions src/Mutator/Unwrap/UnwrapUcFirst.php
@@ -0,0 +1,54 @@
<?php
/**
* This code is licensed under the BSD 3-Clause License.
*
* Copyright (c) 2017-2019, Maks Rafalko
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

declare(strict_types=1);

namespace Infection\Mutator\Unwrap;

use PhpParser\Node;

/**
* @internal
*/
final class UnwrapUcFirst extends AbstractUnwrapMutator
{
protected function getFunctionName(): string
{
return 'ucfirst';
}

protected function getParameterIndexes(Node $node): \Generator
{
yield 0;
}
}
2 changes: 2 additions & 0 deletions src/Mutator/Util/MutatorProfile.php
Expand Up @@ -222,6 +222,7 @@ final class MutatorProfile
Mutator\Unwrap\UnwrapStrRepeat::class,
Mutator\Unwrap\UnwrapStrToLower::class,
Mutator\Unwrap\UnwrapStrToUpper::class,
Mutator\Unwrap\UnwrapUcFirst::class,
];

public const DEFAULT = [
Expand Down Expand Up @@ -379,5 +380,6 @@ final class MutatorProfile
'UnwrapStrRepeat' => Mutator\Unwrap\UnwrapStrRepeat::class,
'UnwrapStrToLower' => Mutator\Unwrap\UnwrapStrToLower::class,
'UnwrapStrToUpper' => Mutator\Unwrap\UnwrapStrToUpper::class,
'UnwrapUcFirst' => Mutator\Unwrap\UnwrapUcFirst::class,
];
}
192 changes: 192 additions & 0 deletions tests/Mutator/Unwrap/UnwrapUcFirstTest.php
@@ -0,0 +1,192 @@
<?php
/**
* This code is licensed under the BSD 3-Clause License.
*
* Copyright (c) 2017-2019, Maks Rafalko
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

declare(strict_types=1);

namespace Infection\Tests\Mutator\Unwrap;

use Infection\Tests\Mutator\AbstractMutatorTestCase;

/**
* @internal
*/
final class UnwrapUcFirstTest extends AbstractMutatorTestCase
{
/**
* @dataProvider provideMutationCases
*/
public function test_mutator($input, $expected = null): void
{
$this->doTest($input, $expected);
}

public function provideMutationCases(): \Generator
{
yield 'It mutates correctly when provided with a string' => [
<<<'PHP'
<?php
$a = ucfirst('good Afternoon!');
PHP
,
<<<'PHP'
<?php
$a = 'good Afternoon!';
PHP
];

yield 'It mutates correctly when provided with a constant' => [
<<<'PHP'
<?php
$a = ucfirst(\Class_With_Const::Const);
PHP
,
<<<'PHP'
<?php
$a = \Class_With_Const::Const;
PHP
];

yield 'It mutates correctly when a backslash is in front of ucfirst' => [
<<<'PHP'
<?php
$a = \ucfirst('good Afternoon!');
PHP
,
<<<'PHP'
<?php
$a = 'good Afternoon!';
PHP
];

yield 'It mutates correctly within if statements' => [
<<<'PHP'
<?php
$a = 'good Afternoon!';
if (ucfirst($a) === $a) {
return true;
}
PHP
,
<<<'PHP'
<?php
$a = 'good Afternoon!';
if ($a === $a) {
return true;
}
PHP
];

yield 'It mutates correctly when ucfirst is wrongly capitalized' => [
<<<'PHP'
<?php
$a = uCfIrSt('good Afternoon!');
PHP
,
<<<'PHP'
<?php
$a = 'good Afternoon!';
PHP
];

yield 'It mutates correctly when ucfirst uses another function as input' => [
<<<'PHP'
<?php
$a = ucfirst($foo->bar());
PHP
,
<<<'PHP'
<?php
$a = $foo->bar();
PHP
];

yield 'It mutates correctly when provided with a more complex situation' => [
<<<'PHP'
<?php
$a = ucfirst(array_reduce($words, function (string $carry, string $item) {
return $carry . substr($item, 0, 1);
}));
PHP
,
<<<'PHP'
<?php
$a = array_reduce($words, function (string $carry, string $item) {
return $carry . substr($item, 0, 1);
});
PHP
];

yield 'It does not mutate other calls' => [
<<<'PHP'
<?php
$a = strtolower('Good Afternoon!');
PHP
];

yield 'It does not mutate functions named ucfirst' => [
<<<'PHP'
<?php
function ucfirst($string)
{
}
PHP
];

yield 'It does not break when provided with a variable function name' => [
<<<'PHP'
<?php
$a = 'ucfirst';
$b = $a('FooBar');
PHP
,
];
}
}

0 comments on commit 3327740

Please sign in to comment.