class Gitlab::QA::Report::UpdateScreenshotPath
def initialize(files:)
def initialize(files:) @files = files end
def invoke!
def invoke! Dir.glob(@files).each do |rspec_report_file| report = rewrite_each_screenshot_path(rspec_report_file) File.write(rspec_report_file, report) puts "Saved #{rspec_report_file}" end end
def rewrite_each_screenshot_path(rspec_report_file)
def rewrite_each_screenshot_path(rspec_report_file) report = Nokogiri::XML(File.open(rspec_report_file)) match_data = rspec_report_file.match(REGEX) report.xpath('//system-out').each do |system_out| system_out.content = system_out.content.gsub(File.join(Docker::Volumes::QA_CONTAINER_WORKDIR, 'tmp'), "#{match_data[:gitlab_qa_run]}/#{match_data[:gitlab_ce_ee_qa]}") end report.to_s end