Completed
Push — master ( 0cf574...7325fd )
by Daniel
01:58
created

testGetPackageDetailsFromGivenComposerLockFileError()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace danielgp\composer_packages_listing;
4
5
/**
6
 *
7
 * The MIT License (MIT)
8
 *
9
 * Copyright (c) 2016 Daniel Popiniuc
10
 *
11
 * Permission is hereby granted, free of charge, to any person obtaining a copy
12
 * of this software and associated documentation files (the "Software"), to deal
13
 * in the Software without restriction, including without limitation the rights
14
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
 * copies of the Software, and to permit persons to whom the Software is
16
 * furnished to do so, subject to the following conditions:
17
 *
18
 * The above copyright notice and this permission notice shall be included in all
19
 * copies or substantial portions of the Software.
20
 *
21
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
 * SOFTWARE.
28
 *
29
 */
30
class ComposerPackagesListingTest extends \PHPUnit\Framework\TestCase
31
{
32
33
    use ComposerPackagesListing;
34
35
    public function testGetPackageDetailsFromGivenComposerLockFile()
36
    {
37
        $fileToCheck = str_replace('tests' . DIRECTORY_SEPARATOR . 'php-unit', '', realpath(__DIR__)) . 'composer.lock';
38
        $actual      = $this->getPackageDetailsFromGivenComposerLockFile($fileToCheck);
39
        $this->assertArrayHasKey('Aging', $actual['phpunit/phpunit']);
40
    }
41
42
    public function testGetPackageDetailsFromGivenComposerLockFileError()
43
    {
44
        $actual = $this->getPackageDetailsFromGivenComposerLockFile('composer.not');
45
        $this->assertArrayHasKey('error', $actual);
46
    }
47
}
48