Passed
Push — master ( 53f538...807973 )
by Oleg
02:07
created

DeleteActionCommandTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 22
dl 0
loc 45
rs 10
c 0
b 0
f 0
wmc 2

4 Methods

Rating   Name   Duplication   Size   Complexity  
testExecuteForce() 0 24 ?
A hp$0 ➔ write() 0 3 1
A testExecuteDryRun() 0 17 1
A hp$0 ➔ testExecuteForce() 0 24 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\Writer\WriteInterface;
9
use Symfony\Component\Console\Tester\CommandTester;
10
11
final class DeleteActionCommandTest extends TestCase
12
{
13
    public function testExecuteDryRun()
14
    {
15
        $writer = $this->prophesize(WriteInterface::class);
16
        $tester = new CommandTester(new DeleteActionCommand(null, $writer->reveal()));
17
        $tester->execute([
18
            'entity' => Hubby::class,
19
        ]);
20
21
        $display = $tester->getDisplay();
22
23
        # controller
24
        $this->assertContains('DeleteHubbyAction', $display);
25
        # config
26
        $this->assertContains('ConfigProvider', $display);
27
        # factories
28
        $this->assertContains('HubbyHydratorFactory', $display);
29
        $this->assertContains('HubbyResourceMiddlewareFactory', $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 DeleteActionCommand(null, $writer));
43
        $tester->execute([
44
            'entity' => Hubby::class,
45
            '--force' => true,
46
        ]);
47
48
        $content = $writer->content;
49
50
        $this->assertContains('DeleteHubbyAction', $content);
51
        # config
52
        $this->assertContains('ConfigProvider', $content);
53
        # factories
54
        $this->assertContains('HubbyHydratorFactory', $content);
55
        $this->assertContains('HubbyResourceMiddlewareFactory', $content);
56
    }
57
}
58