Your IP : 216.73.217.13


Current Path : /var/www/surf/TYPO3/vendor/typo3/class-alias-loader/tests/Unit/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/class-alias-loader/tests/Unit/ConfigTest.php

<?php
namespace TYPO3\ClassAliasLoader\Test\Unit;

/*
 * This file is part of the class alias loader package.
 *
 * (c) Helmut Hummel <info@helhum.io>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use Composer\IO\IOInterface;
use Composer\Package\PackageInterface;
use TYPO3\ClassAliasLoader\Config;

/**
 * Test case for Config
 */
class ConfigTest extends BaseTestCase
{
    /**
     * @var Config
     */
    protected $subject;

    /**
     * @var IOInterface|\PHPUnit_Framework_MockObject_MockObject
     */
    protected $ioMock;

    /**
     * @var PackageInterface|\PHPUnit_Framework_MockObject_MockObject
     */
    protected $packageMock;

    /**
     * @before
     */
    public function setMeUp()
    {
        $this->ioMock = $this->getMockBuilder('Composer\\IO\\IOInterface')->getMock();
        $this->packageMock = $this->getMockBuilder('Composer\\Package\\PackageInterface')->getMock();

        $this->subject = new Config($this->packageMock, $this->ioMock);
    }

    /**
     * @test
     */
    public function throwsExceptionForEmptyKey()
    {
        // Use this instead when old PHP versions are dropped and minimum phpunit version can be raised:
        /**
        $this->expectException('\\InvalidArgumentException');
        $this->expectExceptionCode(1444039407);
        $this->subject->get(null);
         */
        try {
            $result = false;
            $this->subject->get(null);
        } catch (\InvalidArgumentException $e) {
            if ($e->getCode() === 1444039407) {
                $result = true;
            }
        }
        $this->assertTrue($result, 'Expected exception with expected code not received');
    }

    /**
     * @test
     */
    public function defaultConfigIsAppliedWhenNothingIsConfiguredInPackage()
    {
        $this->assertFalse($this->subject->get('always-add-alias-loader'));
        $this->assertTrue($this->subject->get('autoload-case-sensitivity'));
        $this->assertNull($this->subject->get('class-alias-maps'));
    }

    /**
     * @test
     */
    public function aliasMapConfigIsExtracted()
    {
        $this->packageMock->expects($this->any())->method('getExtra')->willReturn(
            array(
                'typo3/class-alias-loader' => array(
                    'class-alias-maps' => array(
                        'path/map.php'
                    )
                )
            )
        );

        $subject = new Config($this->packageMock, $this->ioMock);

        $this->assertSame(array('path/map.php'), $subject->get('class-alias-maps'));
    }

    /**
     * @test
     */
    public function aliasMapConfigIsExtractedFromDeprecatedKey()
    {
        $this->packageMock->expects($this->any())->method('getExtra')->willReturn(
            array(
                'helhum/class-alias-loader' => array(
                    'class-alias-maps' => array(
                        'path/map.php'
                    )
                )
            )
        );
        $this->ioMock->expects($this->once())->method('writeError');

        $subject = new Config($this->packageMock, $this->ioMock);

        $this->assertSame(array('path/map.php'), $subject->get('class-alias-maps'));
    }

    /**
     * @test
     */
    public function otherConfigIsExtracted()
    {
        $this->packageMock->expects($this->any())->method('getExtra')->willReturn(
            array(
                'typo3/class-alias-loader' => array(
                    'always-add-alias-loader' => true,
                    'autoload-case-sensitivity' => false,
                )
            )
        );

        $subject = new Config($this->packageMock, $this->ioMock);

        $this->assertTrue($subject->get('always-add-alias-loader'));
        $this->assertFalse($subject->get('autoload-case-sensitivity'));
    }

    /**
     * @test
     */
    public function otherConfigIsExtractedFromDeprecatedKey()
    {
        $this->packageMock->expects($this->any())->method('getExtra')->willReturn(
            array(
                'helhum/class-alias-loader' => array(
                    'always-add-alias-loader' => true,
                    'autoload-case-sensitivity' => false,
                )
            )
        );

        $subject = new Config($this->packageMock, $this->ioMock);

        $this->assertTrue($subject->get('always-add-alias-loader'));
        $this->assertFalse($subject->get('autoload-case-sensitivity'));
    }

    /**
     * @test
     */
    public function caseSensitivityConfigIsExtractedFromVeryDeprecatedKey()
    {
        $this->packageMock->expects($this->any())->method('getExtra')->willReturn(
            array(
                'autoload-case-sensitivity' => false,
            )
        );

        $subject = new Config($this->packageMock, $this->ioMock);

        $this->assertFalse($subject->get('autoload-case-sensitivity'));
    }
}