64 lines
1.7 KiB
PHP
64 lines
1.7 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* @file
|
||
|
* Contains \Drupal\Console\Test\Command\GeneratorEntityContentCommandTest.
|
||
|
*/
|
||
|
|
||
|
namespace Drupal\Console\Test\Command;
|
||
|
|
||
|
use Drupal\Console\Command\Generate\EntityContentCommand;
|
||
|
use Symfony\Component\Console\Tester\CommandTester;
|
||
|
use Drupal\Console\Test\DataProvider\EntityContentDataProviderTrait;
|
||
|
|
||
|
class GeneratorEntityContentCommandTest extends GenerateCommandTest
|
||
|
{
|
||
|
use EntityContentDataProviderTrait;
|
||
|
|
||
|
/**
|
||
|
* EntityContent generator test
|
||
|
*
|
||
|
* @param $module
|
||
|
* @param $entity_name
|
||
|
* @param $entity_class
|
||
|
* @param $label
|
||
|
* @param $base_path
|
||
|
*
|
||
|
* @dataProvider commandData
|
||
|
*/
|
||
|
public function testGenerateEntityContent(
|
||
|
$module,
|
||
|
$entity_name,
|
||
|
$entity_class,
|
||
|
$label,
|
||
|
$base_path
|
||
|
) {
|
||
|
$command = new EntityContentCommand($this->getHelperSet());
|
||
|
$command->setHelperSet($this->getHelperSet());
|
||
|
$command->setGenerator($this->getGenerator());
|
||
|
|
||
|
$commandTester = new CommandTester($command);
|
||
|
|
||
|
$code = $commandTester->execute(
|
||
|
[
|
||
|
'--module' => $module,
|
||
|
'--entity-name' => $entity_name,
|
||
|
'--entity-class' => $entity_class,
|
||
|
'--label' => $label,
|
||
|
'--base-path' => $base_path,
|
||
|
],
|
||
|
['interactive' => false]
|
||
|
);
|
||
|
|
||
|
$this->assertEquals(0, $code);
|
||
|
}
|
||
|
|
||
|
private function getGenerator()
|
||
|
{
|
||
|
return $this
|
||
|
->getMockBuilder('Drupal\Console\Generator\EntityContentGenerator')
|
||
|
->disableOriginalConstructor()
|
||
|
->setMethods(['generate'])
|
||
|
->getMock();
|
||
|
}
|
||
|
}
|