debian-mirror-gitlab/tooling/lib/tooling/test_map_generator.rb
2023-05-27 22:25:52 +05:30

43 lines
993 B
Ruby

# frozen_string_literal: true
require 'set'
require 'yaml'
module Tooling
class TestMapGenerator
def initialize
@mapping = Hash.new { |h, k| h[k] = Set.new }
end
def parse(yaml_files)
Array(yaml_files).each do |yaml_file|
data = File.read(yaml_file)
metadata, example_groups = data.split("---\n").reject(&:empty?).map do |yml|
YAML.safe_load(yml, permitted_classes: [Symbol])
end
if example_groups.nil?
puts "No examples in #{yaml_file}! Metadata: #{metadata}"
next
end
example_groups.each do |example_id, files|
files.each do |file|
spec_file = strip_example_uid(example_id)
@mapping[file] << spec_file.delete_prefix('./')
end
end
end
end
def mapping
@mapping.transform_values { |set| set.to_a }
end
private
def strip_example_uid(example_id)
example_id.gsub(/\[.+\]/, '')
end
end
end