protected function printErrorLevel(Output $output)
 {
     $fatals = $output->getMessageCount(Output::FATAL);
     $errors = $output->getMessageCount(Output::ERROR);
     $warnings = $output->getMessageCount(Output::WARNING);
     $notices = $output->getMessageCount(Output::NOTICE);
     if ($fatals > $this->numFatal) {
         $this->output->write("<fatal>F</fatal>");
     } else {
         if ($errors > $this->numError) {
             $this->output->write("<error>E</error>");
         } else {
             if ($warnings > $this->numWarning) {
                 $this->output->write("<warning>W</warning>");
             } else {
                 if ($notices > $this->numNotice) {
                     $this->output->write("<notice>N</notice>");
                 } else {
                     $this->output->write(".");
                 }
             }
         }
     }
     $this->progress++;
     if ($this->progress % (79 - $this->progressLength) == 0) {
         $this->output->write(' ' . sprintf('%' . strlen($this->maxProgress) . 's', $this->progress));
         $this->output->write(' / ' . $this->maxProgress);
         $this->output->writeln(' (' . sprintf('%3s', floor(100 * ($this->progress / $this->maxProgress))) . '%)');
     }
     $this->numFatal = $fatals;
     $this->numError = $errors;
     $this->numWarning = $warnings;
     $this->numNotice = $notices;
 }
 /**
  * Get all messages saved into the message queue.
  * @return array Array with messages
  */
 public function getMessages()
 {
     $messages = parent::getMessages();
     sort($messages);
     return $messages;
 }
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     if (!defined('IN_PHPBB')) {
         // Need to set this, otherwise we can not load the language files
         define('IN_PHPBB', true);
     }
     $originIso = $input->getArgument('origin-iso');
     $sourceIso = $input->getOption('source-iso');
     $phpbbVersion = $input->getOption('phpbb-version');
     $packageDir = $input->getOption('package-dir');
     $languageDir = $input->getOption('language-dir');
     $debug = $input->getOption('debug');
     $displayNotices = $input->getOption('display-notices');
     if (!in_array($phpbbVersion, array('3.0', '3.1', '3.2'))) {
         throw new \RuntimeException('Invalid phpbb-version, allowed versions: 3.0, 3.1 and 3.2');
     }
     $output = new Output($output, $debug);
     $output->setFormatter(new OutputFormatter($output->isDecorated()));
     $output->writeln("<noticebg>Running Language Pack Validator on language {$originIso}.</noticebg>");
     $output->writeln('');
     $runner = new ValidatorRunner($input, $output);
     $runner->setPhpbbVersion($phpbbVersion)->setDebug($debug);
     if ($packageDir !== null) {
         $runner->setSource($sourceIso, $packageDir . '/' . $sourceIso, 'language/' . $sourceIso . '/')->setOrigin($originIso, $packageDir . '/' . $originIso, 'language/' . $originIso . '/');
     } else {
         if ($languageDir !== null) {
             $runner->setSource($sourceIso, $languageDir . '/' . $sourceIso, '')->setOrigin($originIso, $languageDir . '/' . $originIso, '');
         } else {
             $runner->setSource($sourceIso, $phpbbVersion . '/' . $sourceIso, 'language/' . $sourceIso . '/')->setOrigin($originIso, $phpbbVersion . '/' . $originIso, 'language/' . $originIso . '/');
         }
     }
     $output->writelnIfDebug("Setup ValidatorRunner");
     $runner->runValidators();
     $output->writeln('');
     $output->writeln("Test results for language pack:");
     $output->writeln('');
     $found_msg = '';
     $found_msg .= 'Fatal: ' . $output->getMessageCount(Output::FATAL);
     $found_msg .= ', Error: ' . $output->getMessageCount(Output::ERROR);
     $found_msg .= ', Warning: ' . $output->getMessageCount(Output::WARNING);
     $found_msg .= ', Notice: ' . $output->getMessageCount(Output::NOTICE);
     if ($output->getMessageCount(Output::FATAL)) {
         $output->writeln('<fatal>' . str_repeat(' ', strlen($found_msg)) . '</fatal>');
         $output->writeln('<fatal>Validation: FAILED' . str_repeat(' ', strlen($found_msg) - 18) . '</fatal>');
         $output->writeln('<fatal>' . $found_msg . '</fatal>');
         $output->writeln('');
         $output->writeln('');
     } else {
         $output->writeln('<success>PASSED: ' . $found_msg . '</success>');
     }
     foreach ($output->getMessages() as $msg) {
         /** @var \Phpbb\TranslationValidator\Output\Message $msg */
         if ($msg->getType() === Output::NOTICE && !$debug && !$displayNotices) {
             continue;
         }
         $output->writeln((string) $msg);
         $output->writeln('');
     }
     $output->writeln('');
     if ($output->getMessageCount(Output::FATAL)) {
         $output->writeln('<fatal>' . str_repeat(' ', strlen($found_msg)) . '</fatal>');
         $output->writeln('<fatal>Validation: FAILED' . str_repeat(' ', strlen($found_msg) - 18) . '</fatal>');
         $output->writeln('<fatal>' . $found_msg . '</fatal>');
     } else {
         $output->writeln('<success>PASSED: ' . $found_msg . '</success>');
     }
     return $output->getMessageCount(Output::FATAL) > 0 ? 1 : 0;
 }
 public function assertOutputMessages($expected)
 {
     sort($expected);
     $this->assertEquals($expected, $this->output->getMessages());
 }