Skip to content
Extraits de code Groupes Projets
Valider 123deeec rédigé par mattab's avatar mattab
Parcourir les fichiers

./console tests:run will now run all test groups one after another

parent d986f558
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -22,11 +22,6 @@ use Symfony\Component\Console\Output\OutputInterface; ...@@ -22,11 +22,6 @@ use Symfony\Component\Console\Output\OutputInterface;
*/ */
class RunTests extends Command class RunTests extends Command
{ {
protected function getTestsGroups()
{
return array('Core', 'Plugins', 'Integration');
}
protected function configure() protected function configure()
{ {
$this->setName('tests:run'); $this->setName('tests:run');
...@@ -39,22 +34,26 @@ class RunTests extends Command ...@@ -39,22 +34,26 @@ class RunTests extends Command
{ {
$options = $input->getOption('options'); $options = $input->getOption('options');
$groups = $input->getArgument('group'); $groups = $input->getArgument('group');
$groups = explode(",", $groups); $groups = explode(",", $groups);
$groups = array_map('ucfirst', $groups); $groups = array_map('ucfirst', $groups);
$groups = array_filter('strlen', $groups); $groups = array_filter('strlen', $groups);
if(empty($groups)) { if(empty($groups)) {
$groups = $this->getTestsGroups(); $groups = $this->getTestsGroups();
if(\UITest::isPhantomJsAvailable()) {
$groups[] = 'UI';
}
} }
foreach($groups as $group) { foreach($groups as $group) {
$params = '--group ' . $group . ' ' . $options; $params = '--group ' . $group . ' ' . $options;
$cmd = sprintf('cd %s/tests/PHPUnit && phpunit %s', PIWIK_DOCUMENT_ROOT, $params); $cmd = sprintf('cd %s/tests/PHPUnit && phpunit %s', PIWIK_DOCUMENT_ROOT, $params);
$output->writeln('Executing command: ' . $cmd); $output->writeln('Executing command: <info>' . $cmd . '</info>');
passthru($cmd); passthru($cmd);
$output->writeln(); $output->writeln();
} }
} }
private function getTestsGroups()
{
return array('Core', 'Plugins', 'Integration', 'UI');
}
} }
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter