| Current Path : /home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Lib/Generator/ |
| Current File : //home/rtorresani/www/vendor/codeception/codeception/src/Codeception/Lib/Generator/Cest.php |
<?php
declare(strict_types=1);
namespace Codeception\Lib\Generator;
use Codeception\Exception\ConfigurationException;
use Codeception\Lib\Generator\Shared\Classname;
use Codeception\Util\Shared\Namespaces;
use Codeception\Util\Template;
class Cest
{
use Classname;
use Namespaces;
protected string $template = <<<EOF
<?php
{{namespace}}
class {{name}}Cest
{
public function _before({{actor}} \$I)
{
}
// tests
public function tryToTest({{actor}} \$I)
{
}
}
EOF;
protected ?string $name;
public function __construct(string $className, protected array $settings)
{
$this->name = $this->removeSuffix($className, 'Cest');
}
public function produce(): string
{
$actor = $this->settings['actor'];
if (!$actor) {
throw new ConfigurationException("Cest can't be created for suite without an actor. Add `actor: SomeTester` to suite config");
}
$namespaceHeader = $this->getNamespaceHeader($this->settings['namespace'] . '\\' . ucfirst($this->settings['suite']) . '\\' . $this->name);
if ($namespaceHeader) {
$namespaceHeader .= "\nuse " . $this->supportNamespace() . $actor . ";";
}
return (new Template($this->template))
->place('name', $this->getShortClassName($this->name))
->place('namespace', $namespaceHeader)
->place('actor', $actor)
->produce();
}
}