Skip to content

Commit

Permalink
Enhancement: Implement UnwrapArrayCombine mutator
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Nov 6, 2018
1 parent c696d27 commit 1b12516
Show file tree
Hide file tree
Showing 3 changed files with 310 additions and 0 deletions.
56 changes: 56 additions & 0 deletions src/Mutator/Unwrap/UnwrapArrayCombine.php
@@ -0,0 +1,56 @@
<?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 UnwrapArrayCombine extends AbstractUnwrapMutator
{
protected function getFunctionName(): string
{
return 'array_combine';
}

protected function getParameterIndexes(Node $node): \Generator
{
yield 0;

yield 1;
}
}
2 changes: 2 additions & 0 deletions src/Mutator/Util/MutatorProfile.php
Expand Up @@ -188,6 +188,7 @@ final class MutatorProfile
];

public const UNWRAP = [
Mutator\Unwrap\UnwrapArrayCombine::class,
Mutator\Unwrap\UnwrapArrayFilter::class,
Mutator\Unwrap\UnwrapArrayFlip::class,
Mutator\Unwrap\UnwrapArrayIntersect::class,
Expand Down Expand Up @@ -321,6 +322,7 @@ final class MutatorProfile
'CastString' => Mutator\Cast\CastString::class,

// Unwrap
'UnwrapArrayCombine' => Mutator\Unwrap\UnwrapArrayCombine::class,
'UnwrapArrayFilter' => Mutator\Unwrap\UnwrapArrayFilter::class,
'UnwrapArrayFlip' => Mutator\Unwrap\UnwrapArrayFlip::class,
'UnwrapArrayIntersect' => Mutator\Unwrap\UnwrapArrayIntersect::class,
Expand Down
252 changes: 252 additions & 0 deletions tests/Mutator/Unwrap/UnwrapArrayCombineTest.php
@@ -0,0 +1,252 @@
<?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 UnwrapArrayCombineTest 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_combine(['A', B, 'C'], ['foo', 'bar', 'baz']);
PHP
,
[
<<<'PHP'
<?php
$a = ['A', B, 'C'];
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
,
],
];

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

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

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

yield 'It mutates correctly when array_combine is wrongly capitalized' => [
<<<'PHP'
<?php
$a = aRrAy_CoMbInE(['A', 'B', 'C'], ['foo', 'bar', 'baz']);
PHP
,
[
<<<'PHP'
<?php
$a = ['A', 'B', 'C'];
PHP
,
<<<'PHP'
<?php
$a = ['foo', 'bar', 'baz'];
PHP
,
],
];

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

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

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

yield 'It does not mutate functions named array_combine' => [
<<<'PHP'
<?php
function array_combine($array, $array1, $array2)
{
}
PHP
];

yield 'It does not mutate when a variable function name is used' => [
<<<'PHP'
<?php
$a = 'array_combine';
$b = $a(['A', 'B', 'C'], ['foo', 'bar', 'baz']);
PHP
];
}
}

0 comments on commit 1b12516

Please sign in to comment.