2022-07-16 23:28:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
require 'fileutils'
|
|
|
|
require 'open-uri'
|
|
|
|
require 'yaml'
|
|
|
|
require 'psych'
|
|
|
|
require 'tempfile'
|
|
|
|
require 'open3'
|
2022-11-25 23:54:43 +05:30
|
|
|
require 'active_support/core_ext/enumerable'
|
2022-07-16 23:28:13 +05:30
|
|
|
require_relative 'constants'
|
|
|
|
require_relative 'shared'
|
|
|
|
require_relative 'parse_examples'
|
|
|
|
|
2022-11-25 23:54:43 +05:30
|
|
|
# IMPORTANT NOTE: See https://docs.gitlab.com/ee/development/gitlab_flavored_markdown/specification_guide/#update-example-snapshotsrb-script
|
2022-07-16 23:28:13 +05:30
|
|
|
# for details on the implementation and usage of this script. This developers guide
|
|
|
|
# contains diagrams and documentation of this script,
|
|
|
|
# including explanations and examples of all files it reads and writes.
|
2022-07-23 23:45:48 +05:30
|
|
|
#
|
|
|
|
# Also note that this script is intentionally written in a pure-functional (not OO) style,
|
|
|
|
# with no dependencies on Rails or the GitLab libraries. These choices are intended to make
|
|
|
|
# it faster and easier to test and debug.
|
2022-07-16 23:28:13 +05:30
|
|
|
module Glfm
|
|
|
|
class UpdateExampleSnapshots
|
|
|
|
include Constants
|
|
|
|
include Shared
|
|
|
|
include ParseExamples
|
|
|
|
|
|
|
|
# skip_static_and_wysiwyg can be used to skip the backend/frontend html and prosemirror JSON
|
|
|
|
# generation which depends on external calls. This allows for faster processing in unit tests
|
|
|
|
# which do not require it.
|
|
|
|
def process(skip_static_and_wysiwyg: false)
|
|
|
|
output('Updating example snapshots...')
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
output("Reading #{ES_SNAPSHOT_SPEC_MD_PATH}...")
|
|
|
|
es_snapshot_spec_md_lines = File.open(ES_SNAPSHOT_SPEC_MD_PATH).readlines
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
# Parse all the examples from `snapshot_spec.md`, using a Ruby port of the Python `get_tests`
|
2022-07-16 23:28:13 +05:30
|
|
|
# function the from original CommonMark/GFM `spec_test.py` script.
|
2023-01-13 00:05:48 +05:30
|
|
|
all_examples = parse_examples(es_snapshot_spec_md_lines)
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
add_example_names(all_examples)
|
2022-07-23 23:45:48 +05:30
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
reject_disabled_examples(all_examples)
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
write_snapshot_example_files(all_examples, skip_static_and_wysiwyg: skip_static_and_wysiwyg)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def add_example_names(all_examples)
|
2022-08-13 15:12:31 +05:30
|
|
|
# NOTE: This method and the parse_examples method assume:
|
2022-07-16 23:28:13 +05:30
|
|
|
# 1. Section 2 is the first section which contains examples
|
2022-10-11 01:57:18 +05:30
|
|
|
# 2. Examples are always nested in an H2 or an H3, never directly in an H1
|
|
|
|
# 3. There may exist headings with no examples (e.g. "Motivation" in the GLFM spec.txt)
|
2022-08-13 15:12:31 +05:30
|
|
|
# 4. The Appendix doesn't ever contain any examples, so it doesn't show up
|
2022-07-16 23:28:13 +05:30
|
|
|
# in the H1 header count. So, even though due to the concatenation it appears before the
|
|
|
|
# GitLab examples sections, it doesn't result in their header counts being off by +1.
|
2022-08-13 15:12:31 +05:30
|
|
|
# 5. If an example contains the 'disabled' string extension, it is skipped (and will thus
|
2023-01-13 00:05:48 +05:30
|
|
|
# result in a skip in the `spec_example_position`). This behavior is taken from the
|
2022-08-13 15:12:31 +05:30
|
|
|
# GFM `spec_test.py` script (but it's NOT in the original CommonMark `spec_test.py`).
|
|
|
|
# 6. If a section contains ONLY disabled examples, the section numbering will still be
|
|
|
|
# incremented to match the rendered HTML specification section numbering.
|
2022-10-11 01:57:18 +05:30
|
|
|
# 7. Every H2 or H3 must contain at least one example, but it is allowed that they are
|
|
|
|
# all disabled.
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
h1_count = 1 # examples start in H1 section 2; section 1 is the overview with no examples.
|
|
|
|
h2_count = 0
|
2022-10-11 01:57:18 +05:30
|
|
|
h3_count = 0
|
2022-07-16 23:28:13 +05:30
|
|
|
previous_h1 = ''
|
|
|
|
previous_h2 = ''
|
2022-10-11 01:57:18 +05:30
|
|
|
previous_h3 = ''
|
|
|
|
index_within_current_heading = 0
|
2022-07-16 23:28:13 +05:30
|
|
|
all_examples.each do |example|
|
|
|
|
headers = example[:headers]
|
|
|
|
|
|
|
|
if headers[0] != previous_h1
|
|
|
|
h1_count += 1
|
|
|
|
h2_count = 0
|
2022-10-11 01:57:18 +05:30
|
|
|
h3_count = 0
|
2022-07-16 23:28:13 +05:30
|
|
|
previous_h1 = headers[0]
|
|
|
|
end
|
|
|
|
|
|
|
|
if headers[1] != previous_h2
|
|
|
|
h2_count += 1
|
2022-10-11 01:57:18 +05:30
|
|
|
h3_count = 0
|
2022-07-16 23:28:13 +05:30
|
|
|
previous_h2 = headers[1]
|
2022-10-11 01:57:18 +05:30
|
|
|
index_within_current_heading = 0
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
if headers[2] && headers[2] != previous_h3
|
|
|
|
h3_count += 1
|
|
|
|
previous_h3 = headers[2]
|
|
|
|
index_within_current_heading = 0
|
|
|
|
end
|
|
|
|
|
|
|
|
index_within_current_heading += 1
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
# convert headers array to lowercase string with underscores, and double underscores between headers
|
|
|
|
formatted_headers_text = headers.join('__').tr('-', '_').tr(' ', '_').downcase
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
hierarchy_level =
|
|
|
|
"#{h1_count.to_s.rjust(2, '0')}_" \
|
|
|
|
"#{h2_count.to_s.rjust(2, '0')}_" \
|
|
|
|
"#{h3_count.to_s.rjust(2, '0')}"
|
|
|
|
position_within_section = index_within_current_heading.to_s.rjust(3, '0')
|
2022-07-16 23:28:13 +05:30
|
|
|
name = "#{hierarchy_level}__#{formatted_headers_text}__#{position_within_section}"
|
|
|
|
converted_name = name.tr('(', '').tr(')', '') # remove any parens from the name
|
|
|
|
example[:name] = converted_name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
def reject_disabled_examples(all_examples)
|
|
|
|
all_examples.reject! { |example| example[:disabled] }
|
|
|
|
end
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
def write_snapshot_example_files(all_examples, skip_static_and_wysiwyg:)
|
2022-07-23 23:45:48 +05:30
|
|
|
output("Reading #{GLFM_EXAMPLE_STATUS_YML_PATH}...")
|
2022-11-25 23:54:43 +05:30
|
|
|
glfm_examples_statuses = YAML.safe_load(File.open(GLFM_EXAMPLE_STATUS_YML_PATH), symbolize_names: true) || {}
|
2022-07-23 23:45:48 +05:30
|
|
|
validate_glfm_example_status_yml(glfm_examples_statuses)
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
write_examples_index_yml(all_examples)
|
|
|
|
|
2022-11-25 23:54:43 +05:30
|
|
|
validate_glfm_config_file_example_names(all_examples)
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
write_markdown_yml(all_examples)
|
|
|
|
|
|
|
|
if skip_static_and_wysiwyg
|
|
|
|
output("Skipping static/WYSIWYG HTML and prosemirror JSON generation...")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
# NOTE: We pass the INPUT_MARKDOWN_YML_PATH and INPUT_METADATA_YML_PATH via
|
|
|
|
# environment variables to the static/wysiwyg HTML generation scripts. This is because they
|
|
|
|
# are implemented as subprocesses which invoke rspec/jest scripts, and rspec/jest do not make
|
|
|
|
# it straightforward to pass arguments via the command line.
|
|
|
|
ENV['INPUT_MARKDOWN_YML_PATH'], ENV['INPUT_METADATA_YML_PATH'] = copy_tempfiles_for_subprocesses
|
|
|
|
static_html_hash = generate_static_html
|
|
|
|
wysiwyg_html_and_json_hash = generate_wysiwyg_html_and_json
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
write_html_yml(all_examples, static_html_hash, wysiwyg_html_and_json_hash, glfm_examples_statuses)
|
|
|
|
|
|
|
|
write_prosemirror_json_yml(all_examples, wysiwyg_html_and_json_hash, glfm_examples_statuses)
|
|
|
|
end
|
|
|
|
|
|
|
|
def validate_glfm_example_status_yml(glfm_examples_statuses)
|
|
|
|
glfm_examples_statuses.each do |example_name, statuses|
|
|
|
|
next unless statuses &&
|
2022-10-11 01:57:18 +05:30
|
|
|
statuses[:skip_update_example_snapshots] &&
|
|
|
|
statuses.any? { |key, value| key.to_s.include?('skip_update_example_snapshot_') && !!value }
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
raise "Error: '#{example_name}' must not have any 'skip_update_example_snapshot_*' values specified " \
|
|
|
|
"if 'skip_update_example_snapshots' is truthy"
|
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
|
2022-11-25 23:54:43 +05:30
|
|
|
def validate_glfm_config_file_example_names(all_examples)
|
|
|
|
valid_example_names = all_examples.pluck(:name).map(&:to_sym) # rubocop:disable CodeReuse/ActiveRecord
|
|
|
|
|
|
|
|
# We are re-reading GLFM_EXAMPLE_STATUS_YML_PATH here, but that's OK, it's a small file, and rereading it
|
|
|
|
# allows us to handle it in the same loop as the other manually-curated config files.
|
|
|
|
[
|
|
|
|
GLFM_EXAMPLE_STATUS_YML_PATH,
|
|
|
|
GLFM_EXAMPLE_METADATA_YML_PATH,
|
|
|
|
GLFM_EXAMPLE_NORMALIZATIONS_YML_PATH
|
|
|
|
].each do |path|
|
|
|
|
output("Reading #{path}...")
|
|
|
|
io = File.open(path)
|
|
|
|
config_file_examples = YAML.safe_load(io, symbolize_names: true, aliases: true)
|
|
|
|
|
|
|
|
# Skip validation if the config file is empty
|
|
|
|
next unless config_file_examples
|
|
|
|
|
|
|
|
config_file_example_names = config_file_examples.keys
|
|
|
|
|
|
|
|
# Validate that all example names exist in the config file refer to an existing example in `examples_index.yml`,
|
|
|
|
# unless it starts with the special prefix `00_`, which is preserved for usage as YAML anchors.
|
|
|
|
invalid_name = config_file_example_names.detect do |name|
|
|
|
|
!name.start_with?('00_') && valid_example_names.exclude?(name)
|
|
|
|
end
|
|
|
|
next unless invalid_name
|
|
|
|
|
|
|
|
# NOTE: The extra spaces before punctuation in the error message allows for easier copy/pasting of the paths.
|
|
|
|
err_msg =
|
|
|
|
<<~TXT
|
|
|
|
|
|
|
|
Error in input specification config file #{path} :
|
|
|
|
|
|
|
|
Config file entry named #{invalid_name}
|
|
|
|
does not have a corresponding example entry in
|
|
|
|
#{ES_EXAMPLES_INDEX_YML_PATH} .
|
|
|
|
|
|
|
|
Please delete or rename this config file entry.
|
|
|
|
|
|
|
|
If this entry is being used as a YAML anchor, please rename it to start with '00_'.
|
|
|
|
TXT
|
|
|
|
raise err_msg
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
def write_examples_index_yml(all_examples)
|
|
|
|
generate_and_write_for_all_examples(
|
|
|
|
all_examples, ES_EXAMPLES_INDEX_YML_PATH, literal_scalars: false
|
|
|
|
) do |example, hash|
|
2022-10-11 01:57:18 +05:30
|
|
|
name = example.fetch(:name).to_sym
|
|
|
|
hash[name] = {
|
2023-01-13 00:05:48 +05:30
|
|
|
'spec_example_position' => example.fetch(:example),
|
2022-10-11 01:57:18 +05:30
|
|
|
'source_specification' => source_specification_for_extensions(example.fetch(:extensions))
|
2022-07-16 23:28:13 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
def source_specification_for_extensions(extensions)
|
|
|
|
unprocessed_extensions = extensions.map(&:to_sym)
|
|
|
|
unprocessed_extensions.delete(:disabled)
|
|
|
|
|
|
|
|
source_specification =
|
|
|
|
if unprocessed_extensions.empty?
|
|
|
|
'commonmark'
|
|
|
|
elsif unprocessed_extensions.include?(:gitlab)
|
|
|
|
unprocessed_extensions.delete(:gitlab)
|
|
|
|
'gitlab'
|
|
|
|
else
|
|
|
|
'github'
|
|
|
|
end
|
|
|
|
|
|
|
|
# We should only be left with at most one extension, which is an optional name for the example
|
|
|
|
raise "Error: Invalid extension(s) found: #{unprocessed_extensions.join(', ')}" if unprocessed_extensions.size > 1
|
|
|
|
|
|
|
|
source_specification
|
|
|
|
end
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
def write_markdown_yml(all_examples)
|
|
|
|
generate_and_write_for_all_examples(all_examples, ES_MARKDOWN_YML_PATH) do |example, hash|
|
2022-10-11 01:57:18 +05:30
|
|
|
name = example.fetch(:name).to_sym
|
|
|
|
hash[name] = example.fetch(:markdown)
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
def copy_tempfiles_for_subprocesses
|
|
|
|
# NOTE: We must copy the input YAML files used by the `render_static_html.rb`
|
|
|
|
# and `render_wysiwyg_html_and_json.js` scripts to a separate temporary file in order for
|
|
|
|
# the scripts to read them, because the scripts are run in
|
|
|
|
# separate subprocesses, and during unit testing we are unable to substitute the mock
|
|
|
|
# StringIO when reading the input files in the subprocess.
|
|
|
|
{
|
|
|
|
ES_MARKDOWN_YML_PATH => MARKDOWN_TEMPFILE_BASENAME,
|
|
|
|
GLFM_EXAMPLE_METADATA_YML_PATH => METADATA_TEMPFILE_BASENAME
|
|
|
|
}.map do |original_file_path, tempfile_basename|
|
|
|
|
Dir::Tmpname.create(tempfile_basename) do |path|
|
|
|
|
io = File.open(original_file_path)
|
|
|
|
io.seek(0) # rewind the file. This is necessary when testing with a mock StringIO
|
|
|
|
contents = io.read
|
|
|
|
write_file(path, contents)
|
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
def generate_static_html
|
2022-07-16 23:28:13 +05:30
|
|
|
output("Generating static HTML from markdown examples...")
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
# NOTE 1: We shell out to perform the conversion of markdown to static HTML by invoking a
|
|
|
|
# separate subprocess. This allows us to avoid using the Rails API or environment in this
|
|
|
|
# script, which makes developing and running the unit tests for this script much faster,
|
2022-07-16 23:28:13 +05:30
|
|
|
# because they can use 'fast_spec_helper' which does not require the entire Rails environment.
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
# NOTE 2: We run this as an RSpec process, for the same reasons we run via Jest process below:
|
|
|
|
# because that's the easiest way to ensure a reliable, fully-configured environment in which
|
2022-11-25 23:54:43 +05:30
|
|
|
# to execute the markdown-processing logic. Also, in the static/backend case, Rspec
|
2022-10-11 01:57:18 +05:30
|
|
|
# provides the easiest and most reliable way to generate example data via Factorybot
|
|
|
|
# creation of stable model records. This ensures consistent snapshot values across
|
|
|
|
# machines/environments.
|
|
|
|
|
|
|
|
# Dir::Tmpname.create requires a block, but we are using the non-block form to get the path
|
|
|
|
# via the return value, so we pass an empty block to avoid an error.
|
|
|
|
static_html_tempfile_path = Dir::Tmpname.create(STATIC_HTML_TEMPFILE_BASENAME) {}
|
|
|
|
ENV['OUTPUT_STATIC_HTML_TEMPFILE_PATH'] = static_html_tempfile_path
|
|
|
|
|
|
|
|
cmd = %(bin/rspec #{__dir__}/render_static_html.rb)
|
|
|
|
run_external_cmd(cmd)
|
2022-07-16 23:28:13 +05:30
|
|
|
|
|
|
|
output("Reading generated static HTML from tempfile #{static_html_tempfile_path}...")
|
2022-10-11 01:57:18 +05:30
|
|
|
YAML.safe_load(File.open(static_html_tempfile_path), symbolize_names: true)
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
def generate_wysiwyg_html_and_json
|
2022-07-16 23:28:13 +05:30
|
|
|
output("Generating WYSIWYG HTML and prosemirror JSON from markdown examples...")
|
|
|
|
|
|
|
|
# Dir::Tmpname.create requires a block, but we are using the non-block form to get the path
|
|
|
|
# via the return value, so we pass an empty block to avoid an error.
|
|
|
|
wysiwyg_html_and_json_tempfile_path = Dir::Tmpname.create(WYSIWYG_HTML_AND_JSON_TEMPFILE_BASENAME) {}
|
|
|
|
ENV['OUTPUT_WYSIWYG_HTML_AND_JSON_TEMPFILE_PATH'] = wysiwyg_html_and_json_tempfile_path
|
|
|
|
|
2022-11-25 23:54:43 +05:30
|
|
|
cmd = "yarn jest --testMatch '**/render_wysiwyg_html_and_json.js' #{__dir__}/render_wysiwyg_html_and_json.js"
|
2022-07-16 23:28:13 +05:30
|
|
|
run_external_cmd(cmd)
|
|
|
|
|
|
|
|
output("Reading generated WYSIWYG HTML and prosemirror JSON from tempfile " \
|
|
|
|
"#{wysiwyg_html_and_json_tempfile_path}...")
|
2022-10-11 01:57:18 +05:30
|
|
|
YAML.safe_load(File.open(wysiwyg_html_and_json_tempfile_path), symbolize_names: true)
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def write_html_yml(all_examples, static_html_hash, wysiwyg_html_and_json_hash, glfm_examples_statuses)
|
|
|
|
generate_and_write_for_all_examples(
|
2022-10-11 01:57:18 +05:30
|
|
|
all_examples, ES_HTML_YML_PATH, glfm_examples_statuses: glfm_examples_statuses
|
2022-07-23 23:45:48 +05:30
|
|
|
) do |example, hash, existing_hash|
|
2022-10-11 01:57:18 +05:30
|
|
|
name = example.fetch(:name).to_sym
|
2022-07-23 23:45:48 +05:30
|
|
|
example_statuses = glfm_examples_statuses[name] || {}
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
static = if example_statuses[:skip_update_example_snapshot_html_static]
|
|
|
|
existing_hash.dig(name, :static)
|
2022-07-23 23:45:48 +05:30
|
|
|
else
|
|
|
|
static_html_hash[name]
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
wysiwyg = if example_statuses[:skip_update_example_snapshot_html_wysiwyg]
|
|
|
|
existing_hash.dig(name, :wysiwyg)
|
2022-07-23 23:45:48 +05:30
|
|
|
else
|
2022-10-11 01:57:18 +05:30
|
|
|
wysiwyg_html_and_json_hash.dig(name, :html)
|
2022-07-23 23:45:48 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
hash[name] = {
|
2022-07-16 23:28:13 +05:30
|
|
|
'canonical' => example.fetch(:html),
|
2022-07-23 23:45:48 +05:30
|
|
|
'static' => static,
|
|
|
|
'wysiwyg' => wysiwyg
|
|
|
|
}.compact # Do not assign nil values
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def write_prosemirror_json_yml(all_examples, wysiwyg_html_and_json_hash, glfm_examples_statuses)
|
|
|
|
generate_and_write_for_all_examples(
|
2022-10-11 01:57:18 +05:30
|
|
|
all_examples, ES_PROSEMIRROR_JSON_YML_PATH, glfm_examples_statuses: glfm_examples_statuses
|
2022-07-23 23:45:48 +05:30
|
|
|
) do |example, hash, existing_hash|
|
2022-10-11 01:57:18 +05:30
|
|
|
name = example.fetch(:name).to_sym
|
2022-07-23 23:45:48 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
json = if glfm_examples_statuses.dig(name, :skip_update_example_snapshot_prosemirror_json)
|
2022-08-13 15:12:31 +05:30
|
|
|
existing_hash[name]
|
2022-07-23 23:45:48 +05:30
|
|
|
else
|
2022-10-11 01:57:18 +05:30
|
|
|
wysiwyg_html_and_json_hash.dig(name, :json)
|
2022-07-23 23:45:48 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
# Do not assign nil values
|
|
|
|
hash[name] = json if json
|
2022-07-16 23:28:13 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
def generate_and_write_for_all_examples(
|
2022-10-11 01:57:18 +05:30
|
|
|
all_examples, output_file_path, glfm_examples_statuses: {}, literal_scalars: true
|
2022-07-23 23:45:48 +05:30
|
|
|
)
|
|
|
|
preserve_existing = !glfm_examples_statuses.empty?
|
|
|
|
output("#{preserve_existing ? 'Creating/Updating' : 'Creating/Overwriting'} #{output_file_path}...")
|
2022-10-11 01:57:18 +05:30
|
|
|
existing_hash = preserve_existing ? YAML.safe_load(File.open(output_file_path), symbolize_names: true) : {}
|
2022-07-23 23:45:48 +05:30
|
|
|
|
|
|
|
output_hash = all_examples.each_with_object({}) do |example, hash|
|
2022-10-11 01:57:18 +05:30
|
|
|
name = example.fetch(:name).to_sym
|
|
|
|
if (reason = glfm_examples_statuses.dig(name, :skip_update_example_snapshots))
|
2022-07-23 23:45:48 +05:30
|
|
|
# Output the reason for skipping the example, but only once, not multiple times for each file
|
|
|
|
output("Skipping '#{name}'. Reason: #{reason}") unless glfm_examples_statuses.dig(name, :already_printed)
|
|
|
|
# We just store the `:already_printed` flag in the hash entry itself. Then we
|
|
|
|
# don't need an instance variable to keep the state, and this can remain a pure function ;)
|
|
|
|
glfm_examples_statuses[name][:already_printed] = true
|
|
|
|
|
|
|
|
# Copy over the existing example only if it exists and preserve_existing is true, otherwise omit this example
|
|
|
|
# noinspection RubyScope
|
|
|
|
hash[name] = existing_hash[name] if existing_hash[name]
|
|
|
|
|
|
|
|
next
|
|
|
|
end
|
|
|
|
|
|
|
|
yield(example, hash, existing_hash)
|
|
|
|
end
|
2022-07-16 23:28:13 +05:30
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
yaml_string = dump_yaml_with_formatting(output_hash, literal_scalars: literal_scalars)
|
2022-07-16 23:28:13 +05:30
|
|
|
write_file(output_file_path, yaml_string)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|