Blame view

vendor/ezyang/htmlpurifier/tests/HTMLPurifier/SimpleTest/Reporter.php 1.88 KB
70f4f18b   Administrator   first_commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  <?php
  
  class HTMLPurifier_SimpleTest_Reporter extends HTMLReporter
  {
  
      protected $ac;
  
      public function __construct($encoding, $ac)
      {
          $this->ac = $ac;
          parent::__construct($encoding);
      }
  
      public function paintHeader($test_name)
      {
          parent::paintHeader($test_name);
  ?>
  <form action="" method="get" id="select">
      <select name="f">
          <option value="" style="font-weight:bold;"<?php if(!$this->ac['file']) {echo ' selected';} ?>>All Tests</option>
          <?php foreach($GLOBALS['HTMLPurifierTest']['Files'] as $file) { ?>
              <option value="<?php echo $file ?>"<?php
                  if ($this->ac['file'] == $file) echo ' selected';
              ?>><?php echo $file ?></option>
          <?php } ?>
      </select>
      <input type="checkbox" name="standalone" value="1" title="Standalone version?" <?php if($this->ac['standalone']) {echo 'checked="checked" ';} ?>/>
      <input type="submit" value="Go">
  </form>
  <?php
          flush();
      }
  
      public function paintFooter($test_name)
      {
          if (function_exists('xdebug_peak_memory_usage')) {
              $max_mem = number_format(xdebug_peak_memory_usage());
              echo "<div>Max memory usage: $max_mem bytes</div>";
          }
          parent::paintFooter($test_name);
      }
  
      protected function getCss()
      {
          $css = parent::getCss();
          $css .= '
          #select {position:absolute;top:0.2em;right:0.2em;}
          ';
          return $css;
      }
  
      public function getTestList()
      {
          // hacky; depends on a specific implementation of paintPass, etc.
          $list = parent::getTestList();
          $testcase = $list[1];
          if (class_exists($testcase, false)) $file = str_replace('_', '/', $testcase) . '.php';
          else $file = $testcase;
          $list[1] = '<a href="index.php?file=' . $file . '">' . $testcase . '</a>';
          return $list;
      }
  
  }
  
  // vim: et sw=4 sts=4