47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
"""
|
|
Tests of Postscript 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 = 'PS'
|
|
|
|
|
|
def test_ps():
|
|
prj = 'simple_2layer'
|
|
ctx = context.TestContext('Postscript', prj, 'ps', PS_DIR)
|
|
ctx.run()
|
|
|
|
f_cu = ctx.get_gerber_filename('F_Cu', '.ps')
|
|
f_fab = ctx.get_gerber_filename('F_Fab', '.ps')
|
|
ctx.expect_out_file(f_cu)
|
|
ctx.expect_out_file(f_fab)
|
|
ctx.dont_expect_out_file(ctx.get_gerber_job_filename())
|
|
|
|
ctx.clean_up()
|
|
|
|
|
|
def test_ps_auto():
|
|
prj = 'simple_2layer'
|
|
ctx = context.TestContext('PostscriptAuto', prj, 'ps_auto', PS_DIR)
|
|
ctx.run()
|
|
|
|
f_cu = ctx.get_gerber_filename('F_Cu', '.ps')
|
|
f_fab = ctx.get_gerber_filename('F_Fab', '.ps')
|
|
ctx.expect_out_file(f_cu)
|
|
ctx.expect_out_file(f_fab)
|
|
ctx.dont_expect_out_file(ctx.get_gerber_job_filename())
|
|
|
|
ctx.clean_up()
|