How to use process_libxml_errors method of pts_validation class

Best Phoronix-test-suite code snippet using pts_validation.process_libxml_errors

pts_validation.php

Source:pts_validation.php Github

copy

Full Screen

...16 along with this program. If not, see <http://www.gnu.org/licenses/>.17*/18class pts_validation19{20 public static function process_libxml_errors()21 {22 $error_queue = array();23 $errors = libxml_get_errors();24 foreach($errors as $i => &$error)25 {26 if(isset($error_queue[$error->line]))27 {28 // There's already been an error reported for this line29 unset($errors[$i]);30 }31 switch($error->code)32 {33 case 1840: // Not in enumeration34 case 1839: // Not in pattern35 case 1871: // Missing / invalid element36 case 1833: // Below the minInclusive value37 echo PHP_EOL . $error->message;38 echo 'Line ' . $error->line . ': ' . $error->file . PHP_EOL;39 $error_queue[$error->line] = true;40 unset($errors[$i]);41 break;42 }43 }44 if(count($errors) > 0 && PTS_IS_CLIENT)45 {46 // DEBUG47 print_r($errors);48 }49 libxml_clear_errors();50 }51 public static function test_profile_permitted_files()52 {53 $allowed_files = array('downloads.xml', 'test-definition.xml', 'results-definition.xml', 'install.sh', 'support-check.sh', 'pre.sh', 'post.sh', 'interim.sh', 'post-cache-share.sh');54 foreach(pts_types::operating_systems() as $os)55 {56 $os = strtolower($os[0]);57 $allowed_files[] = 'support-check_' . $os . '.sh';58 $allowed_files[] = 'install_' . $os . '.sh';59 $allowed_files[] = 'pre_' . $os . '.sh';60 $allowed_files[] = 'post_' . $os . '.sh';61 $allowed_files[] = 'interim_' . $os . '.sh';62 }63 return $allowed_files;64 }65 public static function check_xml_tags(&$obj, &$tags_to_check, &$append_missing_to)66 {67 foreach($tags_to_check as $tag_check)68 {69 $to_check = $obj->xml_parser->getXMLValue($tag_check[0]);70 if(empty($to_check))71 {72 $append_missing_to[] = $tag_check;73 }74 }75 }76 public static function print_issue($type, $problems_r)77 {78 foreach($problems_r as $error)79 {80 list($target, $description) = $error;81 echo PHP_EOL . $type . ': ' . $description . PHP_EOL;82 if(!empty($target))83 {84 echo 'TARGET: ' . $target . PHP_EOL;85 }86 }87 }88 public static function validate_test_suite(&$test_suite)89 {90 // Validate the XML against the XSD Schemas91 libxml_clear_errors();92 // First rewrite the main XML file to ensure it is properly formatted, elements are ordered according to the schema, etc...93 $valid = $test_suite->validate();94 if($valid == false)95 {96 echo PHP_EOL . 'Errors occurred parsing the main XML.' . PHP_EOL;97 pts_validation::process_libxml_errors();98 return false;99 }100 else101 {102 echo PHP_EOL . 'Test Suite XML Is Valid.' . PHP_EOL;103 }104 return true;105 }106 public static function validate_test_profile(&$test_profile)107 {108 if($test_profile->get_file_location() == null)109 {110 echo PHP_EOL . 'ERROR: The file location of the XML test profile source could not be determined.' . PHP_EOL;111 return false;112 }113 // Validate the XML against the XSD Schemas114 libxml_clear_errors();115 // Now re-create the pts_test_profile object around the rewritten XML116 $test_profile = new pts_test_profile($test_profile->get_identifier());117 $valid = $test_profile->validate();118 if($valid == false)119 {120 echo PHP_EOL . 'Errors occurred parsing the main XML.' . PHP_EOL;121 pts_validation::process_libxml_errors();122 return false;123 }124 // Rewrite the main XML file to ensure it is properly formatted, elements are ordered according to the schema, etc...125 $test_profile_writer = new pts_test_profile_writer();126 $test_profile_writer->rebuild_test_profile($test_profile);127 $test_profile_writer->save_xml($test_profile->get_file_location());128 // Now re-create the pts_test_profile object around the rewritten XML129 $test_profile = new pts_test_profile($test_profile->get_identifier());130 $valid = $test_profile->validate();131 if($valid == false)132 {133 echo PHP_EOL . 'Errors occurred parsing the main XML.' . PHP_EOL;134 pts_validation::process_libxml_errors();135 return false;136 }137 else138 {139 echo PHP_EOL . 'Test Profile XML Is Valid.' . PHP_EOL;140 }141 // Validate the downloads file142 $download_xml_file = $test_profile->get_file_download_spec();143 if(empty($download_xml_file) == false)144 {145 $writer = new pts_test_profile_downloads_writer();146 $writer->rebuild_download_file($test_profile);147 $writer->save_xml($download_xml_file);148 $dom = new DOMDocument();149 $dom->load($download_xml_file);150 $valid = $dom->schemaValidate(PTS_OPENBENCHMARKING_PATH . 'schemas/test-profile-downloads.xsd');151 if($valid == false)152 {153 echo PHP_EOL . 'Errors occurred parsing the downloads XML.' . PHP_EOL;154 pts_validation::process_libxml_errors();155 return false;156 }157 else158 {159 echo PHP_EOL . 'Test Downloads XML Is Valid.' . PHP_EOL;160 }161 // Validate the individual download files162 echo PHP_EOL . 'Testing File Download URLs.' . PHP_EOL;163 $files_missing = 0;164 $file_count = 0;165 foreach(pts_test_install_request::read_download_object_list($test_profile) as $download)166 {167 foreach($download->get_download_url_array() as $url)168 {169 $stream_context = pts_network::stream_context_create();170 stream_context_set_params($stream_context, array('notification' => 'pts_stream_status_callback'));171 $file_pointer = fopen($url, 'r', false, $stream_context);172 if($file_pointer == false)173 {174 echo 'File Missing: ' . $download->get_filename() . ' / ' . $url . PHP_EOL;175 $files_missing++;176 }177 else178 {179 fclose($file_pointer);180 }181 $file_count++;182 }183 }184 if($files_missing > 0) // && $file_count == $files_missing185 {186 return false;187 }188 }189 // Validate the parser file190 $parser_file = $test_profile->get_file_parser_spec();191 if(empty($parser_file) == false)192 {193 $writer = self::rebuild_result_parser_file($parser_file);194 $writer->saveXMLFile($parser_file);195 $dom = new DOMDocument();196 $dom->load($parser_file);197 $valid = $dom->schemaValidate(PTS_OPENBENCHMARKING_PATH . 'schemas/results-parser.xsd');198 if($valid == false)199 {200 echo PHP_EOL . 'Errors occurred parsing the results parser XML.' . PHP_EOL;201 pts_validation::process_libxml_errors();202 return false;203 }204 else205 {206 echo PHP_EOL . 'Test Results Parser XML Is Valid.' . PHP_EOL;207 }208 }209 // Make sure no extra files are in there210 $allowed_files = pts_validation::test_profile_permitted_files();211 foreach(pts_file_io::glob($test_profile->get_resource_dir() . '*') as $tp_file)212 {213 if(!is_file($tp_file) || !in_array(basename($tp_file), $allowed_files))214 {215 echo PHP_EOL . basename($tp_file) . ' is not allowed in the test package.' . PHP_EOL;...

