X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FTest%2FDebugCommand.php;fp=vendor%2Fdrupal%2Fconsole%2Fsrc%2FCommand%2FTest%2FDebugCommand.php;h=0000000000000000000000000000000000000000;hp=f5a9b2f484fd6dfbd1ba7e2b8648610d6ec6a862;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/vendor/drupal/console/src/Command/Test/DebugCommand.php b/vendor/drupal/console/src/Command/Test/DebugCommand.php deleted file mode 100644 index f5a9b2f48..000000000 --- a/vendor/drupal/console/src/Command/Test/DebugCommand.php +++ /dev/null @@ -1,198 +0,0 @@ -test_discovery = $test_discovery; - parent::__construct(); - } - - - protected function configure() - { - $this - ->setName('test:debug') - ->setDescription($this->trans('commands.test.debug.description')) - ->addArgument( - 'group', - InputArgument::OPTIONAL, - $this->trans('commands.test.debug.options.group'), - null - ) - ->addOption( - 'test-class', - null, - InputOption::VALUE_OPTIONAL, - $this->trans('commands.test.debug.arguments.test-class') - ); - } - - /** - * {@inheritdoc} - */ - protected function execute(InputInterface $input, OutputInterface $output) - { - $io = new DrupalStyle($input, $output); - //Registers namespaces for disabled modules. - $this->test_discovery->registerTestNamespaces(); - - $testClass = $input->getOption('test-class'); - $group = $input->getArgument('group'); - - if ($testClass) { - $this->testDetail($io, $testClass); - } else { - $this->testList($io, $group); - } - } - - private function testDetail(DrupalStyle $io, $test_class) - { - $testingGroups = $this->test_discovery->getTestClasses(null); - - $testDetails = null; - foreach ($testingGroups as $testing_group => $tests) { - foreach ($tests as $key => $test) { - if ($test['name'] == $test_class) { - $testDetails = $test; - break; - } - } - if ($testDetails !== null) { - break; - } - } - - $class = null; - if ($testDetails) { - $class = new \ReflectionClass($test['name']); - if (is_subclass_of($testDetails['name'], 'PHPUnit_Framework_TestCase')) { - $testDetails['type'] = 'phpunit'; - } else { - $testDetails = $this->test_discovery - ->getTestInfo($testDetails['name']); - $testDetails['type'] = 'simpletest'; - } - - $io->comment($testDetails['name']); - - $testInfo = []; - foreach ($testDetails as $key => $value) { - $testInfo [] = [$key, $value]; - } - - $io->table([], $testInfo); - - if ($class) { - $methods = $class->getMethods(\ReflectionMethod::IS_PUBLIC); - $io->info($this->trans('commands.test.debug.messages.methods')); - foreach ($methods as $method) { - if ($method->class == $testDetails['name'] && strpos($method->name, 'test') === 0) { - $io->simple($method->name); - } - } - } - } else { - $io->error($this->trans('commands.test.debug.messages.not-found')); - } - } - - protected function testList(DrupalStyle $io, $group) - { - $testingGroups = $this->test_discovery - ->getTestClasses(null); - - if (empty($group)) { - $tableHeader = [$this->trans('commands.test.debug.messages.group')]; - } else { - $tableHeader = [ - $this->trans('commands.test.debug.messages.class'), - $this->trans('commands.test.debug.messages.type') - ]; - - $io->writeln( - sprintf( - '%s: %s', - $this->trans('commands.test.debug.messages.group'), - $group - ) - ); - } - - $tableRows = []; - foreach ($testingGroups as $testing_group => $tests) { - if (empty($group)) { - $tableRows[] =[$testing_group]; - continue; - } - - if (!empty($group) && $group != $testing_group) { - continue; - } - - foreach ($tests as $test) { - if (is_subclass_of($test['name'], 'PHPUnit_Framework_TestCase')) { - $test['type'] = 'phpunit'; - } else { - $test['type'] = 'simpletest'; - } - $tableRows[] =[ - $test['name'], - $test['type'] - ]; - } - } - $io->table($tableHeader, $tableRows, 'compact'); - - if ($group) { - $io->success( - sprintf( - $this->trans('commands.test.debug.messages.success-group'), - $group - ) - ); - } else { - $io->success( - $this->trans('commands.test.debug.messages.success-groups') - ); - } - } -}