2018-05-12 16:23:05 +02:00
|
|
|
#!/usr/bin/env python3
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-12 16:23:05 +02:00
|
|
|
import itertools
|
|
|
|
import subprocess
|
|
|
|
import pathlib
|
|
|
|
import shutil
|
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-12 16:23:05 +02:00
|
|
|
def generate_snapshots():
|
2020-10-06 17:57:47 +02:00
|
|
|
single_styles = ["changes", "grid", "header", "numbers", "rule"]
|
2018-05-12 16:23:05 +02:00
|
|
|
collective_styles = ["full", "plain"]
|
|
|
|
|
|
|
|
for num in range(len(single_styles)):
|
|
|
|
for grouped in itertools.combinations(single_styles, num + 1):
|
2018-09-11 04:19:43 +02:00
|
|
|
generate_style_snapshot(",".join(grouped))
|
2018-05-12 16:23:05 +02:00
|
|
|
|
|
|
|
for style in collective_styles:
|
2018-09-11 04:19:43 +02:00
|
|
|
generate_style_snapshot(style)
|
2018-05-12 16:23:05 +02:00
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-09-11 04:19:43 +02:00
|
|
|
def generate_style_snapshot(style):
|
2018-09-12 20:28:42 +02:00
|
|
|
generate_snapshot(style.replace(",", "_"), "--style={}".format(style))
|
|
|
|
|
2018-09-11 04:19:43 +02:00
|
|
|
|
|
|
|
def generate_snapshot(name, arguments):
|
2018-09-12 20:28:42 +02:00
|
|
|
command = "cargo run -- --paging=never --color=never --decorations=always "
|
|
|
|
command += "{args} sample.rs > output/{name}.snapshot.txt".format(
|
|
|
|
name=name,
|
|
|
|
args=arguments
|
2018-05-12 16:23:05 +02:00
|
|
|
)
|
2018-09-11 04:19:43 +02:00
|
|
|
print("generating snapshot for {}".format(name))
|
2018-05-12 16:23:05 +02:00
|
|
|
subprocess.call(command, shell=True)
|
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-24 12:06:02 +02:00
|
|
|
def build_bat():
|
|
|
|
print("building bat")
|
|
|
|
subprocess.call("cargo build", cwd="../..", shell=True)
|
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-12 16:23:05 +02:00
|
|
|
def prepare_output_dir():
|
|
|
|
shutil.rmtree("output", ignore_errors=True)
|
|
|
|
pathlib.Path("output").mkdir()
|
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-12 16:23:05 +02:00
|
|
|
def modify_sample_file():
|
|
|
|
print("modifying sample.rs to show changes")
|
|
|
|
shutil.copyfile("sample.modified.rs", "sample.rs")
|
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-12 16:23:05 +02:00
|
|
|
def undo_sample_file_modification():
|
|
|
|
print("undoing sample.rs modifications")
|
|
|
|
subprocess.call("git checkout -- sample.rs", shell=True)
|
|
|
|
|
2018-09-12 20:28:42 +02:00
|
|
|
|
2018-05-24 12:06:02 +02:00
|
|
|
build_bat()
|
2018-05-12 16:23:05 +02:00
|
|
|
prepare_output_dir()
|
|
|
|
modify_sample_file()
|
|
|
|
generate_snapshots()
|
|
|
|
undo_sample_file_modification()
|