Install symfony3
Open a console and execute:$ composer require symfony/symfony
Create a project
Create a project "consoletest" by executing following command on the terminal$ symfony new consoletest.
Now you have a new project created.
Add your command
Create a file "CreateUserCommand.php" on folder "src/AppBundle/Command" and add following Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// src/AppBundle/Command/CreateUserCommand.php | |
namespace AppBundle\Command; | |
use Symfony\Component\Console\Command\Command; | |
use Symfony\Component\Console\Input\InputInterface; | |
use Symfony\Component\Console\Output\OutputInterface; | |
class CreateUserCommand extends Command | |
{ | |
/** | |
* Configures your command | |
*/ | |
protected function configure() | |
{ | |
$this->setName('app:create-user'); | |
$this->setDescription('creates a description'); | |
$this->setHelp('This creates a user'); | |
} | |
/** | |
* @param InputInterface $input | |
* @param OutputInterface $output | |
* @return bool | |
*/ | |
protected function execute(InputInterface $input, OutputInterface $output) | |
{ | |
$output->writeln( | |
[ | |
'User Creator', | |
'============', | |
'' | |
]); | |
$output->writeLn('Whoah!'); | |
$output->writeLn(['You are about to fuckup all users','Now you are at the botton of all']); | |
return true; | |
} | |
} |
The configure command sets up the command, setup name, description and , prints out helptexts if you want
The execute method does the final work and runs your commandcode. You can manipulate databases, filesystems, get a servicereponse or configure your application with it.
Run your command
At next you can test your command by typing :$ bin/console app:create-user
Create a unittest for your command
With symfony it´s very easy to test your new command. Here is a simple test for it:- Create a folder and a file "test/Appbundle/CreateUserCommandTest.php" with following content in it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Symfony\Component\Console\Tester\CommandTester; | |
use Symfony\Bundle\FrameworkBundle\Console\Application; | |
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | |
use AppBundle\Command\CreateUserCommand; | |
class CreateUserCommandTest extends KernelTestCase | |
{ | |
public function testExecute() | |
{ | |
$kernel = $this->createKernel(); | |
$kernel->boot(); | |
$application = new Application($kernel); | |
$application->add(new CreateUserCommand()); | |
$command = $application->find('app:create-user'); | |
$commandTester = new CommandTester($command); | |
$commandTester->execute(array( | |
'command' => $command->getName(), | |
'username' => 'Wouter', | |
)); | |
$output = $commandTester->getDisplay(); | |
$this->assertContains('Username: Wouter', $output); | |
// ... | |
} | |
} |
And now you can run
$ phpunit symfony
Keine Kommentare:
Kommentar veröffentlichen