Full Screen

Full Screen

process_libxml_errors

Using AI Code Generation

copy

Full Screen

1require_once "pts_validation.php";2$validate = new pts_validation();3$validate->process_libxml_errors();4$validate->process_libxml_errors();5$validate->process_libxml_errors();6$validate->process_libxml_errors();7$validate->process_libxml_errors();8$validate->process_libxml_errors();9$validate->process_libxml_errors();10$validate->process_libxml_errors();11$validate->process_libxml_errors();12$validate->process_libxml_errors();13$validate->process_libxml_errors();14$validate->process_libxml_errors();15$validate->process_libxml_errors();

Full Screen

Full Screen

process_libxml_errors

Using AI Code Generation

copy

Full Screen

1include_once('class.pts_validation.php');2include_once('libxml_use_internal_errors.php');3$pts_validation = new pts_validation();4$dom = new DOMDocument();5$dom->load('test.xml');6$xml_schema_file = 'test.xsd';7$pts_validation->validate_xml_file($dom, $xml_schema_file);8$pts_validation->process_libxml_errors();9ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 510ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 711ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 912ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 1113ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 1314ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 1515ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 1716ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 1917ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 2118ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 2319ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 2520ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 2721ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 2922ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 3123ERROR: Element 'test': This element is not expected. Expected is ( test ). Line: 3324ERROR: Element 'test': This element is not expected. Expected is ( test ). Line:

Full Screen

Full Screen

process_libxml_errors

Using AI Code Generation

copy

Full Screen

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

Full Screen

Full Screen

process_libxml_errors

Using AI Code Generation

copy

Full Screen

1require_once 'pts_validation.php';2$pts_validation = new pts_validation();3$pts_validation->validate_xml_file('xml_file.xml', 'xsd_file.xsd', $errors);4if($pts_validation->xml_file_is_well_formed('xml_file.xml'))5{6 if($pts_validation->xml_file_has_errors('xml_file.xml'))7 {8 echo 'There are errors in the xml file';9 }10 {11 echo 'The xml file is well formed and valid';12 }13}14{15 echo 'The xml file is not well formed';16}

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_libxml_errors code on LambdaTest Cloud Grid

Execute automation tests with process_libxml_errors 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