Blame view

test-output/testng-reports.js 3.47 KB
fdd4bb76   zengjin55   windows
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  $(document).ready(function() {
      $('a.navigator-link').click(function() {
          // Extract the panel for this link
          var panel = getPanelName($(this));
  
          // Mark this link as currently selected
          $('.navigator-link').parent().removeClass('navigator-selected');
          $(this).parent().addClass('navigator-selected');
  
          showPanel(panel);
      });
  
      installMethodHandlers('failed');
      installMethodHandlers('skipped');
      installMethodHandlers('passed', true); // hide passed methods by default
  
      $('a.method').click(function() {
          showMethod($(this));
          return false;
      });
  
      // Hide all the panels and display the first one (do this last
      // to make sure the click() will invoke the listeners)
      $('.panel').hide();
      $('.navigator-link').first().click();
  
      // Collapse/expand the suites
      $('a.collapse-all-link').click(function() {
          var contents = $('.navigator-suite-content');
          if (contents.css('display') == 'none') {
              contents.show();
          } else {
              contents.hide();
          }
      });
  });
  
  // The handlers that take care of showing/hiding the methods
  function installMethodHandlers(name, hide) {
      function getContent(t) {
      return $('.method-list-content.' + name + "." + t.attr('panel-name'));
      }
  
      function getHideLink(t, name) {
          var s = 'a.hide-methods.' + name + "." + t.attr('panel-name');
          return $(s);
      }
  
      function getShowLink(t, name) {
          return $('a.show-methods.' + name + "." + t.attr('panel-name'));
      }
  
      function getMethodPanelClassSel(element, name) {
          var panelName = getPanelName(element);
      var sel = '.' + panelName + "-class-" + name;
          return $(sel);
      }
  
      $('a.hide-methods.' + name).click(function() {
          var w = getContent($(this));
          w.hide();
          getHideLink($(this), name).hide();
          getShowLink($(this), name).show();
      getMethodPanelClassSel($(this), name).hide();
      });
  
      $('a.show-methods.' + name).click(function() {
          var w = getContent($(this));
          w.show();
          getHideLink($(this), name).show();
          getShowLink($(this), name).hide();
      showPanel(getPanelName($(this)));
      getMethodPanelClassSel($(this), name).show();
      });
  
      if (hide) {
          $('a.hide-methods.' + name).click();
      } else {
          $('a.show-methods.' + name).click();
      }
  }
  
  function getHashForMethod(element) {
      return element.attr('hash-for-method');
  }
  
  function getPanelName(element) {
      return element.attr('panel-name');
  }
  
  function showPanel(panelName) {
      $('.panel').hide();
      var panel = $('.panel[panel-name="' + panelName + '"]');
      panel.show();
  }
  
  function showMethod(element) {
      var hashTag = getHashForMethod(element);
      var panelName = getPanelName(element);
      showPanel(panelName);
      var current = document.location.href;
      var base = current.substring(0, current.indexOf('#'))
      document.location.href = base + '#' + hashTag;
      var newPosition = $(document).scrollTop() - 65;
      $(document).scrollTop(newPosition);
  }
  
  function drawTable() {
      for (var i = 0; i < suiteTableInitFunctions.length; i++) {
          window[suiteTableInitFunctions[i]]();
      }
  
      for (var k in window.suiteTableData) {
          var v = window.suiteTableData[k];
          var div = v.tableDiv;
          var data = v.tableData
          var table = new google.visualization.Table(document.getElementById(div));
          table.draw(data, {
              showRowNumber : false
          });
      }
  }