コード例 #1
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     $this->i['graph_value_type'] = 'ABSTRACT';
     $this->i['hide_graph_identifiers'] = true;
     $this->graph_data_title = array('PASSED', 'FAILED');
 }
コード例 #2
0
 public function __construct($rows, $columns, $table_data, &$result_file)
 {
     parent::__construct();
     if ($result_file instanceof pts_result_file) {
         $this->is_multi_way = $result_file->is_multi_way_comparison();
     }
     if ($this->is_multi_way) {
         foreach ($columns as &$c_str) {
             // in multi-way comparisons this will be reported above, so don't need to report it in the column header as it kills space
             if (($c = strpos($c_str, ':')) !== false) {
                 $c_str = substr($c_str, $c + 1);
             }
         }
     }
     $this->rows = $rows;
     $this->columns = $columns;
     $this->table_data = $table_data;
     // Do some calculations
     $this->longest_column_identifier = pts_strings::find_longest_string($this->columns);
     $this->longest_row_identifier = pts_strings::find_longest_string($this->rows);
     $this->i['graph_max_value'] = $this->find_longest_string_in_table_data($this->table_data);
     foreach ($this->columns as &$column) {
         if ($column instanceof pts_graph_ir_value == false) {
             $column = new pts_graph_ir_value($column);
         }
     }
 }
コード例 #3
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     $this->i['iveland_view'] = true;
     $this->i['graph_orientation'] = 'HORIZONTAL';
     $this->i['identifier_height'] = -1;
 }
コード例 #4
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     $this->i['hide_y_title'] = true;
     $this->i['graph_value_type'] = 'ABSTRACT';
     $this->i['hide_graph_identifiers'] = true;
 }
コード例 #5
0
 public function __construct(&$result_file)
 {
     $result_object = null;
     parent::__construct($result_object, $result_file);
     $this->i['graph_width'] = 1000;
     $this->i['graph_height'] = 600;
     return true;
 }
コード例 #6
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     $this->i['graph_value_type'] = 'ABSTRACT';
     $this->i['hide_graph_identifiers'] = false;
     $this->i['identifier_width'] = 0;
     $this->update_graph_dimensions($this->i['graph_width'], $this->i['graph_height'] + 100);
 }
コード例 #7
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     if ($result_file != null && $result_file instanceof pts_result_file) {
         $this->is_multi_way_comparison = $result_file->is_multi_way_comparison();
     }
     $this->i['min_identifier_size'] = 6;
     $this->i['identifier_width'] = -1;
 }
コード例 #8
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     $this->i['show_graph_key'] = true;
     $this->i['show_background_lines'] = true;
     $this->i['iveland_view'] = true;
     $this->i['identifier_width'] = -1;
     $this->i['min_identifier_size'] = 6.5;
     $this->i['plot_overview_text'] = true;
     $this->i['display_select_identifiers'] = false;
 }
 public function __construct(&$result_file, $intent = false)
 {
     parent::__construct();
     $this->intent = is_array($intent) ? $intent : array(array(), array());
     $this->graph_title = $result_file->get_title();
     $hw = $result_file->get_system_hardware();
     $sw = $result_file->get_system_software();
     $hw = pts_result_file_analyzer::system_component_string_to_array(array_shift($hw));
     $sw = pts_result_file_analyzer::system_component_string_to_array(array_shift($sw));
     $this->components = array_merge($hw, $sw);
     pts_render::report_system_notes_to_table($result_file, $this);
 }
コード例 #10
0
 public function __construct(&$result_object, &$result_file = null)
 {
     parent::__construct($result_object, $result_file);
     $this->i['show_graph_key'] = true;
     $this->i['show_background_lines'] = true;
     $this->i['iveland_view'] = true;
     $this->i['min_time'] = 0;
     $this->i['max_time'] = 0;
     $this->i['spread_time'] = 0;
     $this->i['plot_overview_text'] = true;
     //$this->i['graph_width'] = 1400;
     //$this->i['graph_height'] = 600;
     //$this->update_graph_dimensions(-1, -1, true);
 }
