Completed
Push — master ( 3a75ac...d68dc3 )
by Alejandro
23s
created

ApplicationConfigCustomizerTest   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 79
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 0
Metric Value
dl 79
loc 79
rs 10
c 0
b 0
f 0
wmc 4
lcom 1
cbo 2

4 Methods

Rating   Name   Duplication   Size   Complexity  
A configIsRequestedToTheUser() 14 14 1
A setUp() 7 7 1
A onlyMissingOptionsAreAsked() 16 16 1
A noQuestionsAskedIfImportedConfigContainsEverything() 18 18 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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