How to use process_request_to_attributes method of pts_result_viewer_embed class

Best Phoronix-test-suite code snippet using pts_result_viewer_embed.process_request_to_attributes

pts_result_viewer_embed.php

Source:pts_result_viewer_embed.php Github

copy

Full Screen

...108 self::process_result_modify_pre_render($result_file, $this->can_modify_results, $this->can_delete_results);109 $result_file->avoid_duplicate_identifiers();110 $extra_attributes = null;111 $html_options = self::get_html_options_markup($result_file, $_REQUEST, $this->result_public_id, $this->can_delete_results);112 self::process_request_to_attributes($_REQUEST, $result_file, $extra_attributes);113 $PAGE .= self::get_html_sort_bar($result_file, $_REQUEST);114 $PAGE .= '<h1 id="result_file_title" placeholder="Title">' . pts_strings::sanitize($result_file->get_title()) . '</h1>';115 $PAGE .= '<p id="result_file_desc" placeholder="Description">' . str_replace(PHP_EOL, '<br />', pts_strings::sanitize($result_file->get_description())) . '</p>';116 $PAGE .= '<div id="result-settings">';117 if($this->can_modify_results)118 {119 $PAGE .= ' <input type="submit" id="save_result_file_meta_button" value="Save" onclick="javascript:save_result_file_meta(\'' . $this->result_public_id . '\'); return false;" style="display: none;">';120 $PAGE .= ' <input type="submit" id="edit_result_file_meta_button" value="Edit" onclick="javascript:edit_result_file_meta(); return false;">';121 }122 if($this->can_delete_results && !defined('PHOROMATIC_SERVER'))123 {124 $PAGE .= ' <input type="submit" value="Delete Result File" onclick="javascript:delete_result_file(\'' . $this->result_public_id . '\'); return false;">';125 }126 $PAGE .= $this->post_description_message;127 $PAGE .= '<div style="text-align: center;">Jump To <a href="#table">Table</a> - <a href="#results">Results</a></div>';128 $PAGE .= '<hr /><div style="font-size: 12pt;">' . $html_options . '</div><hr style="clear: both;" />';129 $PAGE .= self::process_helper_html($_REQUEST, $result_file, $extra_attributes, $this->can_modify_results, $this->can_delete_results);130 $PAGE .= '</div>';131 if($this->include_page_print_only_helpers)132 {133 $PAGE .= '<div class="print_notes">' . pts_result_file_output::result_file_to_system_html($result_file) . '</div>';134 }135 $PAGE .= '<div id="result_overview_area">';136 $intent = -1;137 if($result_file->get_system_count() == 1 || ($intent = pts_result_file_analyzer::analyze_result_file_intent($result_file, $intent, true)))138 {139 $table = new pts_ResultFileCompactSystemsTable($result_file, $intent);140 }141 else if($result_file->get_system_count() > 0)142 {143 $table = new pts_ResultFileSystemsTable($result_file);144 }145 $rendered = pts_render::render_graph_inline_embed($table, $result_file, $extra_attributes);146 $PAGE .= '<p style="text-align: center; overflow: auto;" class="result_object" id="result_file_system_table">' . $rendered . '</p>';147 $PAGE .= $this->graph_export_handler($rendered);148 if($result_file->get_system_count() == 2)149 {150 $graph = new pts_graph_run_vs_run($result_file);151 if($graph->renderGraph())152 {153 $rendered = pts_render::render_graph_inline_embed($graph, $result_file, $extra_attributes);154 $PAGE .= '<p style="text-align: center; overflow: auto;" class="result_object">' . $rendered . '</p>';155 $PAGE .= $this->graph_export_handler($rendered);156 }157 }158 else if($result_file->get_system_count() > 12 && false) // TODO determine when this is sane enough to enable159 {160 $graph = new pts_graph_mini_overview($result_file, '');161 if($graph->renderGraph())162 {163 $rendered = pts_render::render_graph_inline_embed($graph, $result_file, $extra_attributes);164 $PAGE .= '<p style="text-align: center; overflow: auto;" class="result_object">' . $rendered . '</p>';165 $PAGE .= $this->graph_export_handler($rendered);166 }167 }168 else if(!$result_file->is_multi_way_comparison())169 {170 foreach(array('', 'Per Watt', 'Per Dollar') as $selector)171 {172 $graph = new pts_graph_radar_chart($result_file, $selector);173 if($graph->renderGraph())174 {175 $rendered = pts_render::render_graph_inline_embed($graph, $result_file, $extra_attributes);176 $PAGE .= '<p style="text-align: center; overflow: auto;" class="result_object">' . $rendered . '</p>';177 $PAGE .= $this->graph_export_handler($rendered);178 }179 }180 }181 //$PAGE .= '<a id="table"></a>';182 if(!$result_file->is_multi_way_comparison() && $this->show_html_table_when_relevant)183 {184 $PAGE .= '<div class="pts_result_table">' . pts_result_file_output::result_file_to_detailed_html_table($result_file, 'grid', $extra_attributes, self::check_request_for_var($_REQUEST, 'sdt')) . '</div>';185 }186 else if($result_file->get_test_count() > 3)187 {188 $intent = null;189 $table = new pts_ResultFileTable($result_file, $intent);190 $rendered = pts_render::render_graph_inline_embed($table, $result_file, $extra_attributes);191 $PAGE .= '<p style="text-align: center; overflow: auto;" class="result_object">' . $rendered . '</p>';192 $PAGE .= $this->graph_export_handler($rendered);193 }194 $PAGE .= '</div>';195 $PAGE .= '<a id="table"></a><div id="results">';196 $prev_title = null;197 $identifier_mapping_to_cores = array();198 $identifier_mapping_to_threads = array();199 $identifier_mapping_to_cpu_clock = array();200 $identifier_mapping_to_ram_channels = array();201 if($result_file->get_system_count() > 1 && !$result_file->is_multi_way_comparison())202 {203 $sppt = self::check_request_for_var($_REQUEST, 'sppt');204 $sppc = self::check_request_for_var($_REQUEST, 'sppc');205 $sppm = self::check_request_for_var($_REQUEST, 'sppm');206 if($sppt || $sppc || $sppm)207 {208 foreach($result_file->get_systems() as $system)209 {210 if($sppt)211 {212 $t = $system->get_cpu_core_count();213 if($t > 0)214 {215 $identifier_mapping_to_cores[$system->get_identifier()] = $t;216 }217 $t = $system->get_cpu_thread_count();218 if($t > 0)219 {220 $identifier_mapping_to_threads[$system->get_identifier()] = $t;221 }222 }223 if($sppc)224 {225 $t = $system->get_cpu_clock();226 if($t > 0)227 {228 $identifier_mapping_to_cpu_clock[$system->get_identifier()] = $t;229 }230 }231 if($sppm)232 {233 $t = $system->get_memory_channels();234 if($t > 0)235 {236 $identifier_mapping_to_ram_channels[$system->get_identifier()] = $t;237 }238 }239 }240 if(count(array_unique($identifier_mapping_to_cores)) < 2)241 {242 $identifier_mapping_to_cores = array();243 }244 if(count(array_unique($identifier_mapping_to_threads)) < 2)245 {246 $identifier_mapping_to_threads = array();247 }248 if(count(array_unique($identifier_mapping_to_cpu_clock)) < 2)249 {250 $identifier_mapping_to_cpu_clock = array();251 }252 if(count(array_unique($identifier_mapping_to_ram_channels)) < 2)253 {254 $identifier_mapping_to_ram_channels = array();255 }256 }257 }258 //259 // SHOW THE RESULTS260 //261 $skip_ros = array();262 foreach($result_file->get_result_objects() as $i => $result_object)263 {264 //265 // RENDER TEST AND ANCHOR266 //267 if(in_array($i, $skip_ros))268 {269 continue;270 }271 $ro = clone $result_object;272 $res_desc_shortened = $result_object->get_arguments_description_shortened(false);273 $res = pts_render::render_graph_inline_embed($ro, $result_file, $extra_attributes);274 $PAGE .= '<a id="r-' . $i . '"></a><div style="text-align: center;" id="result-' . $i . '">';275 //276 // DISPLAY TEST PORIFLE METADATA HELPER277 //278 if($this->show_test_metadata_helper && $result_object->test_profile->get_title() != $prev_title)279 {280 $PAGE .= '<h2>' . $result_object->test_profile->get_title() . '</h2>';281 if(is_file(PTS_INTERNAL_OB_CACHE . 'test-profiles/' . $result_object->test_profile->get_identifier() . '/test-definition.xml'))282 {283 $tp = new pts_test_profile(PTS_INTERNAL_OB_CACHE . 'test-profiles/' . $result_object->test_profile->get_identifier() . '/test-definition.xml');284 $PAGE .= '<p class="mini">' . $tp->get_description() . ' <a href="https://openbenchmarking.org/test/' . $result_object->test_profile->get_identifier(false) . '"><em class="hide_on_print">Learn more via the OpenBenchmarking.org test page</em></a>.</p>';285 /* $suites_containing_test = pts_test_suites::suites_containing_test_profile($result_object->test_profile);286 if(!empty($suites_containing_test))287 {288 foreach($suites_containing_test as $suite)289 {290 $PAGE .= $suite->get_title() . ' ' . $suite->get_identifier();291 }292 } */293 }294 $prev_title = $result_object->test_profile->get_title();295 }296 if($res != false)297 {298 //299 // DISPLAY GRAPH300 //301 // Run variability302 $res_per_core = false;303 $res_per_thread = false;304 $res_per_clock = false;305 $res_per_ram = false;306 $res_variability = false;307 if(!in_array($result_object->test_profile->get_display_format(), array('LINE_GRAPH', 'BOX_PLOT')) && $result_object->test_result_buffer->detected_multi_sample_result() && $result_object->test_result_buffer->get_count() > 1)308 {309 $extra_attributes['graph_render_type'] = 'HORIZONTAL_BOX_PLOT';310 $ro = clone $result_object;311 $res_variability = pts_render::render_graph_inline_embed($ro, $result_file, $extra_attributes);312 unset($extra_attributes['graph_render_type']);313 }314 if(in_array($result_object->test_profile->get_test_hardware_type(), array('System', 'Processor', 'OS')))315 {316 if(!empty($identifier_mapping_to_cores))317 {318 $ro = pts_result_file_analyzer::get_result_object_custom($result_file, $result_object, $identifier_mapping_to_cores, 'Performance Per Core', 'Core');319 if($ro)320 {321 $res_per_core = pts_render::render_graph_inline_embed($ro, $result_file, $extra_attributes);322 }323 }324 if(!empty($identifier_mapping_to_threads) && $identifier_mapping_to_cores != $identifier_mapping_to_threads)325 {326 $ro = pts_result_file_analyzer::get_result_object_custom($result_file, $result_object, $identifier_mapping_to_threads, 'Performance Per Thread', 'Thread');327 if($ro)328 {329 $res_per_thread = pts_render::render_graph_inline_embed($ro, $result_file, $extra_attributes);330 }331 }332 if(!empty($identifier_mapping_to_cpu_clock))333 {334 $ro = pts_result_file_analyzer::get_result_object_custom($result_file, $result_object, $identifier_mapping_to_cpu_clock, 'Performance Per Clock', 'GHz');335 if($ro)336 {337 $res_per_clock = pts_render::render_graph_inline_embed($ro, $result_file, $extra_attributes);338 }339 }340 }341 if(!empty($identifier_mapping_to_ram_channels) && in_array($result_object->test_profile->get_test_hardware_type(), array('System', 'Processor', 'Memory')))342 {343 $ro = pts_result_file_analyzer::get_result_object_custom($result_file, $result_object, $identifier_mapping_to_ram_channels, 'Performance Per Memory Channel', 'Channel');344 if($ro)345 {346 $res_per_ram = pts_render::render_graph_inline_embed($ro, $result_file, $extra_attributes);347 }348 }349 $tabs = array(350 'Result' => $res351 );352 $show_on_print = array();353 foreach($result_file->get_relation_map($i) as $child_ro)354 {355 $c_ro = $result_file->get_result($child_ro);356 if($c_ro)357 {358 $desc = str_replace(array(' Monitor', $res_desc_shortened ,'()' ,')', ' - '), '', $c_ro->get_arguments_description_shortened(false));359 $dindex = $desc == $res_desc_shortened || empty($desc) ? $c_ro->test_profile->get_result_scale() : $desc;360 $tabs[$dindex] = pts_render::render_graph_inline_embed($c_ro, $result_file, $extra_attributes);361 $show_on_print[] = $dindex;362 $result_file->remove_result_object_by_id($child_ro);363 $skip_ros[] = $child_ro;364 }365 }366 $tabs['Perf Per Core'] = $res_per_core;367 $tabs['Perf Per Thread'] = $res_per_thread;368 $tabs['Perf Per Clock'] = $res_per_clock;369 $tabs['Perf Per RAM Channel'] = $res_per_ram;370 $tabs['Result Confidence'] = $res_variability;371 foreach($tabs as $title => &$graph)372 {373 if(empty($graph))374 {375 unset($tabs[$title]);376 }377 }378 switch(count($tabs))379 {380 case 0:381 continue 2;382 case 1:383 $PAGE .= $res . '<br />';384 $PAGE .= $this->graph_export_handler($res);385 break;386 default:387 $PAGE .= '<div class="tabs">';388 foreach($tabs as $title => &$rendered)389 {390 $tab_id = strtolower(str_replace(' ', '_', $title)) . '_' . $i;391 $PAGE .= '<input type="radio" name="tabs_' . $i . '" id="' . $tab_id . '"' . ($title == 'Result' ? ' checked="checked"' : '') . '>392 <label for="' . $tab_id . '">' . $title . '</label>393 <div class="tab' . (in_array($title, $show_on_print) ? ' print_notes' : '') . '">394 ' . $rendered . $this->graph_export_handler($rendered) . '395 </div>';396 }397 $PAGE .= '</div>';398 }399 }400 //401 // DISPLAY LOGS402 //403 $PAGE .= $this->result_object_to_error_report($result_file, $result_object, $i);404 $button_area = null;405 if($result_file->get_test_run_log_for_result($result_object, -2))406 {407 $button_area .= ' <button onclick="javascript:display_test_logs_for_result_object(\'' . $this->result_public_id . '\', \'' . $i . '\'); return false;">View Test Run Logs</button> ';408 }409 if($result_file->get_install_log_for_test($result_object->test_profile, -2))410 {411 $button_area .= ' <button onclick="javascript:display_install_logs_for_result_object(\'' . $this->result_public_id . '\', \'' . $i . '\'); return false;">View Test Installation Logs</button> ';412 }413 //414 // EDITING / DELETE OPTIONS415 //416 if($this->can_delete_results && !$result_object->dynamically_generated)417 {418 $button_area .= ' <button onclick="javascript:delete_result_from_result_file(\'' . $this->result_public_id . '\', \'' . $i . '\'); return false;">Delete Result</button> ';419 }420 else if($result_object->dynamically_generated)421 {422 $button_area .= ' <button onclick="javascript:hide_result_in_result_file(\'' . $this->result_public_id . '\', \'' . $i . '\'); return false;">Hide Result</button> ';423 }424 if($this->can_modify_results && !$result_object->dynamically_generated)425 {426 if($result_object->get_annotation() == null)427 {428 $button_area .= ' <button onclick="javascript:display_add_annotation_for_result_object(\'' . $this->result_public_id . '\', \'' . $i . '\', this); return false;">Add Annotation</button> ';429 $PAGE .= ' <div id="annotation_area_' . $i . '" style="display: none;"> <form action="#" onsubmit="javascript:add_annotation_for_result_object(\'' . $this->result_public_id . '\', \'' . $i . '\', this); return false;"><textarea rows="4" cols="50" placeholder="Add Annotation..." name="annotation"></textarea><br /><input type="submit" value="Add Annotation"></form></div>';430 }431 else432 {433 $PAGE .= '<div id="update_annotation_' . $i . '" contentEditable="true">' . pts_strings::sanitize($result_object->get_annotation()) . '</div> <input type="submit" value="Update Annotation" onclick="javascript:update_annotation_for_result_object(\'' . $this->result_public_id . '\', \'' . $i . '\'); return false;">';434 }435 }436 else437 {438 $PAGE .= '<p class="mini">' . pts_strings::sanitize($result_object->get_annotation()) . '</p>';439 }440 if($button_area != null)441 {442 $PAGE .= '<p>' . $button_area . '</p>';443 }444 $PAGE .= '</div>';445 unset($result_object);446 }447 if($this->include_page_print_only_helpers)448 {449 $PAGE .= '<div class="print_notes mini" style="font-size: 10px !important;">' . pts_result_file_output::result_file_to_system_html($result_file, true) . '</div>';450 }451 $PAGE .= '</div>';452 return $PAGE;453 }454 public static function html_template_log_viewer($html_to_show, &$result_file)455 {456 return '<!doctype html>457 <html lang="en">458 <head><title>' . ($result_file ? $result_file->get_title() . ' ' : '') . 'Log Viewer</title>459 ' . (defined('CSS_RESULT_VIEWER_PATH') ? '<link rel="stylesheet" href="' . CSS_RESULT_VIEWER_PATH . '">' : '') . '</head>460 <body>' . (empty($html_to_show) ? '<p>No logs available.</p>' : $html_to_show) . '</body></html>';461 }462 public static function display_log_html_or_download(&$log_contents, &$list_of_log_files, $log_selected, &$append_to_html, $title, $identifiers_with_logs = false)463 {464 $append_to_html .= '<h2 align="center">' . $title . ' Logs</h2>';465 if(empty($list_of_log_files) && $identifiers_with_logs && !empty($identifiers_with_logs))466 {467 $append_to_html = '[DEBUG] No log files were found for this system identifier (' . $title . '), but logs were found for: ' . implode(', ', $identifiers_with_logs);468 }469 $append_to_html .= '<div style="text-align: center;"><form action="' . str_replace('&log_select=' . $log_selected, '', str_replace('&download', '', $_SERVER['REQUEST_URI'])) . '" method="post">';470 $append_to_html .= '<input type="hidden" name="modify" value="0" /><select name="log_select" id="log_select" onchange="this.form.submit()">';471 foreach($list_of_log_files as $log_file)472 {473 $append_to_html .= '<option value="' . $log_file . '"' . (isset($_REQUEST['log_select']) && $log_file == $_REQUEST['log_select'] ? 'selected="selected"' : '') . '>' . $log_file . '</option>';474 }475 $append_to_html .= '</select> &nbsp; <input type="submit" value="Show Log"></form></div><br /><hr />';476 $append_to_html .= '<p style="font-size: 12px; margin: 5px; text-align: right"><form action="' . $_SERVER['REQUEST_URI'] . '" method="post"><input type="hidden" name="download" value="download" /><input type="hidden" name="log_select" value="' . $log_selected . '" /><input type="submit" value="Download Log File" style="float: right;"> </form></p>';477 if($log_contents == null)478 {479 $append_to_html .= '<p>No log file available.</p>';480 }481 else if(pts_strings::is_text_string($log_contents) && !isset($_REQUEST['download']))482 {483 $log_contents = phodevi_vfs::cleanse_file($log_contents);484 $log_contents = htmlentities($log_contents);485 $log_contents = str_replace(PHP_EOL, '<br />', $log_contents);486 $append_to_html .= '<br /><pre style="font-family: monospace;">' . $log_contents . '</pre>';487 }488 else if(isset($_REQUEST['log_select']) && $_REQUEST['log_select'] != 'undefined') // to avoid blocking the popup window in first place if it wasn't explicitly selected489 {490 if(class_exists('finfo'))491 {492 $finfo = new finfo(FILEINFO_MIME);493 header('Content-type: '. $finfo->buffer($log_contents));494 }495 //header('Content-Type: application/octet-stream');496 header('Content-Length: ' . strlen($log_contents));497 header('Content-Disposition: attachment; filename="' . str_ireplace(array('/', '\\', '.'), '', $title) . ' - ' . $log_selected . '"');498 echo $log_contents;499 exit;500 }501 else502 {503 $append_to_html .= '<p>Download log file to view.</p>';504 }505 }506 public static function get_html_sort_bar(&$result_file, &$request)507 {508 $analyze_options = null;509 $drop_down_menus = array('Export Benchmark Data' => array(510 'export=pdf' => 'Result File To PDF',511 'export=txt' => 'Result File To Text',512 'export=html' => 'Result File To HTML',513 'export=json' => 'Result File To JSON',514 // 'export=xml' => 'Result File To XML',515 'export=xml-suite' => 'Result File To Test Suite (XML)',516 'export=csv' => 'Result File To CSV/Excel',517 'export=csv-all' => 'Individual Run Data To CSV/Excel',518 ),519 );520 if(count($result_file->get_system_identifiers()) > 1)521 {522 $drop_down_menus['Sort Result Order'] = array(523 'sro&rro' => 'By Identifier (DESC)',524 'sro' => 'By Identifier (ASC)',525 'sor' => 'By Performance (DESC)',526 'sor&rro' => 'By Performance (ASC)',527 'rdt&rro' => 'By Run Date/Time (DESC)',528 'rdt' => 'By Run Date/Time (ASC)',529 );530 }531 if($result_file->get_test_count() > 1)532 {533 $drop_down_menus['Sort Graph Order'] = array(534 'grs' => 'By Result Spread',535 'gru' => 'By Result Unit',536 'grt' => 'By Test Title',537 'grr' => 'By Test Length/Time'538 );539 }540 $analyze_options .= '<div style="float: right;"><ul>';541 foreach(array_reverse($drop_down_menus, true) as $menu => $sub_menu)542 {543 $analyze_options .= '<li><a href="#">' . $menu . '</a><ul>';544 foreach($sub_menu as $option => $txt)545 {546 $uri = $_SERVER['REQUEST_URI'];547 foreach(array_reverse(array_keys($sub_menu)) as $rem)548 {549 $uri = str_replace('&' . $rem, '', $uri);550 }551 $uri = str_replace('&rro', '', $uri);552 $analyze_options .= '<li><a href="' . $uri . '&' . $option . '">' . $txt . '</a></li>';553 }554 $analyze_options .= '</ul></li>';555 }556 $analyze_options .= '</ul></div>';557 return $analyze_options;558 }559 public static function get_html_options_markup(&$result_file, &$request, $public_id = null, $can_delete_results = false)560 {561 if($public_id == null && defined('RESULTS_VIEWING_ID'))562 {563 $public_id = RESULTS_VIEWING_ID;564 }565 $analyze_options = null;566 // CHECKS FOR DETERMINING OPTIONS TO DISPLAY567 $has_identifier_with_color_brand = false;568 $has_box_plot = false;569 $has_line_graph = false;570 $is_multi_way = $result_file->is_multi_way_comparison();571 $system_count = $result_file->get_system_count();572 foreach($result_file->get_system_identifiers() as $sys)573 {574 if(pts_render::identifier_to_brand_color($sys, null) != null)575 {576 $has_identifier_with_color_brand = true;577 break;578 }579 }580 $multi_test_run_options_tracking = array();581 $tests_with_multiple_versions = array();582 $has_test_with_multiple_options = false;583 $has_test_with_multiple_versions = false;584 foreach($result_file->get_result_objects() as $i => $result_object)585 {586 if(!$has_box_plot && $result_object->test_profile->get_display_format() == 'HORIZONTAL_BOX_PLOT')587 {588 $has_box_plot = true;589 }590 if(!$has_line_graph && $result_object->test_profile->get_display_format() == 'LINE_GRAPH')591 {592 $has_line_graph = true;593 }594 if(!$is_multi_way && !$has_test_with_multiple_options)595 {596 if(!isset($multi_test_run_options_tracking[$result_object->test_profile->get_identifier()]))597 {598 $multi_test_run_options_tracking[$result_object->test_profile->get_identifier()] = array();599 }600 $multi_test_run_options_tracking[$result_object->test_profile->get_identifier()][] = $result_object->get_arguments_description();601 if(count($multi_test_run_options_tracking[$result_object->test_profile->get_identifier()]) > 1)602 {603 $has_test_with_multiple_options = true;604 unset($multi_test_run_options_tracking);605 }606 }607 if(!$is_multi_way && !$has_test_with_multiple_versions)608 {609 $ti_no_version = $result_object->test_profile->get_identifier(false);610 if(!isset($tests_with_multiple_versions[$ti_no_version]))611 {612 $tests_with_multiple_versions[$ti_no_version] = array();613 }614 pts_arrays::unique_push($tests_with_multiple_versions[$ti_no_version], $result_object->test_profile->get_app_version());615 if(count($tests_with_multiple_versions[$ti_no_version]) > 1)616 {617 $has_test_with_multiple_versions = true;618 unset($tests_with_multiple_versions);619 }620 }621 // (optimization) if it has everything, break622 if($has_line_graph && $has_box_plot && $has_test_with_multiple_options && $has_test_with_multiple_versions)623 {624 break;625 }626 }627 $suites_in_result_file = $system_count > 1 ? pts_test_suites::suites_in_result_file($result_file, true, 0) : array();628 // END OF CHECKS629 $analyze_options .= '<form action="' . $_SERVER['REQUEST_URI'] . '" method="post">';630 $analyze_checkboxes = array(631 'View' => array(),632 'Statistics' => array(),633 'Sorting' => array(),634 'Graph Settings' => array(),635 'Additional Graphs' => array(),636 'Multi-Way Comparison' => array(),637 );638 if($system_count > 1)639 {640 $analyze_checkboxes['Statistics'][] = array('shm', 'Show Overall Harmonic Mean(s)');641 $analyze_checkboxes['Statistics'][] = array('sgm', 'Show Overall Geometric Mean');642 if(count($suites_in_result_file) > 1)643 {644 $analyze_checkboxes['Statistics'][] = array('sts', 'Show Geometric Means Per-Suite/Category');645 }646 $analyze_checkboxes['Statistics'][] = array('swl', 'Show Wins / Losses Counts (Pie Chart)');647 $analyze_checkboxes['Statistics'][] = array('nor', 'Normalize Results');648 $analyze_checkboxes['Graph Settings'][] = array('ftr', 'Force Line Graphs Where Applicable');649 $analyze_checkboxes['Graph Settings'][] = array('scalar', 'Convert To Scalar Where Applicable');650 $analyze_checkboxes['View'][] = array('hnr', 'Do Not Show Noisy Results');651 $analyze_checkboxes['View'][] = array('hni', 'Do Not Show Results With Incomplete Data');652 $analyze_checkboxes['View'][] = array('hlc', 'Do Not Show Results With Little Change/Spread');653 $analyze_checkboxes['View'][] = array('spr', 'List Notable Results');654 if($has_identifier_with_color_brand)655 {656 $analyze_checkboxes['Graph Settings'][] = array('ncb', 'Disable Color Branding');657 }658 // Additional Graphs659 if(!$result_file->is_multi_way_comparison())660 {661 $identifier_mapping_to_cores = array();662 $identifier_mapping_to_threads = array();663 $identifier_mapping_to_cpu_clock = array();664 $identifier_mapping_to_ram_channels = array();665 foreach($result_file->get_systems() as $system)666 {667 $t = $system->get_cpu_core_count();668 if($t > 0)669 {670 $identifier_mapping_to_cores[$system->get_identifier()] = $t;671 }672 $t = $system->get_cpu_thread_count();673 if($t > 0)674 {675 $identifier_mapping_to_threads[$system->get_identifier()] = $t;676 }677 $t = $system->get_cpu_clock();678 if($t > 0)679 {680 $identifier_mapping_to_cpu_clock[$system->get_identifier()] = $t;681 }682 $t = $system->get_memory_channels();683 if($t > 0)684 {685 $identifier_mapping_to_ram_channels[$system->get_identifier()] = $t;686 }687 }688 if(count(array_unique($identifier_mapping_to_cores)) > 1 || count(array_unique($identifier_mapping_to_threads)) > 1)689 {690 $analyze_checkboxes['Additional Graphs'][] = array('sppt', 'Show Perf Per Core/Thread Calculation Graphs Where Applicable');691 }692 if(count(array_unique($identifier_mapping_to_cpu_clock)) > 1)693 {694 $analyze_checkboxes['Additional Graphs'][] = array('sppc', 'Show Perf Per Clock Calculation Graphs Where Applicable');695 }696 if(count(array_unique($identifier_mapping_to_ram_channels)) > 1)697 {698 $analyze_checkboxes['Additional Graphs'][] = array('sppm', 'Show Perf Per RAM Channel Calculation Graphs Where Applicable');699 }700 }701 }702 if(count($suites_in_result_file) > 1)703 {704 $suite_limit = '<h3>Limit displaying results to tests within:</h3>';705 $stis = self::check_request_for_var($request, 'stis');706 if(!is_array($stis))707 {708 $stis = explode(',', $stis);709 }710 ksort($suites_in_result_file);711 $suite_limit .= '<div style="max-height: 250px; overflow: scroll;">';712 foreach($suites_in_result_file as $suite_identifier => $s)713 {714 list($suite, $contained_tests) = $s;715 $id = rtrim(base64_encode($suite_identifier), '=');716 $suite_limit .= '<input type="checkbox" name="stis[]" value="' . $id . '"' . (is_array($stis) && in_array($id, $stis) ? ' checked="checked"' : null) . ' /> ' . $suite->get_title() . ' <sup><em>' . count($contained_tests) . ' Tests</em></sup><br />';717 }718 $suite_limit .= '</div>';719 $analyze_checkboxes['View'][] = array('', $suite_limit);720 }721 $analyze_checkboxes['Graph Settings'][] = array('vb', 'Prefer Vertical Bar Graphs');722 $analyze_checkboxes['Statistics'][] = array('rol', 'Remove Outliers Before Calculating Averages');723 //$analyze_checkboxes['Statistics'][] = array('gtb', 'Graph Values Of All Runs (Box Plot)');724 //$analyze_checkboxes['Statistics'][] = array('gtl', 'Graph Values Of All Runs (Line Graph)');725 if($has_box_plot || $has_line_graph)726 {727 $analyze_checkboxes['Graph Settings'][] = array('nbp', 'No Box Plots');728 }729 if($is_multi_way && $system_count > 1)730 {731 $analyze_checkboxes['Multi-Way Comparison'][] = array('cmw', 'Condense Comparison');732 }733 if(($is_multi_way && $system_count > 1) || self::check_request_for_var($request, 'cmv') || self::check_request_for_var($request, 'cts'))734 {735 $analyze_checkboxes['Multi-Way Comparison'][] = array('imw', 'Transpose Comparison');736 }737 if((!$is_multi_way && $has_test_with_multiple_options && !self::check_request_for_var($request, 'cmv')) || self::check_request_for_var($request, 'cts'))738 {739 $analyze_checkboxes['Multi-Way Comparison'][] = array('cts', 'Condense Multi-Option Tests Into Single Result Graphs');740 }741 if((!$is_multi_way && $has_test_with_multiple_versions && !self::check_request_for_var($request, 'cts')) || self::check_request_for_var($request, 'cmv'))742 {743 $analyze_checkboxes['Multi-Way Comparison'][] = array('cmv', 'Condense Test Profiles With Multiple Version Results Into Single Result Graphs');744 }745 $analyze_checkboxes['Table'][] = array('sdt', 'Show Detailed System Result Table');746 $t = null;747 foreach($analyze_checkboxes as $title => $group)748 {749 if(empty($group))750 {751 continue;752 }753 $t .= '<div class="pts_result_viewer_settings_box">';754 $t .= '<h2>' . $title . '</h2>';755 foreach($group as $key)756 {757 if($key[0] == null)758 {759 $t .= $key[1] . '<br />';760 }761 else762 {763 $t .= '<input type="checkbox" name="' . $key[0] . '" value="1"' . (self::check_request_for_var($request, $key[0]) ? ' checked="checked"' : null) . ' /> ' . $key[1] . '<br />';764 }765 }766 $t .= '</div>';767 }768 if($system_count > 0)769 {770 $has_system_logs = $result_file->system_logs_available();771 $t .= '<div style="clear: both;"><h2>Run Management</h2>772 <div class="div_table">773 <div class="div_table_body">774 <div class="div_table_first_row">';775 if($system_count > 1)776 {777 $t .= '<div class="div_table_cell">Highlight<br />Result</div>778 <div class="div_table_cell">Hide<br />Result</div>';779 }780 $t .= '<div class="div_table_cell">Result<br />Identifier</div>';781 if($has_system_logs)782 {783 $t .= '<div class="div_table_cell">View Logs</div>';784 }785 $t .= '<div class="div_table_cell">Performance Per<br />Dollar</div>786 <div class="div_table_cell">Date<br />Run</div>787 <div class="div_table_cell"> &nbsp; Test<br /> &nbsp; Duration</div>788 <div class="div_table_cell"> </div>789 </div>790 ';791 $hgv = self::check_request_for_var($request, 'hgv');792 if(!is_array($hgv))793 {794 $hgv = explode(',', $hgv);795 }796 $rmm = self::check_request_for_var($request, 'rmm');797 if(!is_array($rmm))798 {799 $rmm = explode(',', $rmm);800 }801 $start_of_year = strtotime(date('Y-01-01'));802 $test_run_times = $result_file->get_test_run_times();803 foreach($result_file->get_systems() as $sys)804 {805 $si = $sys->get_identifier();806 $ppdx = rtrim(base64_encode($si), '=');807 $ppd = self::check_request_for_var($request, 'ppd_' . $ppdx);808 $t .= '809 <div id="table-line-' . $ppdx . '" class="div_table_row">';810 if($system_count > 1)811 {812 $t .= '<div class="div_table_cell"><input type="checkbox" name="hgv[]" value="' . $si . '"' . (is_array($hgv) && in_array($si, $hgv) ? ' checked="checked"' : null) . ' /></div>813 <div class="div_table_cell"><input type="checkbox" name="rmm[]" value="' . $si . '"' . (is_array($rmm) && in_array($si, $rmm) ? ' checked="checked"' : null) . ' /></div>';814 }815 $t .= '<div class="div_table_cell"><strong>' . $si . '</strong></div>';816 if($has_system_logs)817 {818 $t .= '<div class="div_table_cell">' . ($system_count == 1 || $sys->has_log_files() ? '<button type="button" onclick="javascript:display_system_logs_for_result(\'' . $public_id . '\', \'' . $sys->get_original_identifier() . '\'); return false;">View System Logs</button>' : ' ') . '</div>';819 }820 $stime = strtotime($sys->get_timestamp());821 $t .= '<div class="div_table_cell"><input type="number" min="0" step="0.001" name="ppd_' . $ppdx . '" value="' . ($ppd && $ppd !== true ? strip_tags($ppd) : '0') . '" /></div>822 <div class="div_table_cell">' . date(($stime > $start_of_year ? 'F d' : 'F d Y'), $stime) . '</div>823 <div class="div_table_cell"> &nbsp; ' . (isset($test_run_times[$si]) && $test_run_times[$si] > 0 ? pts_strings::format_time($test_run_times[$si], 'SECONDS', true, 60) : ' ') . '</div>';824 if($can_delete_results && !empty($public_id))825 {826 $t .= '<div class="div_table_cell">';827 if($system_count > 1)828 {829 $t .= '<button type="button" onclick="javascript:delete_run_from_result_file(\'' . $public_id . '\', \'' . $si . '\', \'' . $ppdx . '\'); return false;">Delete Run</button> ';830 }831 $t .= '<button type="button" onclick="javascript:rename_run_in_result_file(\'' . $public_id . '\', \'' . $si . '\'); return false;">Rename Run</button></div>';832 }833 $t .= '</div>';834 }835 if($system_count > 1)836 {837 $t .= '838 <div class="div_table_row">839 <div class="div_table_cell"> </div>840 <div class="div_table_cell"><input type="checkbox" onclick="javascript:invert_hide_all_results_checkboxes();" /></div>841 <div class="div_table_cell"><em>Invert Hiding All Results Option</em></div>';842 if($has_system_logs)843 {844 $t .= '<div class="div_table_cell"> </div>';845 }846 $t .= '<div class="div_table_cell">' . self::html_select_menu('ppt', 'ppt', null, array('D' => 'Dollar', 'DPH' => 'Dollar / Hour'), true) . '</div>847 <div class="div_table_cell"> </div>848 <div class="div_table_cell"> &nbsp; <em>' . pts_strings::format_time(array_sum($test_run_times) / count($test_run_times), 'SECONDS', true, 60) . '</em></div>849 <div class="div_table_cell">';850 if($can_delete_results)851 {852 $t .= '<button type="button" onclick="javascript:reorder_result_file(\'' . $public_id . '\'); return false;">Sort / Reorder Runs</button>';853 }854 $t .= '</div></div>';855 }856 $t .= '857 </div>858 </div></div>';859 }860 $analyze_options .= $t;861 if($system_count > 2)862 {863 $analyze_options .= '<br /><div>Only show results where ' . self::html_select_menu('ftt', 'ftt', null, array_merge(array(null), $result_file->get_system_identifiers()), false) . ' is faster than ' . self::html_select_menu('ftb', 'ftb', null, array_merge(array(null), $result_file->get_system_identifiers()), false) . '</div>';864 }865 if($result_file->get_test_count() > 1)866 {867 $analyze_options .= '<div>Only show results matching title/arguments (delimit multiple options with a comma): ' . self::html_input_field('oss', 'oss') . '</div>';868 }869 $analyze_options .= '<br /><input style="clear: both;" name="submit" value="Refresh Results" type="submit" /></form>';870 return $analyze_options;871 }872 public static function process_result_export_pre_render(&$request, &$result_file, &$extra_attributes, $can_modify_results = false, $can_delete_results = false)873 {874 if(self::check_request_for_var($request, 'rdt'))875 {876 $result_file->reorder_runs($result_file->get_system_identifiers_by_date());877 }878 // Result export?879 $result_title = (isset($_GET['result']) ? $_GET['result'] : 'result');880 switch(isset($_REQUEST['export']) ? $_REQUEST['export'] : '')881 {882 case '':883 break;884 case 'pdf':885 header('Content-Type: application/pdf');886 $pdf_output = pts_result_file_output::result_file_to_pdf($result_file, $result_title . '.pdf', 'D', $extra_attributes);887 exit;888 case 'html':889 $referral_url = '';890 if(defined('OPENBENCHMARKING_BUILD'))891 {892 $referral_url = 'https://openbenchmarking.org' . str_replace('&export=html', '', $_SERVER['REQUEST_URI']);893 }894 echo pts_result_file_output::result_file_to_html($result_file, $extra_attributes, $referral_url);895 exit;896 case 'json':897 header('Content-Type: application/json');898 echo pts_result_file_output::result_file_to_json($result_file);899 exit;900 case 'csv':901 $result_csv = pts_result_file_output::result_file_to_csv($result_file, ',', $extra_attributes);902 header('Content-Description: File Transfer');903 header('Content-Type: application/csv');904 header('Content-Disposition: attachment; filename=' . $result_title . '.csv');905 header('Expires: 0');906 header('Cache-Control: must-revalidate');907 header('Pragma: public');908 header('Content-Length: ' . strlen($result_csv));909 echo $result_csv;910 exit;911 case 'csv-all':912 $result_csv = pts_result_file_output::result_file_raw_to_csv($result_file);913 header('Content-Description: File Transfer');914 header('Content-Type: application/csv');915 header('Content-Disposition: attachment; filename=' . $result_title . '.csv');916 header('Expires: 0');917 header('Cache-Control: must-revalidate');918 header('Pragma: public');919 header('Content-Length: ' . strlen($result_csv));920 echo $result_csv;921 exit;922 case 'txt':923 $result_txt = pts_result_file_output::result_file_to_text($result_file);924 header('Content-Description: File Transfer');925 header('Content-Type: text/plain');926 header('Content-Disposition: attachment; filename=' . $result_title . '.txt');927 header('Expires: 0');928 header('Cache-Control: must-revalidate');929 header('Pragma: public');930 header('Content-Length: ' . strlen($result_txt));931 echo $result_txt;932 exit;933 case 'xml-suite':934 $suite_xml = pts_result_file_output::result_file_to_suite_xml($result_file);935 header('Content-Description: File Transfer');936 header('Content-Type: text/xml');937 header('Content-Disposition: attachment; filename=' . $result_title . '-suite.xml');938 header('Expires: 0');939 header('Cache-Control: must-revalidate');940 header('Pragma: public');941 header('Content-Length: ' . strlen($suite_xml));942 echo $suite_xml;943 exit;944 case 'xml':945 $result_xml = $result_file->get_xml(null, true);946 header('Content-Description: File Transfer');947 header('Content-Type: text/xml');948 header('Content-Disposition: attachment; filename=' . $result_title . '.xml');949 header('Expires: 0');950 header('Cache-Control: must-revalidate');951 header('Pragma: public');952 header('Content-Length: ' . strlen($result_xml));953 echo $result_xml;954 exit;955 case 'view_system_logs':956 $html_viewer = '';957 foreach($result_file->get_systems() as $system)958 {959 $sid = base64_decode($_REQUEST['system_id']);960 if($system->get_original_identifier() == $sid || $system->get_identifier() == $sid)961 {962 $system_logs = $system->log_files();963 $identifiers_with_logs = empty($system_logs) ? $result_file->identifiers_with_system_logs() : array();964 $show_log = isset($_REQUEST['log_select']) && $_REQUEST['log_select'] != 'undefined' && $_REQUEST['log_select'] != null ? $_REQUEST['log_select'] : (isset($system_logs[0]) ? $system_logs[0] : '');965 $log_contents = $system->log_files($show_log, false);966 pts_result_viewer_embed::display_log_html_or_download($log_contents, $system_logs, $show_log, $html_viewer, $sid, $identifiers_with_logs);967 break;968 }969 }970 echo pts_result_viewer_embed::html_template_log_viewer($html_viewer, $result_file);971 exit;972 case 'view_install_logs':973 $html_viewer = '';974 if(isset($_REQUEST['result_object']))975 {976 if(($result_object = $result_file->get_result_object_by_hash($_REQUEST['result_object'])))977 {978 $install_logs = $result_file->get_install_log_for_test($result_object->test_profile, false);979 if(count($install_logs) > 0)980 {981 $show_log = isset($_REQUEST['log_select']) && $_REQUEST['log_select'] != 'undefined' ? $_REQUEST['log_select'] : (isset($install_logs[0]) ? $install_logs[0] : '');982 $log_contents = $result_file->get_install_log_for_test($result_object->test_profile, $show_log, false);983 pts_result_viewer_embed::display_log_html_or_download($log_contents, $install_logs, $show_log, $html_viewer, $result_object->test_profile->get_title() . ' Installation');984 }985 }986 }987 echo pts_result_viewer_embed::html_template_log_viewer($html_viewer, $result_file);988 exit;989 case 'view_test_logs':990 $html_viewer = '';991 if(isset($_REQUEST['result_object']))992 {993 if(($result_object = $result_file->get_result_object_by_hash($_REQUEST['result_object'])))994 {995 if(($test_logs = $result_file->get_test_run_log_for_result($result_object, false)))996 {997 $show_log = isset($_REQUEST['log_select']) && $_REQUEST['log_select'] != 'undefined' ? $_REQUEST['log_select'] : (isset($test_logs[0]) ? $test_logs[0] : '');998 $log_contents = $result_file->get_test_run_log_for_result($result_object, $show_log, false);999 pts_result_viewer_embed::display_log_html_or_download($log_contents, $test_logs, $show_log, $html_viewer, trim($result_object->test_profile->get_title() . ' ' . $result_object->get_arguments_description()));1000 }1001 }1002 }1003 echo pts_result_viewer_embed::html_template_log_viewer($html_viewer, $result_file);1004 exit;1005 }1006 }1007 public static function process_result_modify_pre_render(&$result_file, $can_modify_results = false, $can_delete_results = false)1008 {1009 if(!isset($_REQUEST['modify']) || ($can_modify_results == false && $can_delete_results == false))1010 {1011 return;1012 }1013 switch($_REQUEST['modify'])1014 {1015 case 'update-result-file-meta':1016 if($can_modify_results && isset($_REQUEST['result_title']) && isset($_REQUEST['result_desc']))1017 {1018 $result_file->set_title($_REQUEST['result_title']);1019 $result_file->set_description($_REQUEST['result_desc']);1020 $result_file->save();1021 }1022 exit;1023 case 'remove-result-object':1024 if($can_delete_results && isset($_REQUEST['result_object']))1025 {1026 if($result_file->remove_result_object_by_id($_REQUEST['result_object']))1027 {1028 $result_file->save();1029 }1030 }1031 exit;1032 case 'remove-result-run':1033 if($can_delete_results && isset($_REQUEST['result_run']))1034 {1035 if($result_file->remove_run($_REQUEST['result_run']))1036 {1037 $result_file->save();1038 }1039 }1040 exit;1041 case 'rename-result-run':1042 if(VIEWER_CAN_MODIFY_RESULTS && isset($_REQUEST['result_run']) && isset($_REQUEST['new_result_run']))1043 {1044 if($result_file->rename_run($_REQUEST['result_run'], $_REQUEST['new_result_run']))1045 {1046 $result_file->save();1047 }1048 }1049 exit;1050 case 'add-annotation-to-result-object':1051 if($can_modify_results && isset($_REQUEST['result_object']) && isset($_REQUEST['annotation']))1052 {1053 if($result_file->update_annotation_for_result_object_by_id($_REQUEST['result_object'], $_REQUEST['annotation']))1054 {1055 $result_file->save();1056 }1057 }1058 exit;1059 case 'reorder_result_file':1060 if($can_modify_results)1061 {1062 if(count($result_file_identifiers = $result_file->get_system_identifiers()) > 1)1063 {1064 if(isset($_POST['reorder_post']))1065 {1066 $sort_array = array();1067 foreach($result_file_identifiers as $i => $id)1068 {1069 if(isset($_POST[base64_encode($id)]))1070 {1071 $sort_array[$id] = $_POST[base64_encode($id)];1072 }1073 }1074 asort($sort_array);1075 $sort_array = array_keys($sort_array);1076 $result_file->reorder_runs($sort_array);1077 $result_file->save();1078 echo '<p>Result file is now reordered. <script> window.close(); </script></p>';1079 }1080 else if(isset($_POST['auto_sort']))1081 {1082 sort($result_file_identifiers);1083 $result_file->reorder_runs($result_file_identifiers);1084 $result_file->save();1085 echo '<p>Result file is now auto-sorted. <script> window.close(); </script></p>';1086 }1087 else1088 {1089 echo '<p>Reorder the result file as desired by altering the numbering from lowest to highest.</p>';1090 echo '<form method="post" action="' . $_SERVER['REQUEST_URI'] . '">';1091 foreach($result_file_identifiers as $i => $id)1092 {1093 echo '<input style="width: 80px;" name="' . base64_encode($id) . '" type="number" min="0" value="' . ($i + 1) . '" />' . $id . '<br />';1094 }1095 echo '<input type="hidden" name="reorder_post" value="1" /><input type="submit" value="Reorder Results" /></form>';1096 echo '<form method="post" action="' . $_SERVER['REQUEST_URI'] . '">';1097 echo '<input type="hidden" name="auto_sort" value="1" /><input type="submit" value="Auto-Sort Result File" /></form>';1098 }1099 }1100 }1101 exit;1102 }1103 }1104 public static function process_helper_html(&$request, &$result_file, &$extra_attributes, $can_modify_results = false, $can_delete_results = false)1105 {1106 self::process_result_export_pre_render($request, $result_file, $extra_attributes, $can_modify_results, $can_delete_results);1107 $html = null;1108 if(self::check_request_for_var($request, 'spr'))1109 {1110 $results = $result_file->get_result_objects();1111 $spreads = array();1112 foreach($results as $i => &$result_object)1113 {1114 $spreads[$i] = $result_object->get_spread();1115 }1116 arsort($spreads);1117 $spreads = array_slice($spreads, 0, min((int)(count($results) / 4), 10), true);1118 if(!empty($spreads))1119 {1120 $html .= '<h3>Notable Results</h3>';1121 foreach($spreads as $result_key => $spread)1122 {1123 $ro = $result_file->get_result_objects($result_key);1124 if(!is_object($ro[0]))1125 {1126 continue;1127 }1128 $html .= '<a href="#r-' . $result_key . '">' . $ro[0]->test_profile->get_title() . ' - ' . $ro[0]->get_arguments_description() . '</a><br />';1129 }1130 }1131 }1132 return $html;1133 }1134 public static function check_request_for_var(&$request, $check)1135 {1136 // the obr_ check is to maintain OpenBenchmarking.org compatibility for its original variable naming to preserve existing URLs1137 $ret = false;1138 if(defined('OPENBENCHMARKING_BUILD') && isset($request['obr_' . $check]))1139 {1140 $ret = empty($request['obr_' . $check]) ? true : $request['obr_' . $check];1141 }1142 if(isset($request[$check]))1143 {1144 $ret = empty($request[$check]) ? true : $request[$check];1145 }1146 if($ret && isset($ret[5]))1147 {1148 $ret = str_replace('_DD_', '.', $ret);1149 }1150 return $ret;1151 }1152 public static function process_request_to_attributes(&$request, &$result_file, &$extra_attributes)1153 {1154 if(($oss = self::check_request_for_var($request, 'oss')))1155 {1156 $oss = pts_strings::comma_explode($oss);1157 foreach($result_file->get_result_objects() as $i => $result_object)1158 {1159 $matched = false;1160 foreach($oss as $search_check)1161 {1162 if(stripos($result_object->get_arguments_description(), $search_check) === false && stripos($result_object->test_profile->get_identifier(), $search_check) === false && stripos($result_object->test_profile->get_title(), $search_check) === false)1163 {1164 // Not found1165 $matched = false;1166 }...

