Completed
Pull Request — master (#224)
by Alejandro
03:38
created

onlyMissingOptionsAreAsked()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16

Duplication

Lines 16
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 16
loc 16
rs 9.7333
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace ShlinkioTest\Shlink\Installer\Config\Plugin;
5
6
use PHPUnit\Framework\TestCase;
7
use Prophecy\Argument;
8
use Prophecy\Prophecy\ObjectProphecy;
9
use Shlinkio\Shlink\Installer\Config\Plugin\ApplicationConfigCustomizer;
10
use Shlinkio\Shlink\Installer\Model\CustomizableAppConfig;
11
use Symfony\Component\Console\Style\SymfonyStyle;
12
13 View Code Duplication
class ApplicationConfigCustomizerTest extends TestCase
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
14
{
15
    /**
16
     * @var ApplicationConfigCustomizer
17
     */
18
    private $plugin;
19
    /**
20
     * @var ObjectProphecy
21
     */
22
    private $io;
23
24
    public function setUp()
25
    {
26
        $this->io = $this->prophesize(SymfonyStyle::class);
27
        $this->io->title(Argument::any())->willReturn(null);
28
29
        $this->plugin = new ApplicationConfigCustomizer();
30
    }
31
32
    /**
33
     * @test
34
     */
35
    public function configIsRequestedToTheUser()
36
    {
37
        $ask = $this->io->ask(Argument::cetera())->willReturn('the_secret');
38
        $config = new CustomizableAppConfig();
39
40
        $this->plugin->process($this->io->reveal(), $config);
41
42
        $this->assertTrue($config->hasApp());
43
        $this->assertEquals([
44
            'SECRET' => 'the_secret',
45
            'DISABLE_TRACK_PARAM' => 'the_secret',
46
        ], $config->getApp());
47
        $ask->shouldHaveBeenCalledTimes(2);
48
    }
49
50
    /**
51
     * @test
52
     */
53
    public function onlyMissingOptionsAreAsked()
54
    {
55
        $ask = $this->io->ask(Argument::cetera())->willReturn('disable_param');
56
        $config = new CustomizableAppConfig();
57
        $config->setApp([
58
            'SECRET' => 'foo',
59
        ]);
60
61
        $this->plugin->process($this->io->reveal(), $config);
62
63
        $this->assertEquals([
64
            'SECRET' => 'foo',
65
            'DISABLE_TRACK_PARAM' => 'disable_param',
66
        ], $config->getApp());
67
        $ask->shouldHaveBeenCalledTimes(1);
68
    }
69
70
    /**
71
     * @test
72
     */
73
    public function noQuestionsAskedIfImportedConfigContainsEverything()
74
    {
75
        $ask = $this->io->ask(Argument::cetera())->willReturn('the_new_secret');
76
77
        $config = new CustomizableAppConfig();
78
        $config->setApp([
79
            'SECRET' => 'foo',
80
            'DISABLE_TRACK_PARAM' => 'the_new_secret',
81
        ]);
82
83
        $this->plugin->process($this->io->reveal(), $config);
84
85
        $this->assertEquals([
86
            'SECRET' => 'foo',
87
            'DISABLE_TRACK_PARAM' => 'the_new_secret',
88
        ], $config->getApp());
89
        $ask->shouldNotHaveBeenCalled();
90
    }
91
}
92