|
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 <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 | ( | PCBViaBackdrillCloneRetainsData | ) |
Definition at line 452 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 512 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 334 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 590 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 546 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 414 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 323 of file test_pns_basics.cpp.
References BOOST_TEST_MESSAGE().
Referenced by BOOST_FIXTURE_TEST_CASE().
|
static |
Definition at line 41 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 69 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 60 of file test_pns_basics.cpp.
References PNS::ITEM::HOLE_T, and PNS::ITEM::OfKind().
Referenced by MOCK_RULE_RESOLVER::Clearance().