/**
     * @covers ::getTestInfo
     * @expectedException \Drupal\simpletest\Exception\MissingSummaryLineException
     * @expectedExceptionMessage Missing PHPDoc summary line in Drupal\field\Tests\BulkDeleteTest
     */
    public function testTestInfoParserMissingSummary()
    {
        $classname = 'Drupal\\field\\Tests\\BulkDeleteTest';
        $doc_comment = <<<EOT
/**
 * @group field
 */
EOT;
        \Drupal\simpletest\TestDiscovery::getTestInfo($classname, $doc_comment);
    }
예제 #2
0
 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'));
     }
 }
예제 #3
0
    /**
     * @covers ::getTestInfo
     */
    public function testTestInfoParserMissingSummary()
    {
        $classname = 'Drupal\\field\\Tests\\BulkDeleteTest';
        $doc_comment = <<<EOT
/**
 * @group field
 */
EOT;
        $info = \Drupal\simpletest\TestDiscovery::getTestInfo($classname, $doc_comment);
        $this->assertEmpty($info['description']);
    }
예제 #4
0
 /**
  * {@inheritdoc}
  */
 public function buildForm(array $form, array &$form_state, $test_id = NULL)
 {
     $this->buildStatusImageMap();
     // Make sure there are test results to display and a re-run is not being
     // performed.
     $results = array();
     if (is_numeric($test_id) && !($results = $this->getResults($test_id))) {
         drupal_set_message($this->t('No test results to display.'), 'error');
         return new RedirectResponse(url('admin/config/development/testing', array('absolute' => TRUE)));
     }
     // Load all classes and include CSS.
     $form['#attached']['css'][] = drupal_get_path('module', 'simpletest') . '/css/simpletest.module.css';
     // Keep track of which test cases passed or failed.
     $filter = array('pass' => array(), 'fail' => array());
     // Summary result widget.
     $form['result'] = array('#type' => 'fieldset', '#title' => $this->t('Results'));
     $form['result']['summary'] = $summary = array('#theme' => 'simpletest_result_summary', '#pass' => 0, '#fail' => 0, '#exception' => 0, '#debug' => 0);
     simpletest_classloader_register();
     // Cycle through each test group.
     $header = array($this->t('Message'), $this->t('Group'), $this->t('Filename'), $this->t('Line'), $this->t('Function'), array('colspan' => 2, 'data' => $this->t('Status')));
     $form['result']['results'] = array();
     foreach ($results as $group => $assertions) {
         // Create group details with summary information.
         $info = TestDiscovery::getTestInfo(new \ReflectionClass($group));
         $form['result']['results'][$group] = array('#type' => 'details', '#title' => $info['name'], '#open' => TRUE, '#description' => $info['description']);
         $form['result']['results'][$group]['summary'] = $summary;
         $group_summary =& $form['result']['results'][$group]['summary'];
         // Create table of assertions for the group.
         $rows = array();
         foreach ($assertions as $assertion) {
             $row = array();
             // Assertion messages are in code, so we assume they are safe.
             $row[] = SafeMarkup::set($assertion->message);
             $row[] = $assertion->message_group;
             $row[] = drupal_basename($assertion->file);
             $row[] = $assertion->line;
             $row[] = $assertion->function;
             $row[] = $this->statusImageMap[$assertion->status];
             $class = 'simpletest-' . $assertion->status;
             if ($assertion->message_group == 'Debug') {
                 $class = 'simpletest-debug';
             }
             $rows[] = array('data' => $row, 'class' => array($class));
             $group_summary['#' . $assertion->status]++;
             $form['result']['summary']['#' . $assertion->status]++;
         }
         $form['result']['results'][$group]['table'] = array('#type' => 'table', '#header' => $header, '#rows' => $rows);
         // Set summary information.
         $group_summary['#ok'] = $group_summary['#fail'] + $group_summary['#exception'] == 0;
         $form['result']['results'][$group]['#open'] = !$group_summary['#ok'];
         // Store test group (class) as for use in filter.
         $filter[$group_summary['#ok'] ? 'pass' : 'fail'][] = $group;
     }
     // Overall summary status.
     $form['result']['summary']['#ok'] = $form['result']['summary']['#fail'] + $form['result']['summary']['#exception'] == 0;
     // Actions.
     $form['#action'] = url('admin/config/development/testing/results/re-run');
     $form['action'] = array('#type' => 'fieldset', '#title' => $this->t('Actions'), '#attributes' => array('class' => array('container-inline')), '#weight' => -11);
     $form['action']['filter'] = array('#type' => 'select', '#title' => 'Filter', '#options' => array('all' => $this->t('All (@count)', array('@count' => count($filter['pass']) + count($filter['fail']))), 'pass' => $this->t('Pass (@count)', array('@count' => count($filter['pass']))), 'fail' => $this->t('Fail (@count)', array('@count' => count($filter['fail'])))));
     $form['action']['filter']['#default_value'] = $filter['fail'] ? 'fail' : 'all';
     // Categorized test classes for to be used with selected filter value.
     $form['action']['filter_pass'] = array('#type' => 'hidden', '#default_value' => implode(',', $filter['pass']));
     $form['action']['filter_fail'] = array('#type' => 'hidden', '#default_value' => implode(',', $filter['fail']));
     $form['action']['op'] = array('#type' => 'submit', '#value' => $this->t('Run tests'));
     $form['action']['return'] = array('#type' => 'link', '#title' => $this->t('Return to list'), '#href' => 'admin/config/development/testing');
     if (is_numeric($test_id)) {
         simpletest_clean_results_table($test_id);
     }
     return $form;
 }
 /**
  * Adds the result form to a $form.
  *
  * This is a static method so that run-tests.sh can use it to generate a
  * results page completely external to Drupal. This is why the UI strings are
  * not wrapped in t().
  *
  * @param array $form
  *   The form to attach the results to.
  * @param array $test_results
  *   The simpletest results.
  *
  * @return array
  *   A list of tests the passed and failed. The array has two keys, 'pass' and
  *   'fail'. Each contains a list of test classes.
  *
  * @see simpletest_script_open_browser()
  * @see run-tests.sh
  */
 public static function addResultForm(array &$form, array $results)
 {
     // Transform the test results to be grouped by test class.
     $test_results = array();
     foreach ($results as $result) {
         if (!isset($test_results[$result->test_class])) {
             $test_results[$result->test_class] = array();
         }
         $test_results[$result->test_class][] = $result;
     }
     $image_status_map = static::buildStatusImageMap();
     // Keep track of which test cases passed or failed.
     $filter = array('pass' => array(), 'fail' => array());
     // Summary result widget.
     $form['result'] = array('#type' => 'fieldset', '#title' => 'Results', '#attributes' => array());
     $form['result']['summary'] = $summary = array('#theme' => 'simpletest_result_summary', '#pass' => 0, '#fail' => 0, '#exception' => 0, '#debug' => 0);
     \Drupal::service('test_discovery')->registerTestNamespaces();
     // Cycle through each test group.
     $header = array('Message', 'Group', 'Filename', 'Line', 'Function', array('colspan' => 2, 'data' => 'Status'));
     $form['result']['results'] = array();
     foreach ($test_results as $group => $assertions) {
         // Create group details with summary information.
         $info = TestDiscovery::getTestInfo($group);
         $form['result']['results'][$group] = array('#type' => 'details', '#title' => $info['name'], '#open' => TRUE, '#description' => $info['description']);
         $form['result']['results'][$group]['summary'] = $summary;
         $group_summary =& $form['result']['results'][$group]['summary'];
         // Create table of assertions for the group.
         $rows = array();
         foreach ($assertions as $assertion) {
             $row = array();
             $row[] = SafeMarkup::checkAdminXss($assertion->message);
             $row[] = $assertion->message_group;
             $row[] = \Drupal::service('file_system')->basename($assertion->file);
             $row[] = $assertion->line;
             $row[] = $assertion->function;
             $row[] = ['data' => $image_status_map[$assertion->status]];
             $class = 'simpletest-' . $assertion->status;
             if ($assertion->message_group == 'Debug') {
                 $class = 'simpletest-debug';
             }
             $rows[] = array('data' => $row, 'class' => array($class));
             $group_summary['#' . $assertion->status]++;
             $form['result']['summary']['#' . $assertion->status]++;
         }
         $form['result']['results'][$group]['table'] = array('#type' => 'table', '#header' => $header, '#rows' => $rows);
         // Set summary information.
         $group_summary['#ok'] = $group_summary['#fail'] + $group_summary['#exception'] == 0;
         $form['result']['results'][$group]['#open'] = !$group_summary['#ok'];
         // Store test group (class) as for use in filter.
         $filter[$group_summary['#ok'] ? 'pass' : 'fail'][] = $group;
     }
     // Overall summary status.
     $form['result']['summary']['#ok'] = $form['result']['summary']['#fail'] + $form['result']['summary']['#exception'] == 0;
     return $filter;
 }