X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FOutput%2FNode%2FPrinter%2FPretty%2FPrettyScenarioPrinter.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FOutput%2FNode%2FPrinter%2FPretty%2FPrettyScenarioPrinter.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=378a9911858cf1b1227d4cc2fea8d82997a52494;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/Pretty/PrettyScenarioPrinter.php b/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/Pretty/PrettyScenarioPrinter.php deleted file mode 100644 index 378a99118..000000000 --- a/vendor/behat/behat/src/Behat/Behat/Output/Node/Printer/Pretty/PrettyScenarioPrinter.php +++ /dev/null @@ -1,148 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Behat\Output\Node\Printer\Pretty; - -use Behat\Behat\Output\Node\Printer\ScenarioPrinter; -use Behat\Gherkin\Node\FeatureNode; -use Behat\Gherkin\Node\ScenarioLikeInterface as Scenario; -use Behat\Gherkin\Node\TaggedNodeInterface; -use Behat\Testwork\Output\Formatter; -use Behat\Testwork\Output\Printer\OutputPrinter; -use Behat\Testwork\Tester\Result\TestResult; - -/** - * Prints scenario headers (with tags, keyword and long title) and footers. - * - * @author Konstantin Kudryashov - */ -final class PrettyScenarioPrinter implements ScenarioPrinter -{ - /** - * @var PrettyPathPrinter - */ - private $pathPrinter; - /** - * @var string - */ - private $indentText; - /** - * @var string - */ - private $subIndentText; - - /** - * Initializes printer. - * - * @param PrettyPathPrinter $pathPrinter - * @param integer $indentation - * @param integer $subIndentation - */ - public function __construct(PrettyPathPrinter $pathPrinter, $indentation = 2, $subIndentation = 2) - { - $this->pathPrinter = $pathPrinter; - $this->indentText = str_repeat(' ', intval($indentation)); - $this->subIndentText = $this->indentText . str_repeat(' ', intval($subIndentation)); - } - - /** - * {@inheritdoc} - */ - public function printHeader(Formatter $formatter, FeatureNode $feature, Scenario $scenario) - { - if ($scenario instanceof TaggedNodeInterface) { - $this->printTags($formatter->getOutputPrinter(), $scenario->getTags()); - } - - $this->printKeyword($formatter->getOutputPrinter(), $scenario->getKeyword()); - $this->printTitle($formatter->getOutputPrinter(), $scenario->getTitle()); - $this->pathPrinter->printScenarioPath($formatter, $feature, $scenario, mb_strlen($this->indentText, 'utf8')); - $this->printDescription($formatter->getOutputPrinter(), $scenario->getTitle()); - } - - /** - * {@inheritdoc} - */ - public function printFooter(Formatter $formatter, TestResult $result) - { - $formatter->getOutputPrinter()->writeln(); - } - - /** - * Prints scenario tags. - * - * @param OutputPrinter $printer - * @param string[] $tags - */ - private function printTags(OutputPrinter $printer, array $tags) - { - if (!count($tags)) { - return; - } - - $tags = array_map(array($this, 'prependTagWithTagSign'), $tags); - $printer->writeln(sprintf('%s{+tag}%s{-tag}', $this->indentText, implode(' ', $tags))); - } - - /** - * Prints scenario keyword. - * - * @param OutputPrinter $printer - * @param string $keyword - */ - private function printKeyword(OutputPrinter $printer, $keyword) - { - $printer->write(sprintf('%s{+keyword}%s:{-keyword}', $this->indentText, $keyword)); - } - - /** - * Prints scenario title (first line of long title). - * - * @param OutputPrinter $printer - * @param string $longTitle - */ - private function printTitle(OutputPrinter $printer, $longTitle) - { - $description = explode("\n", $longTitle); - $title = array_shift($description); - - if ('' !== $title) { - $printer->write(sprintf(' %s', $title)); - } - } - - /** - * Prints scenario description (other lines of long title). - * - * @param OutputPrinter $printer - * @param string $longTitle - */ - private function printDescription(OutputPrinter $printer, $longTitle) - { - $lines = explode("\n", $longTitle); - array_shift($lines); - - foreach ($lines as $line) { - $printer->writeln(sprintf('%s%s', $this->subIndentText, $line)); - } - } - - /** - * Prepends tags string with tag-sign. - * - * @param string $tag - * - * @return string - */ - private function prependTagWithTagSign($tag) - { - return '@' . $tag; - } -}