""" Tests of Printing Schematic files We test: - PDF for bom.sch For debug information use: pytest-3 --log-cli-level debug """ import os import sys import logging import coverage # 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) from kibot.misc import (PDF_SCH_PRINT, SVG_SCH_PRINT) from kibot.kicad.v5_sch import Schematic, SchFileError, DrawPoligon, Pin from kibot.globals import Globals # Utils import from utils import context PDF_DIR = '' PDF_FILE = 'Schematic.pdf' SVG_FILE = 'Schematic.svg' NI_DIR = 'no_inductor' cov = coverage.Coverage() def test_print_sch_ok(test_dir): prj = 'bom_no_xml' # bom has meta data, here we test no meta-data ctx = context.TestContext(test_dir, 'PrSCH', prj, 'print_sch', PDF_DIR) ctx.run() # Check all outputs are there ctx.expect_out_file(PDF_FILE) ctx.clean_up() def test_print_sch_fail(test_dir): prj = '3Rs' ctx = context.TestContext(test_dir, 'PrSCHFail', prj, 'print_sch', PDF_DIR) ctx.run(PDF_SCH_PRINT, no_board_file=True, extra=['-e', os.path.join(ctx.get_board_dir(), 'print_err.sch')]) ctx.clean_up() def test_print_sch_svg_ok(test_dir): prj = 'bom_no_xml' # bom has meta data, here we test no meta-data ctx = context.TestContext(test_dir, 'PrSCH_SVG', prj, 'print_sch_svg', PDF_DIR) ctx.run() # Check all outputs are there ctx.expect_out_file(SVG_FILE) ctx.clean_up() def test_print_sch_svg_fail(test_dir): prj = '3Rs' ctx = context.TestContext(test_dir, 'PrSCHFail_SVG', prj, 'print_sch_svg', PDF_DIR) ctx.run(SVG_SCH_PRINT, no_board_file=True, extra=['-e', os.path.join(ctx.get_board_dir(), 'print_err.sch')]) ctx.clean_up() def check_l1(ctx): ctx.run() o_name = os.path.join(NI_DIR, 'test_v5.sch') ctx.expect_out_file(o_name) glb = Globals() glb.set_tree({}) glb.config(None) sch = Schematic() try: sch.load(ctx.get_out_path(o_name), 'no_project') except SchFileError as e: logging.error('At line {} of `{}`: {}'.format(e.line, e.file, e.msg)) logging.error('Line content: `{}`'.format(e.code)) assert False comps = sch.get_components() l1 = next(c for c in comps if c.ref == 'L1') assert l1 logging.debug('Found L1') assert l1.lib == 'n' logging.debug('L1 is crossed') ctx.clean_up() def test_sch_variant_ni_1(test_dir): """ Using a variant """ prj = 'test_v5' # Is the most complete, contains every KiCad object I know ctx = context.TestContextSCH(test_dir, 'test_sch_variant_ni_1', prj, 'sch_no_inductors_1', PDF_DIR) check_l1(ctx) def test_sch_variant_ni_2(test_dir): """ Using a filter """ prj = 'test_v5' # Is the most complete, contains every KiCad object I know ctx = context.TestContextSCH(test_dir, 'test_sch_variant_ni_2', prj, 'sch_no_inductors_2', PDF_DIR) check_l1(ctx) def test_print_sch_variant_ni_1(test_dir): """ Using a variant """ prj = 'test_v5' # Is the most complete, contains every KiCad object I know ctx = context.TestContextSCH(test_dir, 'test_print_sch_variant_ni_1', prj, 'print_pdf_no_inductors_1', PDF_DIR) ctx.run() r_name = 'test_v5-schematic_(no_L).pdf' o_name = os.path.join(NI_DIR, r_name) ctx.expect_out_file(o_name) ctx.compare_pdf(o_name, r_name) ctx.clean_up() def test_print_sch_svg_variant_ni_1(test_dir): """ SVG using a variant """ prj = 'test_v5' # Is the most complete, contains every KiCad object I know ctx = context.TestContextSCH(test_dir, 'test_print_sch_svg_variant_ni_1', prj, 'print_svg_no_inductors_1', PDF_DIR) ctx.run() r_name = 'test_v5-schematic_(no_L).svg' o_name = os.path.join(NI_DIR, r_name) ctx.expect_out_file(o_name) ctx.compare_image(o_name, r_name) ctx.clean_up() def test_print_sch_variant_ni_2(test_dir): """ Using a filter """ prj = 'test_v5' # Is the most complete, contains every KiCad object I know ctx = context.TestContextSCH(test_dir, 'test_print_sch_variant_ni_2', prj, 'print_pdf_no_inductors_2', PDF_DIR) ctx.run() r_name = 'test_v5-schematic_(no_L).pdf' o_name = os.path.join(NI_DIR, 'test_v5-schematic.pdf') ctx.expect_out_file(o_name) ctx.compare_pdf(o_name, r_name) ctx.clean_up() def test_sch_missing_1(test_dir): """ R1 exists in l1.lib, but the lib isn't specified. R2 is bogus, completely missing """ prj = 'missing' ctx = context.TestContextSCH(test_dir, 'test_sch_missing_1', prj, 'sch_no_inductors_1', PDF_DIR) ctx.run() o_name = os.path.join(NI_DIR, prj+'.sch') ctx.expect_out_file(o_name) ctx.search_err("Component .?Resistor.? doesn't specify its library") ctx.search_err("Missing component .?l1:FooBar.?") ctx.search_err("Missing component(.*)Resistor", invert=True) ctx.search_out(r"Found 3 unique warning/s \(") ctx.clean_up() def test_sch_missing_filtered(test_dir): """ R1 exists in l1.lib, but the lib isn't specified. R2 is bogus, completely missing """ prj = 'missing' ctx = context.TestContextSCH(test_dir, 'test_sch_missing_filtered', prj, 'sch_no_inductors_1_filtered', PDF_DIR) ctx.run() o_name = os.path.join(NI_DIR, prj+'.sch') ctx.expect_out_file(o_name) ctx.search_err("Component .?Resistor.? doesn't specify its library") ctx.search_err("Missing component .?l1:FooBar.?", invert=True) ctx.search_err("Missing component(.*)Resistor", invert=True) ctx.search_out(r"Found 2 unique warning/s \(\d+ total, \d+ filtered\)") ctx.clean_up() def test_sch_bizarre_cases(test_dir): """ Poligon without points. Pin with unknown direction. """ pol = DrawPoligon() pol.points = 0 pol.coords = [] pin = Pin() pin.dir = 'bogus' cov.load() cov.start() x1, y1, x2, y2, ok_pol = pol.get_rect() x1, y1, x2, y2, ok_pin = pin.get_rect() cov.stop() cov.save() assert ok_pol is False assert ok_pin is False