|
KiCad PCB EDA Suite
|
#include <qa_utils/wx_utils/unit_test_utils.h>#include <settings/settings_manager.h>#include <optional>#include <pcbnew/board.h>#include <pcbnew/pad.h>#include <pcbnew/pcb_track.h>#include <pcbnew/pcbexpr_evaluator.h>#include <geometry/shape_circle.h>#include <router/pns_item.h>#include <router/pns_kicad_iface.h>#include <router/pns_node.h>#include <router/pns_router.h>#include <router/pns_segment.h>#include <router/pns_solid.h>#include <router/pns_via.h>Go to the source code of this file.
Classes | |
| class | MOCK_RULE_RESOLVER |
| struct | MOCK_RULE_RESOLVER::ITEM_KEY |
| class | MOCK_PNS_KICAD_IFACE |
| class | PNS_TEST_FIXTURE |
Functions | |
| static bool | isCopper (const PNS::ITEM *aItem) |
| static bool | isHole (const PNS::ITEM *aItem) |
| static bool | isEdge (const PNS::ITEM *aItem) |
| static void | dumpObstacles (const PNS::NODE::OBSTACLES &obstacles) |
| BOOST_FIXTURE_TEST_CASE (PNSHoleCollisions, PNS_TEST_FIXTURE) | |
| BOOST_FIXTURE_TEST_CASE (PNSViaBackdrillRetention, PNS_TEST_FIXTURE) | |
| BOOST_AUTO_TEST_CASE (PCBViaBackdrillCloneRetainsData) | |
| BOOST_AUTO_TEST_CASE (PNSLayerRangeSwapBehavior) | |
| Test that PNS_LAYER_RANGE(1, 0) is swapped to (0, 1). | |
| BOOST_FIXTURE_TEST_CASE (PNSSegmentSplitPreservesLockedState, PNS_TEST_FIXTURE) | |
| Test that splitting a locked PNS segment preserves the locked marker on both halves. | |
| BOOST_FIXTURE_TEST_CASE (PNSInheritTrackWidthCursorProximity, PNS_TEST_FIXTURE) | |
| Test that inheritTrackWidth selects the correct track based on cursor proximity. | |
| BOOST_AUTO_TEST_CASE (PCBExprGeometryDependentFunctionDetection) | |
| Test that PCBEXPR_UCODE correctly identifies geometry-dependent functions during compilation. | |
| BOOST_AUTO_TEST_CASE | ( | PCBExprGeometryDependentFunctionDetection | ) |
Test that PCBEXPR_UCODE correctly identifies geometry-dependent functions during compilation.
Regression test for PNS track drag performance. The geometry-dependent flag controls whether segment-by-segment DRC evaluation is performed during routing. When no geometry-dependent functions exist in clearance rules, the expensive per-segment evaluation is skipped.
Definition at line 657 of file test_pns_basics.cpp.
References LIBEVAL::COMPILER::Compile(), F_Cu, and PCBEXPR_UCODE::HasGeometryDependentFunctions().
| BOOST_AUTO_TEST_CASE | ( | PCBViaBackdrillCloneRetainsData | ) |
Definition at line 453 of file test_pns_basics.cpp.
References B_Cu, BOOST_CHECK_EQUAL(), COUNTERBORE, COUNTERSINK, F_Cu, In2_Cu, In4_Cu, and via.
| BOOST_AUTO_TEST_CASE | ( | PNSLayerRangeSwapBehavior | ) |
Test that PNS_LAYER_RANGE(1, 0) is swapped to (0, 1).
This is a minimal regression test for https://gitlab.com/kicad/code/kicad/-/issues/20355 The actual fix is in pns_kicad_iface.cpp syncPad() which skips creating an INNER_LAYERS SOLID on 2-layer boards. This test verifies the layer range behavior that motivated the fix.
Definition at line 513 of file test_pns_basics.cpp.
References BOOST_CHECK_EQUAL(), PNS_LAYER_RANGE::End(), PNS_LAYER_RANGE::Overlaps(), and PNS_LAYER_RANGE::Start().
| BOOST_FIXTURE_TEST_CASE | ( | PNSHoleCollisions | , |
| PNS_TEST_FIXTURE | ) |
Definition at line 335 of file test_pns_basics.cpp.
References B_Cu, BOOST_CHECK_EQUAL(), BOOST_TEST_MESSAGE(), dumpObstacles(), F_Cu, v1, and v2.
| BOOST_FIXTURE_TEST_CASE | ( | PNSInheritTrackWidthCursorProximity | , |
| PNS_TEST_FIXTURE | ) |
Test that inheritTrackWidth selects the correct track based on cursor proximity.
Regression test for https://gitlab.com/kicad/code/kicad/-/issues/19123 When a pad has multiple tracks of different widths, the router should inherit the width of the track closest to the cursor, not just the minimum width.
Definition at line 591 of file test_pns_basics.cpp.
References BOOST_CHECK_EQUAL(), F_Cu, pad, PNS::ITEM::SetLayers(), and PNS::SEGMENT::SetWidth().
| BOOST_FIXTURE_TEST_CASE | ( | PNSSegmentSplitPreservesLockedState | , |
| PNS_TEST_FIXTURE | ) |
Test that splitting a locked PNS segment preserves the locked marker on both halves.
Regression test for https://gitlab.com/kicad/code/kicad/-/issues/21564 When a locked track is split by a new route connecting to its middle, both resulting segments must retain the locked state.
Definition at line 547 of file test_pns_basics.cpp.
References BOOST_CHECK_EQUAL(), PNS::Clone(), F_Cu, PNS::ITEM::IsLocked(), PNS::ITEM::Mark(), PNS::MK_LOCKED, PNS::ITEM::SetLayers(), PNS::SEGMENT::SetWidth(), and PNS::SEGMENT::Width().
| BOOST_FIXTURE_TEST_CASE | ( | PNSViaBackdrillRetention | , |
| PNS_TEST_FIXTURE | ) |
Definition at line 415 of file test_pns_basics.cpp.
References B_Cu, BOOST_CHECK_EQUAL(), COUNTERSINK, F_Cu, In1_Cu, In2_Cu, NOT_POST_MACHINED, THROUGH, and via.
|
static |
Definition at line 324 of file test_pns_basics.cpp.
References BOOST_TEST_MESSAGE().
Referenced by BOOST_FIXTURE_TEST_CASE().
|
static |
Definition at line 42 of file test_pns_basics.cpp.
References pad, PNS::ITEM::Parent(), PCB_PAD_T, and EDA_ITEM::Type().
Referenced by MOCK_RULE_RESOLVER::Clearance().
|
static |
Definition at line 70 of file test_pns_basics.cpp.
References PNS::ITEM::BoardItem(), Edge_Cuts, BOARD_ITEM::IsOnLayer(), and Margin.
Referenced by MOCK_RULE_RESOLVER::Clearance().
|
static |
Definition at line 61 of file test_pns_basics.cpp.
References PNS::ITEM::HOLE_T, and PNS::ITEM::OfKind().
Referenced by MOCK_RULE_RESOLVER::Clearance().