-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCreateControllerCommandTest.php
75 lines (63 loc) · 2.15 KB
/
CreateControllerCommandTest.php
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
<?php
namespace Buki\Tests\Commands;
use Buki\Commands\CreateControllerCommand;
use Buki\Commands\Exception;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Tester\CommandTester;
/**
* Class CreateControllerCommandTest
*
* @package Buki\Tests\Commands
*/
class CreateControllerCommandTest extends TestCase
{
/** @var CommandTester */
private $commandTester;
protected function setUp()
{
$application = new Application();
$application->add(new CreateControllerCommand());
$command = $application->find('make:controller');
$this->commandTester = new CommandTester($command);
}
public function testExecute()
{
$this->commandTester->execute([
'name' => 'TestController',
'path' => __DIR__ . '/Controllers',
'namespace' => 'Controllers',
]);
$this->assertEquals(Command::SUCCESS, $this->commandTester->getStatusCode());
}
public function testExecuteShouldThrowExceptionForEmptyName()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Not enough arguments (missing: "name")');
$this->commandTester->execute([
// name is required
]);
}
public function testExecuteShouldThrowExceptionForExistentController()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage('The controller already exists!');
$this->commandTester->execute([
'name' => 'TestController',
'path' => __DIR__ . '/Controllers',
'namespace' => 'Controllers',
]);
}
public function testExecuteShouldThrowExceptionForMkdirPermissionDenied()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage('mkdir(): Permission denied');
$this->commandTester->execute([
'name' => 'TestController',
'path' => '/SomeDirectory',
'namespace' => 'Controllers',
]);
}
}