FallbackTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 9
dl 0
loc 15
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testGetRanges() 0 11 1
1
<?php
2
3
/**
4
 * This file is part of CaptainHook.
5
 *
6
 * (c) Sebastian Feldmann <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace CaptainHook\App\Git\ChangedFiles\Detector;
13
14
use CaptainHook\App\Console\IO\Mockery as IOMockery;
15
use CaptainHook\App\Git\Range\Detector\Fallback;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, CaptainHook\App\Git\ChangedFiles\Detector\Fallback. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
16
use PHPUnit\Framework\TestCase;
17
18
/**
19
 * Class FallbackTest
20
 *
21
 * Tests the Fallback detector, since currently there is no (test) use case were it is used
22
 * there has to be this dedicated testcase.
23
 *
24
 * @package CaptainHook
25
 * @author  Sebastian Feldmann <[email protected]>
26
 * @link    https://github.com/captainhook-git/captainhook
27
 * @since   Class available since Release 5.20.0
28
 */
29
class FallbackTest extends TestCase
30
{
31
    use IOMockery;
32
33
    public function testGetRanges()
34
    {
35
        $io = $this->createIOMock();
36
        $io->method('getArgument')->willReturn('HEAD@{1}');
37
38
        $fallback = new Fallback();
39
        $ranges   = $fallback->getRanges($io);
40
41
        $this->assertCount(1, $ranges);
42
        $this->assertEquals('HEAD@{1}', $ranges[0]->from()->id());
43
        $this->assertEquals('HEAD', $ranges[0]->to()->id());
44
    }
45
}
46