Best Phoronix-test-suite code snippet using pts_client.cli_just_bold
pts_stress_run_manager.php
Source:pts_stress_run_manager.php
...349 {350 $report_buffer = PHP_EOL . '###### SUMMARY REPORT ####' . PHP_EOL;351 }352 $report_buffer .= strtoupper(date('F j H:i T')) . PHP_EOL;353 $report_buffer .= pts_client::cli_just_bold('START TIME: ') . date('F j H:i T', $this->multi_test_stress_start_time) . PHP_EOL;354 $report_buffer .= pts_client::cli_just_bold('ELAPSED TIME: ') . pts_strings::format_time(time() - $this->multi_test_stress_start_time) . PHP_EOL;355 if($this->loop_until_time > time())356 {357 $report_buffer .= pts_client::cli_just_bold('TIME REMAINING: ') . pts_strings::format_time($this->loop_until_time - time()) . PHP_EOL;358 }359 else360 {361 $report_buffer .= 'WAITING FOR CURRENT TEST RUN QUEUE TO FINISH.' . PHP_EOL;362 }363 $report_buffer .= pts_client::cli_just_bold('SYSTEM IP: ') . pts_network::get_local_ip() . PHP_EOL;364 $report_buffer .= pts_client::cli_just_bold('HOSTNAME: ') . phodevi::read_property('system', 'hostname') . PHP_EOL;365 $report_buffer .= pts_client::cli_just_bold('# OF CONCURRENT TESTS: ') . $this->multi_test_stress_run . PHP_EOL . PHP_EOL;366 if(!$is_final)367 {368 $report_buffer .= 'TESTS CURRENTLY ACTIVE: ' . PHP_EOL;369 $table = array();370 foreach(pts_file_io::glob($this->thread_collection_dir . '*') as $pid_file)371 {372 $test = pts_file_io::file_get_contents($pid_file);373 $table[] = array($test, '[PID: ' . basename($pid_file) . ']');374 }375 $report_buffer .= pts_user_io::display_text_table($table, ' - ', 2) . PHP_EOL;376 }377 $report_buffer .= PHP_EOL . pts_client::cli_just_bold('TESTS IN RUN QUEUE: ') . PHP_EOL . PHP_EOL;378 $tiq = array();379 foreach($this->get_tests_to_run() as $i => $test)380 {381 $bar = pts_client::cli_colored_text(strtoupper($test->test_profile->get_title()) . ' [' . $test->test_profile->get_identifier() . ']', 'blue', true);382 if(!isset($tiq[$bar]))383 {384 $tiq[$bar] = array();385 }386 array_push($tiq[$bar], $test->get_arguments_description());387 }388 foreach($tiq as $test => $args)389 {390 $report_buffer .= $test;391 foreach($args as $arg)392 {393 if(!empty($arg))394 {395 $report_buffer .= PHP_EOL . ' ' . $arg;396 }397 }398 $report_buffer .= PHP_EOL;399 }400 $report_buffer .= PHP_EOL . pts_client::cli_just_bold('SYSTEM INFORMATION: ') . PHP_EOL;401 $table = array();402 foreach(phodevi::system_hardware(false) as $component => $value)403 {404 $table[] = array(pts_client::cli_just_bold($component . ': '), $value);405 }406 foreach(phodevi::system_software(false) as $component => $value)407 {408 $table[] = array(pts_client::cli_just_bold($component . ': '), $value);409 }410 $report_buffer .= pts_user_io::display_text_table($table, ' ', 1) . PHP_EOL . PHP_EOL;411 if(!empty($this->stress_tests_executed))412 {413 $table = array(array(pts_client::cli_just_bold('TESTS EXECUTED'), pts_client::cli_just_bold('TIMES CALLED')));414 ksort($this->stress_tests_executed);415 foreach($this->stress_tests_executed as $test => $times)416 {417 $table[] = array(pts_client::cli_just_bold($test) . ': ', $times);418 }419 $report_buffer .= pts_user_io::display_text_table($table, ' ', 2) . PHP_EOL . PHP_EOL;420 }421 $report_buffer .= pts_client::cli_just_bold('SENSOR DATA: ') . PHP_EOL;422 $table = array(array(pts_client::cli_just_bold('SENSOR'), pts_client::cli_just_bold('MIN'), pts_client::cli_just_bold('AVG'), pts_client::cli_just_bold('MAX')));423 foreach($this->sensor_data_archived as $sensor_name => &$sensor_data)424 {425 if(empty($sensor_data))426 continue;427 $max_val = max($sensor_data);428 if($max_val > 0)429 {430 $table[] = array(pts_client::cli_just_bold($sensor_name . ': '),431 pts_math::set_precision(min($sensor_data), 2),432 pts_math::set_precision(array_sum($sensor_data) / count($sensor_data), 2),433 pts_math::set_precision($max_val, 2),434 $this->sensor_data_archived_units[$sensor_name]);435 }436 }437 $report_buffer .= pts_user_io::display_text_table($table, ' ', 2) . PHP_EOL;438 $report_buffer .= '######' . PHP_EOL;439 return $report_buffer;440 }441}442?>...
info.php
Source:info.php
...37 $o = pts_types::identifier_to_object($arg);38 if($o instanceof pts_test_suite)39 {40 pts_client::$display->generic_heading($o->get_title());41 echo pts_client::cli_just_bold('Run Identifier: ') . $o->get_identifier() . PHP_EOL;42 echo pts_client::cli_just_bold('Suite Version: ') . $o->get_version() . PHP_EOL;43 echo pts_client::cli_just_bold('Maintainer: ') . $o->get_maintainer() . PHP_EOL;44 echo pts_client::cli_just_bold('Suite Type: ') . $o->get_suite_type() . PHP_EOL;45 echo pts_client::cli_just_bold('Unique Tests: ') . $o->get_unique_test_count() . PHP_EOL;46 echo pts_client::cli_just_bold('Suite Description: ') . $o->get_description() . PHP_EOL;47 echo PHP_EOL . pts_client::cli_just_bold('Contained Tests: ') . PHP_EOL;48 $test_table = array();49 foreach($o->get_contained_test_result_objects() as $result_obj)50 {51 $test_table[] = array($result_obj->test_profile->get_title(), $result_obj->get_arguments_description());52 }53 echo pts_user_io::display_text_table($test_table, ' ', 1);54 echo PHP_EOL;55 }56 else if($o instanceof pts_test_profile)57 {58 $test_title = $o->get_title();59 $test_version = $o->get_app_version();60 if(!empty($test_version))61 {62 $test_title .= ' ' . $test_version;63 }64 pts_client::$display->generic_heading($test_title);65 echo pts_client::cli_just_bold('Run Identifier: ') . $o->get_identifier() . PHP_EOL;66 echo pts_client::cli_just_bold('Profile Version: ') . $o->get_test_profile_version() . PHP_EOL;67 echo pts_client::cli_just_bold('Maintainer: ') . $o->get_maintainer() . PHP_EOL;68 echo pts_client::cli_just_bold('Test Type: ') . $o->get_test_hardware_type() . PHP_EOL;69 echo pts_client::cli_just_bold('Software Type: ') . $o->get_test_software_type() . PHP_EOL;70 echo pts_client::cli_just_bold('License Type: ') . $o->get_license() . PHP_EOL;71 echo pts_client::cli_just_bold('Test Status: ') . $o->get_status() . PHP_EOL;72 echo pts_client::cli_just_bold('Project Web-Site: ') . $o->get_project_url() . PHP_EOL;73 if($o->get_estimated_run_time() > 1)74 {75 echo pts_client::cli_just_bold('Estimated Run-Time: ') . $o->get_estimated_run_time() . ' Seconds' . PHP_EOL;76 }77 $download_size = $o->get_download_size();78 if(!empty($download_size))79 {80 echo pts_client::cli_just_bold('Download Size: ') . $download_size . ' MB' . PHP_EOL;81 }82 $environment_size = $o->get_environment_size();83 if(!empty($environment_size))84 {85 echo pts_client::cli_just_bold('Environment Size: ') . $environment_size . ' MB' . PHP_EOL;86 }87 echo PHP_EOL . pts_client::cli_just_bold('Description: ') . $o->get_description() . PHP_EOL;88 if($o->test_installation != false)89 {90 $last_run = $o->test_installation->get_last_run_date();91 $last_run = $last_run == '0000-00-00' ? 'Never' : $last_run;92 $avg_time = $o->test_installation->get_average_run_time();93 $avg_time = !empty($avg_time) ? pts_strings::format_time($avg_time, 'SECONDS') : 'N/A';94 $latest_time = $o->test_installation->get_latest_run_time();95 $latest_time = !empty($latest_time) ? pts_strings::format_time($latest_time, 'SECONDS') : 'N/A';96 echo PHP_EOL . pts_client::cli_just_bold('Test Installed: ') . 'Yes' . PHP_EOL;97 echo pts_client::cli_just_bold('Last Run: ') . $last_run . PHP_EOL;98 if($last_run != 'Never')99 {100 if($o->test_installation->get_run_count() > 1)101 {102 echo pts_client::cli_just_bold('Average Run-Time: ') . $avg_time . PHP_EOL;103 }104 echo pts_client::cli_just_bold('Latest Run-Time: ') . $latest_time . PHP_EOL;105 echo pts_client::cli_just_bold('Times Run: ') . $o->test_installation->get_run_count() . PHP_EOL;106 }107 }108 else109 {110 echo PHP_EOL . pts_client::cli_just_bold('Test Installed: ') . 'No' . PHP_EOL;111 }112 $dependencies = $o->get_external_dependencies();113 if(!empty($dependencies) && !empty($dependencies[0]))114 {115 echo PHP_EOL . pts_client::cli_just_bold('Software Dependencies:') . PHP_EOL;116 echo pts_user_io::display_text_list($o->get_dependency_names());117 }118 echo PHP_EOL;119 }120 else if($o instanceof pts_result_file)121 {122 echo pts_client::cli_just_bold('Title: ') . $o->get_title() . PHP_EOL . pts_client::cli_just_bold('Identifier: ') . $o->get_identifier() . PHP_EOL;123 echo PHP_EOL . pts_client::cli_just_bold('Test Result Identifiers:') . PHP_EOL;124 echo pts_user_io::display_text_list($o->get_system_identifiers());125 $test_titles = array();126 foreach($o->get_result_objects() as $result_object)127 {128 if($result_object->test_profile->get_display_format() == 'BAR_GRAPH')129 {130 $test_titles[] = $result_object->test_profile->get_title();131 }132 }133 if(count($test_titles) > 0)134 {135 echo PHP_EOL . pts_client::cli_just_bold('Contained Tests:') . PHP_EOL;136 echo pts_user_io::display_text_list(array_unique($test_titles));137 }138 echo PHP_EOL;139 }140 else if($o instanceof pts_virtual_test_suite)141 {142 pts_client::$display->generic_heading($o->get_title());143 echo pts_client::cli_just_bold('Virtual Suite Description: ') . $o->get_description() . PHP_EOL . PHP_EOL;144 foreach($o->get_contained_test_profiles() as $test_profile)145 {146 echo '- ' . $test_profile . PHP_EOL;147 }148 echo PHP_EOL;149 }150 }151 }152}153?>...
cli_just_bold
Using AI Code Generation
1require_once('pts_client.php');2pts_client::cli_just_bold("This is a test");3require_once('pts_client.php');4pts_client::cli_just_bold("This is a test");5require_once('pts_client.php');6pts_client::cli_just_bold("This is a test");7require_once('pts_client.php');8pts_client::cli_just_bold("This is a test");9require_once('pts_client.php');10pts_client::cli_just_bold("This is a test");11require_once('pts_client.php');12pts_client::cli_just_bold("This is a test");13require_once('pts_client.php');14pts_client::cli_just_bold("This is a test");15require_once('pts_client.php');16pts_client::cli_just_bold("This is a test");17require_once('pts_client.php');18pts_client::cli_just_bold("This is a test");19require_once('pts_client.php');20pts_client::cli_just_bold("This is a test");21require_once('pts_client.php');22pts_client::cli_just_bold("This is a test");23require_once('pts_client.php');24pts_client::cli_just_bold("This is a test");25require_once('pts_client.php
cli_just_bold
Using AI Code Generation
1echo pts_client::cli_just_bold('This is bold text');2echo pts_client::cli_just_italic('This is italic text');3echo pts_client::cli_just_underlined('This is underlined text');4echo pts_client::cli_just_blink('This is blinking text');5echo pts_client::cli_just_reverse('This is reversed text');6echo pts_client::cli_just_conceal('This is concealed text');7echo pts_client::cli_just_strikethrough('This is strikethrough text');8echo pts_client::cli_just_black('This is black text');9echo pts_client::cli_just_red('This is red text');10echo pts_client::cli_just_green('This is green text');11echo pts_client::cli_just_yellow('This is yellow text');
cli_just_bold
Using AI Code Generation
1$cli->cli_just_bold('This is a bold string');2$cli->cli_just_italic('This is a italic string');3$cli->cli_just_underlined('This is a underlined string');4$cli->cli_just_blink('This is a blink string');5$cli->cli_just_reverse('This is a reverse string');6$cli->cli_just_conceal('This is a conceal string');7$cli->cli_just_black('This is a black string');8$cli->cli_just_red('This is a red string');9$cli->cli_just_green('This is a green string');10$cli->cli_just_yellow('This is a yellow string');11$cli->cli_just_blue('This is a blue string');12$cli->cli_just_magenta('This is a magenta string');13$cli->cli_just_cyan('This is a cyan string');
cli_just_bold
Using AI Code Generation
1require_once('pts_client.php');2pts_client::cli_just_bold("Hello World!");3require_once('pts_client.php');4pts_client::cli_just_italic("Hello World!");5require_once('pts_client.php');6pts_client::cli_just_underline("Hello World!");7require_once('pts_client.php');8pts_client::cli_just_strikeout("Hello World!");9require_once('pts_client.php');10pts_client::cli_just_blink("Hello World!");11require_once('pts_client.php');12pts_client::cli_just_reverse("Hello World!");13require_once('pts_client.php');14pts_client::cli_just_hide("Hello World!");15require_once('pts_client.php');16pts_client::cli_just_clear();
cli_just_bold
Using AI Code Generation
1require_once 'pts_client.php';2pts_client::cli_just_bold('This is a bold text');3require_once 'pts_client.php';4pts_client::cli_just_italic('This is a italic text');5require_once 'pts_client.php';6pts_client::cli_just_underline('This is a underline text');7require_once 'pts_client.php';8pts_client::cli_just_color('This is a colored text', 'red');9require_once 'pts_client.php';10pts_client::cli_just_background('This is a background colored text', 'green');11require_once 'pts_client.php';12pts_client::cli_just_blink('This is a blinking text');13require_once 'pts_client.php';14pts_client::cli_just_reverse('This is a reversed text');15require_once 'pts_client.php';16pts_client::cli_just_conceal('This is a concealed text');17require_once 'pts_client.php';
cli_just_bold
Using AI Code Generation
1require_once('pts_client.php');2pts_client::cli_just_bold("Hello World");3require_once('pts_client.php');4pts_client::cli_just_italic("Hello World");5require_once('pts_client.php');6pts_client::cli_just_underline("Hello World");7require_once('pts_client.php');8pts_client::cli_just_blink("Hello World");9require_once('pts_client.php');10pts_client::cli_just_reverse("Hello World");11require_once('pts_client.php');12pts_client::cli_just_concealed("Hello World");13require_once('pts_client.php');14pts_client::cli_just_black("Hello World");15require_once('pts_client.php');16pts_client::cli_just_red("Hello World");
cli_just_bold
Using AI Code Generation
1require_once 'pts_client.php';2pts_client::cli_just_bold("This is a sample text");3require_once 'pts_client.php';4pts_client::cli_just_italic("This is a sample text");5require_once 'pts_client.php';6pts_client::cli_just_underline("This is a sample text");7require_once 'pts_client.php';8pts_client::cli_just_reverse("This is a sample text");9require_once 'pts_client.php';10pts_client::cli_just_blink("This is a sample text");11require_once 'pts_client.php';12pts_client::cli_just_black("This is a sample text");13require_once 'pts_client.php';14pts_client::cli_just_red("This is a sample text");15require_once 'pts_client.php';16pts_client::cli_just_green("This is a sample text");
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Execute automation tests with cli_just_bold on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.
Test now for FreeGet 100 minutes of automation test minutes FREE!!