Project

General

Profile

Bug #23389

Updated by Alexis Mousset 9 months ago

For example, if a @file_content@ is called with a content containing @${releasever}@ (for a rpm repo URL), the class prefix won't be correctly defined. 

 !clipboard-202309052335-adxxd.png! 

 <pre> 
 vars: 
    # this variable keeps previous value is report_param constains an expression looking like an non-expanded variable 
    "full_class_prefix" string => canonify("file_lines_present_${report_param}"); 

 reports: 
   pass2.!pass3:: 
     "full_class_prefix = ${full_class_prefix} (editing ${path})"; 
 </pre> 

 This will lead to re-using the full class prefix of the previous call to method and lead to incorrect reporting. 

 <pre> 
 E| compliant       technique                   File content                /tmp/plop            Insert content into /tmp/plop was correct 
 2023-09-05T21:37:51+00:00 R: full_class_prefix = file_lines_present__tmp_plop_plop_true (editing /tmp/plop) 
 E| compliant       technique                   File content                /tmp/test            Insert content into /tmp/test was correct 
 2023-09-05T21:37:51+00:00 R: full_class_prefix = file_lines_present__tmp_plop_plop_true (editing /tmp/test) 
 </pre> 

Back