Skip to content

Commit

Permalink
Enhancement: Implement UnwrapArraySlice mutator (#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and maks-rafalko committed Jan 5, 2019
1 parent ff25479 commit 64c474f
Show file tree
Hide file tree
Showing 3 changed files with 272 additions and 0 deletions.
54 changes: 54 additions & 0 deletions src/Mutator/Unwrap/UnwrapArraySlice.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?php
/**
* This code is licensed under the BSD 3-Clause License.
*
* Copyright (c) 2017-2018, 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 UnwrapArraySlice extends AbstractUnwrapMutator
{
protected function getFunctionName(): string
{
return 'array_slice';
}

protected function getParameterIndexes(Node $node): \Generator
{
yield 0;
}
}
2 changes: 2 additions & 0 deletions src/Mutator/Util/MutatorProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ final class MutatorProfile
Mutator\Unwrap\UnwrapArrayReplace::class,
Mutator\Unwrap\UnwrapArrayReplaceRecursive::class,
Mutator\Unwrap\UnwrapArrayReverse::class,
Mutator\Unwrap\UnwrapArraySlice::class,
Mutator\Unwrap\UnwrapArrayUnique::class,
Mutator\Unwrap\UnwrapArrayValues::class,
Mutator\Unwrap\UnwrapStrRepeat::class,
Expand Down Expand Up @@ -362,6 +363,7 @@ final class MutatorProfile
'UnwrapArrayReplace' => Mutator\Unwrap\UnwrapArrayReplace::class,
'UnwrapArrayReplaceRecursive' => Mutator\Unwrap\UnwrapArrayReplaceRecursive::class,
'UnwrapArrayReverse' => Mutator\Unwrap\UnwrapArrayReverse::class,
'UnwrapArraySlice' => Mutator\Unwrap\UnwrapArraySlice::class,
'UnwrapArrayUnique' => Mutator\Unwrap\UnwrapArrayUnique::class,
'UnwrapArrayValues' => Mutator\Unwrap\UnwrapArrayValues::class,
'UnwrapStrRepeat' => Mutator\Unwrap\UnwrapStrRepeat::class,
Expand Down
216 changes: 216 additions & 0 deletions tests/Mutator/Unwrap/UnwrapArraySliceTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
<?php
/**
* This code is licensed under the BSD 3-Clause License.
*
* Copyright (c) 2017-2018, 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 UnwrapArraySliceTest 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 an array' => [
<<<'PHP'
<?php
$a = array_slice(['foo', 'bar', 'baz'], 1);
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
];

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

yield 'It mutates correctly when a backslash is in front of array_slice' => [
<<<'PHP'
<?php
$a = \array_slice(['foo', 'bar', 'baz'], 1);
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
];

yield 'It does not mutate other array_ calls' => [
<<<'PHP'
<?php
$a = array_map('strtolower', ['foo', 'bar', 'baz']);
PHP
];

yield 'It does not mutate functions named array_slice' => [
<<<'PHP'
<?php
function array_slice($array, $offset, $length = null, $preserve_keys = null)
{
}
PHP
];

yield 'It mutates correctly within if statements' => [
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
if (array_slice($a, 1) === $a) {
return true;
}
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
if ($a === $a) {
return true;
}
PHP
];

yield 'It mutates correctly when array_slice is wrongly capitalized' => [
<<<'PHP'
<?php
$a = aRrAy_SlIcE(['foo', 'bar', 'baz'], 1);
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
];

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

yield 'It mutates correctly when provided with a more complex situation' => [
<<<'PHP'
<?php
$a = array_map('strtolower', array_slice(['foo', 'bar', 'baz'], 1));
PHP
,
<<<'PHP'
<?php
$a = array_map('strtolower', ['foo', 'bar', 'baz']);
PHP
];

yield 'It mutates correctly when the $length parameter is present' => [
<<<'PHP'
<?php
$a = array_slice(['foo', 'bar', 'baz'], 1, 2);
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
];

yield 'It mutates correctly when the $preserve_keys parameter is present' => [
<<<'PHP'
<?php
$a = array_slice(['foo', 'bar', 'baz'], 1, 2, true);
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
];

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

0 comments on commit 64c474f

Please sign in to comment.