AddActionCommandTest   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 43
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 20
dl 0
loc 43
rs 10
c 0
b 0
f 0
wmc 2

4 Methods

Rating   Name   Duplication   Size   Complexity  
A hp$0 ➔ testExecuteForce() 0 23 1
A testExecuteDryRun() 0 16 1
testExecuteForce() 0 23 ?
A hp$0 ➔ write() 0 3 1
1
<?php
2
declare(strict_types=1);
3
4
namespace SlayerBirden\DFCodeGeneration\Command\Controllers;
5
6
use PHPUnit\Framework\TestCase;
7
use SlayerBirden\DFCodeGeneration\Command\Hubby;
8
use SlayerBirden\DFCodeGeneration\Generator\Config\FileConfigProvider;
9
use SlayerBirden\DFCodeGeneration\Writer\WriteInterface;
10
use Symfony\Component\Console\Tester\CommandTester;
11
12
class AddActionCommandTest extends TestCase
13
{
14
    public function testExecuteDryRun()
15
    {
16
        $writer = $this->prophesize(WriteInterface::class);
17
        $tester = new CommandTester(new AddActionCommand(null, $writer->reveal(), new FileConfigProvider()));
18
        $tester->execute([
19
            'entity' => Hubby::class,
20
        ]);
21
22
        $display = $tester->getDisplay();
23
24
        # controller
25
        $this->assertContains('AddHubbyAction', $display);
26
        # config
27
        $this->assertContains('ConfigProvider', $display);
28
        # factories
29
        $this->assertContains('HubbyHydratorFactory', $display);
30
    }
31
32
    public function testExecuteForce()
33
    {
34
        $writer = new class implements WriteInterface {
0 ignored issues
show
Coding Style introduced by
This class is not in CamelCase format.

Classes in PHP are usually named in CamelCase.

In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. The whole name starts with a capital letter as well.

Thus the name database provider becomes DatabaseProvider.

Loading history...
35
            public $content = '';
36
37
            public function write(string $content, string $fileName): void
38
            {
39
                $this->content .= $content;
40
            }
41
        };
42
        $tester = new CommandTester(new AddActionCommand(null, $writer, new FileConfigProvider()));
43
        $tester->execute([
44
            'entity' => Hubby::class,
45
            '--force' => true,
46
        ]);
47
48
        $content = $writer->content;
49
50
        $this->assertContains('AddHubbyAction', $content);
51
        # config
52
        $this->assertContains('ConfigProvider', $content);
53
        # factories
54
        $this->assertContains('HubbyHydratorFactory', $content);
55
    }
56
}
57