Best Phoronix-test-suite code snippet using pts_validation.test_profile_permitted_files
pts_validation.php
Source:pts_validation.php
...47 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;216 return false;217 }218 }219 return true;220 }221 public static function rebuild_result_parser_file($xml_file)222 {223 $xml_writer = new nye_XmlWriter();224 $xml_parser = new nye_XmlReader($xml_file);...
phoromatic_create_test.php
Source:phoromatic_create_test.php
...36 $tp = new pts_test_profile($_POST['test-definition_xml']);37 $tp->set_identifier($_POST['tp_update']);38 $tp_path = PTS_TEST_PROFILE_PATH . $tp->get_identifier(false) . '-' . $tp->get_test_profile_version();39 pts_file_io::mkdir($tp_path);40 foreach(pts_validation::test_profile_permitted_files() as $permitted_file)41 {42 $pfs = str_replace('.', '_', $permitted_file);43 if(isset($_POST[$pfs]))44 {45 /* Replaces DOS line-endings of the POST request with platform compatible ones */46 $fc = str_replace("\r\n", PHP_EOL, $_POST[$pfs]);47 file_put_contents($tp_path . '/' . $permitted_file, $fc);48 }49 }50 header('Location: /?create_test/' . $tp->get_identifier(false) . '-' . $tp->get_test_profile_version());51 }52 if(isset($_POST['test_profile_base']))53 {54 $tp_identifier = 'local/' . pts_validation::string_to_sanitized_test_profile_base(str_replace('local/', '', $_POST['test_profile_base']));...
test_profile_permitted_files
Using AI Code Generation
1require_once('pts_validation.php');2$test = new pts_validation();3$test->test_profile_permitted_files('2.xml');4require_once('pts_validation.php');5$test = new pts_validation();6$test->test_profile_permitted_files('3.xml');7require_once('pts_validation.php');8$test = new pts_validation();9$test->test_profile_permitted_files('4.xml');10require_once('pts_validation.php');11$test = new pts_validation();12$test->test_profile_permitted_files('5.xml');13require_once('pts_validation.php');14$test = new pts_validation();15$test->test_profile_permitted_files('6.xml');16require_once('pts_validation.php');17$test = new pts_validation();18$test->test_profile_permitted_files('7.xml');19require_once('pts_validation.php');20$test = new pts_validation();21$test->test_profile_permitted_files('8.xml');
test_profile_permitted_files
Using AI Code Generation
1include_once 'pts_validation.php';2$pts_validation = new pts_validation();3$required_files = array('1.php', '2.php');4$required_files = $pts_validation->test_profile_permitted_files($required_files);5print_r($required_files);6include_once 'pts_validation.php';7$pts_validation = new pts_validation();8$required_files = array('1.php', '2.php', '3.php');9$required_files = $pts_validation->test_profile_permitted_files($required_files);10print_r($required_files);11include_once 'pts_validation.php';12$pts_validation = new pts_validation();13$required_files = array('1.php', '2.php', '3.php', '4.php');14$required_files = $pts_validation->test_profile_permitted_files($required_files);15print_r($required_files);16include_once 'pts_validation.php';17$pts_validation = new pts_validation();18$required_files = array('1.php', '2.php', '3.php', '4.php', '5.php');19$required_files = $pts_validation->test_profile_permitted_files($required_files);20print_r($required_files);21include_once 'pts_validation.php';22$pts_validation = new pts_validation();23$required_files = array('1.php', '2.php', '3.php',
test_profile_permitted_files
Using AI Code Generation
1$files = array('1.php', '2.php', '3.php');2$profile = 'test_profile.xml';3$validation = new pts_validation();4var_dump($validation->test_profile_permitted_files($files, $profile));5$files = array('1.php', '2.php', '3.php');6$profile = 'test_profile.xml';7$validation = new pts_validation();8var_dump($validation->test_profile_permitted_files($files, $profile));9array(3) {10 string(5) "1.php"11 string(5) "2.php"12 string(5) "3.php"13}14Your name to display (optional):
test_profile_permitted_files
Using AI Code Generation
1include_once 'pts_validation.php';2$pts_validation_obj = new pts_validation();3$pts_validation_obj->test_profile_permitted_files('2.php');4include_once 'pts_validation.php';5$pts_validation_obj = new pts_validation();6$pts_validation_obj->test_profile_permitted_files('2.php');7Related Posts: PHP | gethostbynamel() Function8PHP | gethostbyname() Function9PHP | gethostbyaddr() Function10PHP | gethostname() Function11PHP | getmxrr() Function12PHP | getprotobyname() Function13PHP | getprotobynumber() Function14PHP | getservbyname() Function15PHP | getservbyport() Function16PHP | getmyuid() Function17PHP | getmygid() Function18PHP | getmyinode() Function19PHP | getlastmod() Function20PHP | getmyusername() Function21PHP | getmypid() Function22PHP | get_current_user() Function23PHP | get_cfg_var() Function24PHP | get_browser() Function25PHP | getrusage() Function26PHP | getrusage() Function
test_profile_permitted_files
Using AI Code Generation
1require_once 'pts_validation.php';2$profile_permitted_files = array('test_profile.xml', 'test_profile.xsd', 'runtest.php', 'test-definition.xml', 'test-definition.xsd');3$profile_permitted_files = array_map('strtolower', $profile_permitted_files);4$profile_permitted_files = array_map('trim', $profile_permitted_files);5$profile_permitted_files = array_flip($profile_permitted_files);6$profile_permitted_files = array_change_key_case($profile_permitted_files, CASE_LOWER);7$profile_permitted_files = array_flip($profile_permitted_files);8$profile_permitted_files = array_map('trim', $profile_permitted_files);9$profile_permitted_files = array_flip($profile_permitted_files);10$profile_permitted_files = array_map('strtolower', $profile_permitted_files);11$profile_permitted_files = array_flip($profile_permitted_files);12$profile_permitted_files = array_map('trim', $profile_permitted_files);13$profile_permitted_files = array_flip($profile_permitted_files);14$profile_permitted_files = array_map('strtolower', $profile_permitted_files);15$profile_permitted_files = array_flip($profile_permitted_files);16$profile_permitted_files = array_map('trim', $profile_permitted_files);17$profile_permitted_files = array_flip($profile_permitted_files);18$profile_permitted_files = array_map('strtolower', $profile_permitted_files);19$profile_permitted_files = array_flip($profile_permitted_files);20$profile_permitted_files = array_map('trim', $profile_permitted_files);21$profile_permitted_files = array_flip($profile_permitted_files);22$profile_permitted_files = array_map('strtolower', $profile_permitted_files);23$profile_permitted_files = array_flip($profile_permitted_files);24$profile_permitted_files = array_map('trim', $profile_permitted_files);25$profile_permitted_files = array_flip($profile_permitted_files);26$profile_permitted_files = array_map('strtolower', $profile_permitted_files);27$profile_permitted_files = array_flip($profile_permitted_files);28$profile_permitted_files = array_map('trim', $profile_permitted_files);29$profile_permitted_files = array_flip($profile_permitted_files);30$profile_permitted_files = array_map('strtolower', $profile_permitted_files);
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 test_profile_permitted_files 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!!