コード例 #11
0
 public function __construct($result_file)
 {
     $result_object = null;
     parent::__construct($result_object, $result_file);
     // System Identifiers
     if ($result_file->is_multi_way_comparison()) {
         // Multi way comparisons currently render the overview graph as blank
         $this->skip_graph = true;
         return;
     }
     $this->system_identifiers = $result_file->get_system_identifiers();
     if (count($this->system_identifiers) < 2) {
         // No point in generating this when there is only one identifier
         $this->skip_graph = true;
         return;
     }
     $result_objects = array();
     $test_titles = array();
     foreach ($result_file->get_result_objects() as $result_object) {
         if ($result_object->test_profile->get_display_format() == 'BAR_GRAPH') {
             array_push($result_objects, $result_object);
             array_push($test_titles, $result_object->test_profile->get_title());
         }
     }
     $result_object_count = count($result_objects);
     if ($result_object_count < 3) {
         // No point in generating this if there aren't many tests
         $this->skip_graph = true;
         return;
     }
     $result_file->override_result_objects($result_objects);
     // Test Titles
     $this->i['identifier_size'] = 6.5;
     $this->i['graph_width'] = 1000;
     list($longest_title_width, $longest_title_height) = pts_svg_dom::estimate_text_dimensions(pts_strings::find_longest_string($test_titles), $this->i['identifier_size']);
     $this->i['left_start'] += 20;
     $this->graphs_per_row = min(count($this->system_identifiers) > 10 ? 6 : 10, floor(($this->i['graph_width'] - $this->i['left_start'] - $this->i['left_end_right']) / ($longest_title_width + 4)));
     $this->graph_item_width = floor(($this->i['graph_width'] - $this->i['left_start'] - $this->i['left_end_right']) / $this->graphs_per_row);
     $this->graph_row_count = ceil($result_object_count / $this->graphs_per_row);
     $this->i['top_start'] += 20 + count($this->system_identifiers) / 3 * $this->i['identifier_size'];
     $height = $this->i['top_start'] + $this->graph_row_count * ($this->graph_row_height + 15);
     $this->graph_title = $result_file->get_title();
     $this->graph_y_title = null;
     $this->i['graph_proportion'] = 'HIB';
     $this->i['show_background_lines'] = true;
     $this->update_graph_dimensions($this->i['graph_width'], $height, true);
     $this->result_file = $result_file;
     return true;
 }
コード例 #12
0
 public function __construct($rows, $columns, $table_data)
 {
     pts_Graph::__construct();
     $this->rows = $rows;
     $this->columns = $columns;
     $this->table_data = $table_data;
     // Do some calculations
     $this->longest_column_identifier = pts_strings::find_longest_string($this->columns);
     $this->longest_row_identifier = pts_strings::find_longest_string($this->rows);
     foreach ($this->columns as &$column) {
         if ($column instanceof pts_graph_ir_value == false) {
             $column = new pts_graph_ir_value($column);
         }
     }
     $this->column_heading_vertical = false;
 }
コード例 #13
0
 public function __construct(&$result_file)
 {
     $result_object = null;
     parent::__construct($result_object, $result_file);
     // System Identifiers
     $system_identifiers = array();
     foreach ($result_file->get_systems() as $system) {
         array_push($system_identifiers, $system->get_identifier());
     }
     if ($result_file->is_multi_way_comparison() || count($system_identifiers) < 3) {
         // Multi way comparisons currently render the overview graph as blank
         // If there aren't more than 3 tests then don't render
         // If there aren't 3 or more systems then don't render
         $this->skip_graph = true;
         return;
     }
     $result_objects = $result_file->get_result_objects();
     usort($result_objects, array('pts_RadarOverviewGraph', 'cmp_result_object_sort'));
     foreach ($result_objects as &$r) {
         if (count($r->test_result_buffer->get_buffer_items()) != count($system_identifiers)) {
             continue;
         }
         if ($r->normalize_buffer_values() == false) {
             continue;
         }
         $r_multiple = max($r->test_result_buffer->get_values());
         if ($r_multiple > 10 || $r_multiple < 1.02) {
             continue;
         }
         $this->i['graph_max_value'] = max($this->i['graph_max_value'], $r_multiple);
         $r->test_result_buffer->sort_buffer_values(false);
         array_push($this->result_objects, $r);
     }
     if (count($this->result_objects) < 3) {
         // No point in generating this if there aren't many valid tests
         $this->skip_graph = true;
         return;
     }
     $this->i['identifier_size'] = 6.5;
     $this->i['graph_height'] = $this->i['graph_width'];
     $this->i['left_start'] = 35;
     $this->graph_title = $result_file->get_title();
     $this->graph_data_title = $system_identifiers;
     $this->i['iveland_view'] = true;
     $this->result_file =& $result_file;
     return true;
 }