File: IniHelperTest.php

package info (click to toggle)
composer 2.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,528 kB
  • sloc: php: 83,030; makefile: 59; xml: 39
file content (101 lines) | stat: -rw-r--r-- 2,534 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php declare(strict_types=1);

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer\Test\Util;

use Composer\Util\IniHelper;
use Composer\XdebugHandler\XdebugHandler;
use Composer\Test\TestCase;

/**
 * @author John Stevenson <john-stevenson@blueyonder.co.uk>
 */
class IniHelperTest extends TestCase
{
    /**
     * @var string|false
     */
    public static $envOriginal;

    public function testWithNoIni(): void
    {
        $paths = [
            '',
        ];

        $this->setEnv($paths);
        self::assertStringContainsString('does not exist', IniHelper::getMessage());
        self::assertEquals($paths, IniHelper::getAll());
    }

    public function testWithLoadedIniOnly(): void
    {
        $paths = [
            'loaded.ini',
        ];

        $this->setEnv($paths);
        self::assertStringContainsString('loaded.ini', IniHelper::getMessage());
    }

    public function testWithLoadedIniAndAdditional(): void
    {
        $paths = [
            'loaded.ini',
            'one.ini',
            'two.ini',
        ];

        $this->setEnv($paths);
        self::assertStringContainsString('multiple ini files', IniHelper::getMessage());
        self::assertEquals($paths, IniHelper::getAll());
    }

    public function testWithoutLoadedIniAndAdditional(): void
    {
        $paths = [
            '',
            'one.ini',
            'two.ini',
        ];

        $this->setEnv($paths);
        self::assertStringContainsString('multiple ini files', IniHelper::getMessage());
        self::assertEquals($paths, IniHelper::getAll());
    }

    public static function setUpBeforeClass(): void
    {
        // Register our name with XdebugHandler
        $xdebug = new XdebugHandler('composer');
        // Save current state
        self::$envOriginal = getenv('COMPOSER_ORIGINAL_INIS');
    }

    public static function tearDownAfterClass(): void
    {
        // Restore original state
        if (false !== self::$envOriginal) {
            putenv('COMPOSER_ORIGINAL_INIS='.self::$envOriginal);
        } else {
            putenv('COMPOSER_ORIGINAL_INIS');
        }
    }

    /**
     * @param string[] $paths
     */
    protected function setEnv(array $paths): void
    {
        putenv('COMPOSER_ORIGINAL_INIS='.implode(PATH_SEPARATOR, $paths));
    }
}