blender/tests/python/bl_io_curve_svg_test.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.6 KiB
Python
Raw Permalink Normal View History

2022-10-11 15:13:30 +02:00
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2015-2022 Blender Authors
#
2022-10-11 15:13:30 +02:00
# SPDX-License-Identifier: Apache-2.0
__all__ = (
"main",
)
2022-10-11 15:13:30 +02:00
import argparse
import os
import sys
from pathlib import Path
def get_arguments(filepath, output_filepath):
dirname = os.path.dirname(filepath)
basedir = os.path.dirname(dirname)
args = [
"--background",
"--factory-startup",
"--enable-autoexec",
"--debug-memory",
"--debug-exit-on-error",
filepath,
"-E", "CYCLES",
"-o", output_filepath,
"-F", "PNG",
"--python", os.path.join(basedir, "util", "import_svg.py"),
"-f", "1",
]
return args
def create_argparse():
parser = argparse.ArgumentParser(
description="Run test script for each blend file in TESTDIR, comparing the render result with known output."
)
parser.add_argument("--blender", required=True)
parser.add_argument("--testdir", required=True)
parser.add_argument("--outdir", required=True)
parser.add_argument("--oiiotool", required=True)
parser.add_argument('--batch', default=False, action='store_true')
2022-10-11 15:13:30 +02:00
return parser
def main():
parser = create_argparse()
args = parser.parse_args()
from modules import render_report
report = render_report.Report('IO Curve SVG', args.outdir, args.oiiotool)
2022-10-11 15:13:30 +02:00
report.set_pixelated(True)
test_dir_name = Path(args.testdir).name
if test_dir_name == 'complex':
report.set_fail_percent(0.01)
2022-10-11 15:13:30 +02:00
ok = report.run(args.testdir, args.blender, get_arguments, batch=args.batch)
2022-10-11 15:13:30 +02:00
sys.exit(not ok)
if __name__ == "__main__":
main()