KiBot/tests/test_plot/test_hpgl.py

46 lines
1.2 KiB
Python

"""
Tests of HPGL format.
For debug information use:
pytest-3 --log-cli-level debug
"""
import os
import sys
# Look for the 'utils' module from where the script is running
prev_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if prev_dir not in sys.path:
sys.path.insert(0, prev_dir)
# Utils import
from utils import context
PS_DIR = 'HPGL'
def test_hpgl(test_dir):
prj = 'simple_2layer'
ctx = context.TestContext(test_dir, 'HPGL', prj, 'hpgl', PS_DIR)
ctx.run()
f_cu = ctx.get_gerber_filename('F_Cu', '.plt')
f_silk = ctx.get_gerber_filename('B_Silks', '.plt')
ctx.expect_out_file(f_cu)
ctx.expect_out_file(f_silk)
ctx.dont_expect_out_file(ctx.get_gerber_job_filename())
ctx.clean_up()
def test_hpgl_auto(test_dir):
prj = 'simple_2layer'
ctx = context.TestContext(test_dir, 'HPGLAuto', prj, 'hpgl_auto', PS_DIR)
ctx.run()
f_cu = ctx.get_gerber_filename('F_Cu', '.plt')
f_silk = ctx.get_gerber_filename('B_Silks', '.plt')
ctx.expect_out_file(f_cu)
ctx.expect_out_file(f_silk)
ctx.dont_expect_out_file(ctx.get_gerber_job_filename())
ctx.search_err(r'Only ASCII chars are allowed for layer suffixes')
ctx.clean_up()