Full Screen

Full Screen

pts_result_viewer_settings.php

Source:pts_result_viewer_settings.php Github

copy

Full Screen

...498 $ret = str_replace('_DD_', '.', $ret);499 }500 return $ret;501 }502 public static function process_request_to_attributes(&$request, &$result_file, &$extra_attributes)503 {504 if(($oss = self::check_request_for_var($request, 'oss')))505 {506 $oss = pts_strings::comma_explode($oss);507 foreach($result_file->get_result_objects() as $i => $result_object)508 {509 $matched = false;510 foreach($oss as $search_check)511 {512 if(stripos($result_object->get_arguments_description(), $search_check) === false && stripos($result_object->test_profile->get_identifier(), $search_check) === false && stripos($result_object->test_profile->get_title(), $search_check) === false)513 {514 // Not found515 $matched = false;516 }...

Full Screen

Full Screen

process_request_to_attributes

Using AI Code Generation

copy

Full Screen

1require_once('pts_result_viewer_embed.php');2$viewer = new pts_result_viewer_embed();3$viewer->process_request_to_attributes();4require_once('pts_result_viewer_embed.php');5$viewer = new pts_result_viewer_embed();6$viewer->process_request_to_attributes();7require_once('pts_result_viewer_embed.php');8$viewer = new pts_result_viewer_embed();9$viewer->process_request_to_attributes();10require_once('pts_result_viewer_embed.php');11$viewer = new pts_result_viewer_embed();12$viewer->process_request_to_attributes();13require_once('pts_result_viewer_embed.php');14$viewer = new pts_result_viewer_embed();15$viewer->process_request_to_attributes();16require_once('pts_result_viewer_embed.php');17$viewer = new pts_result_viewer_embed();18$viewer->process_request_to_attributes();19require_once('pts_result_viewer_embed.php');20$viewer = new pts_result_viewer_embed();21$viewer->process_request_to_attributes();22require_once('pts_result_viewer_embed.php');23$viewer = new pts_result_viewer_embed();24$viewer->process_request_to_attributes();25require_once('pts_result_viewer_embed.php');26$viewer = new pts_result_viewer_embed();27$viewer->process_request_to_attributes();28require_once('pts_result_viewer_embed.php');29$viewer = new pts_result_viewer_embed();30$viewer->process_request_to_attributes();31require_once('pts_result_viewer_embed.php

Full Screen

Full Screen

process_request_to_attributes

Using AI Code Generation

copy

Full Screen

1$viewer = new pts_result_viewer_embed();2$viewer->process_request_to_attributes();3$viewer->render_result_file();4$viewer = new pts_result_viewer_embed();5$viewer->process_request_to_attributes();6$viewer->render_result_file();7$viewer = new pts_result_viewer_embed();8$viewer->process_request_to_attributes();9$viewer->render_result_file();10$viewer = new pts_result_viewer_embed();11$viewer->process_request_to_attributes();12$viewer->render_result_file();13$viewer = new pts_result_viewer_embed();14$viewer->process_request_to_attributes();15$viewer->render_result_file();16$viewer = new pts_result_viewer_embed();17$viewer->process_request_to_attributes();18$viewer->render_result_file();19$viewer = new pts_result_viewer_embed();20$viewer->process_request_to_attributes();21$viewer->render_result_file();22$viewer = new pts_result_viewer_embed();23$viewer->process_request_to_attributes();24$viewer->render_result_file();25$viewer = new pts_result_viewer_embed();26$viewer->process_request_to_attributes();27$viewer->render_result_file();28$viewer = new pts_result_viewer_embed();29$viewer->process_request_to_attributes();30$viewer->render_result_file();31$viewer = new pts_result_viewer_embed();32$viewer->process_request_to_attributes();33$viewer->render_result_file();

Full Screen

Full Screen

process_request_to_attributes

Using AI Code Generation

copy

Full Screen

1require 'pts-core/pts-core.php';2require 'pts-core/objects/pts_result_file_analyzer.php';3require 'pts-core/objects/pts_result_viewer_embed.php';4$embed = new pts_result_viewer_embed();5$embed->process_request_to_attributes();6require 'pts-core/pts-core.php';7require 'pts-core/objects/pts_result_file_analyzer.php';8require 'pts-core/objects/pts_result_viewer_embed.php';9$embed = new pts_result_viewer_embed();10$embed->process_request_to_attributes();11require 'pts-core/pts-core.php';12require 'pts-core/objects/pts_result_file_analyzer.php';13require 'pts-core/objects/pts_result_viewer_embed.php';14$embed = new pts_result_viewer_embed();15$embed->process_request_to_attributes();16require 'pts-core/pts-core.php';17require 'pts-core/objects/pts_result_file_analyzer.php';18require 'pts-core/objects/pts_result_viewer_embed.php';19$embed = new pts_result_viewer_embed();20$embed->process_request_to_attributes();21require 'pts-core/pts-core.php';22require 'pts-core/objects/pts_result_file_analyzer.php';23require 'pts-core/objects/pts_result_viewer_embed.php';24$embed = new pts_result_viewer_embed();25$embed->process_request_to_attributes();26require 'pts-core/pts-core.php';27require 'pts-core/objects/pts_result_file_analyzer.php';28require 'pts-core/objects/pts_result_viewer_embed.php';29$embed = new pts_result_viewer_embed();30$embed->process_request_to_attributes();31require 'pts-core/pts-core.php';

Full Screen

Full Screen

process_request_to_attributes

Using AI Code Generation

copy

Full Screen

1require_once('pts-result-viewer-embed.php');2$viewer = new pts_result_viewer_embed();3$viewer->process_request_to_attributes();4$viewer->process_request_to_attributes();5$viewer->render_result_file();6require_once('pts-result-viewer-embed.php');7$viewer = new pts_result_viewer_embed();8$viewer->process_request_to_attributes();9$viewer->process_request_to_attributes();10$viewer->render_result_file();11require_once('pts-result-viewer-embed.php');12$viewer = new pts_result_viewer_embed();13$viewer->process_request_to_attributes();14$viewer->process_request_to_attributes();15$viewer->render_result_file();16require_once('pts-result-viewer-embed.php');17$viewer = new pts_result_viewer_embed();18$viewer->process_request_to_attributes();19$viewer->process_request_to_attributes();20$viewer->render_result_file();21require_once('pts-result-viewer-embed.php');22$viewer = new pts_result_viewer_embed();23$viewer->process_request_to_attributes();24$viewer->process_request_to_attributes();25$viewer->render_result_file();26require_once('pts-result-viewer-embed.php');27$viewer = new pts_result_viewer_embed();28$viewer->process_request_to_attributes();29$viewer->process_request_to_attributes();30$viewer->render_result_file();31require_once('pts-result-viewer-embed.php');32$viewer = new pts_result_viewer_embed();33$viewer->process_request_to_attributes();34$viewer->process_request_to_attributes();35$viewer->render_result_file();36require_once('pts-result-viewer-embed.php');37$viewer = new pts_result_viewer_embed();38$viewer->process_request_to_attributes();39$viewer->process_request_to_attributes();

Full Screen

Full Screen

process_request_to_attributes

Using AI Code Generation

copy

Full Screen

1require_once('pts_result_viewer_embed.php');2$viewer = new pts_result_viewer_embed();3$attributes = $viewer->process_request_to_attributes('2.xml');4print_r($attributes);5require_once('pts_result_viewer_embed.php');6$viewer = new pts_result_viewer_embed();7$attributes = $viewer->process_request_to_attributes('3.xml');8print_r($attributes);9require_once('pts_result_viewer_embed.php');10$viewer = new pts_result_viewer_embed();11$attributes = $viewer->process_request_to_attributes('4.xml');12print_r($attributes);13require_once('pts_result_viewer_embed.php');14$viewer = new pts_result_viewer_embed();15$attributes = $viewer->process_request_to_attributes('5.xml');16print_r($attributes);17require_once('pts_result_viewer_embed.php');18$viewer = new pts_result_viewer_embed();19$attributes = $viewer->process_request_to_attributes('6.xml');20print_r($attributes);21require_once('pts_result_viewer_embed.php');22$viewer = new pts_result_viewer_embed();23$attributes = $viewer->process_request_to_attributes('7.xml');24print_r($attributes);25require_once('pts_result_viewer_embed.php');26$viewer = new pts_result_viewer_embed();27$attributes = $viewer->process_request_to_attributes('8.xml');28print_r($attributes);

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Phoronix-test-suite automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Trigger process_request_to_attributes code on LambdaTest Cloud Grid

Execute automation tests with process_request_to_attributes on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.

Test now for Free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful