KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_lengths.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
22#include <board.h>
24#include <drc/drc_engine.h>
25#include <pad.h>
26#include <pcb_track.h>
27#include <pcb_marker.h>
28#include <footprint.h>
29#include <drc/drc_engine.h>
30#include <drc/drc_item.h>
34
35
37{
39
41 std::unique_ptr<BOARD> m_board;
42};
43
44
46{
47 // Check for minimum copper connection errors
48
49 std::vector<std::pair<wxString, int>> tests = {
50 { "length_calculations", 0 },
51 { "time_calculations", 1 }, // Expect one skew DRC error from NET_P
52 { "issue22536", 0 }, // Via electrical span calculation (GitLab #22536)
53 { "via_off_center", 0 } // Off-center VIA endpoints should not affect length calculation
54 };
55
56 for( const std::pair<wxString, int>& test : tests )
57 {
58 KI_TEST::LoadBoard( m_settingsManager, test.first, m_board );
59 KI_TEST::FillZones( m_board.get() );
60
61 std::vector<DRC_ITEM> violations;
62 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
63
64 // Disable DRC tests not useful or not handled in this testcase
71 // These DRC tests are not useful and do not work because they need a footprint library
72 // associated to the board
76
77 // Ensure that our desired error is fired
79
81 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
82 const std::function<void( PCB_MARKER* )>& aPathGenerator )
83 {
84 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
85 violations.push_back( *aItem );
86 } );
87
88 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
89
90 if( violations.size() == test.second )
91 {
92 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
93 BOOST_TEST_MESSAGE( wxString::Format( "DRC lengths: %s, passed", test.first ) );
94 }
95 else
96 {
98
99 wxString report;
100 std::map<KIID, EDA_ITEM*> itemMap;
101 m_board->FillItemMap( itemMap );
102
103 for( const DRC_ITEM& item : violations )
104 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
105
106 BOOST_ERROR( wxString::Format( "DRC lengths: %s\n"
107 "%d violations found (expected %d)\n"
108 "%s",
109 test.first,
110 (int) violations.size(),
111 test.second,
112 report ) );
113 }
114 }
115}
116
117
118// Test that via electrical span is calculated from trace connections, not physical via span.
119// GitLab issue #22536: TH vias near TH connector pads should use the electrical span
120// (layers where traces connect) rather than spanning to layers where TH pads exist.
122{
123 KI_TEST::LoadBoard( m_settingsManager, "issue22536", m_board );
124
125 LENGTH_DELAY_CALCULATION lengthCalc( m_board.get() );
126
127 // Find vias on Net 3 (Net-(J1-Pin_3)) which has:
128 // - TH vias with physical span F.Cu to B.Cu
129 // - Traces on F.Cu and In1.Cu only
130 // The electrical span should be F.Cu to In1.Cu, not F.Cu to B.Cu
131 NETINFO_ITEM* net3 = m_board->FindNet( "Net-(J1-Pin_3)" );
132 BOOST_REQUIRE( net3 != nullptr );
133
134 int viaCount = 0;
135
136 for( PCB_TRACK* track : m_board->Tracks() )
137 {
138 if( track->Type() != PCB_VIA_T )
139 continue;
140
141 if( track->GetNetCode() != net3->GetNetCode() )
142 continue;
143
144 PCB_VIA* via = static_cast<PCB_VIA*>( track );
145
146 // Verify the via is physically a TH via spanning F.Cu to B.Cu
147 BOOST_CHECK_EQUAL( via->TopLayer(), F_Cu );
148 BOOST_CHECK_EQUAL( via->BottomLayer(), B_Cu );
149
150 // Calculate the electrical span using CalculateViaLayers
152 auto [startLayer, endLayer] = item.GetLayers();
153
154 // The electrical span should be F.Cu to In1.Cu (where traces connect),
155 // not F.Cu to B.Cu (the physical via span)
156 BOOST_CHECK_EQUAL( startLayer, F_Cu );
157 BOOST_CHECK_EQUAL( endLayer, In1_Cu );
158
159 viaCount++;
160 }
161
162 BOOST_CHECK_EQUAL( viaCount, 2 ); // Net 3 has 2 vias
163}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:121
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
std::shared_ptr< DRC_ENGINE > m_DRCEngine
SEVERITY GetSeverity(int aDRCErrorCode)
void RunTests(EDA_UNITS aUnits, bool aReportAllTrackErrors, bool aTestFootprints, BOARD_COMMIT *aCommit=nullptr)
Run the DRC tests.
void SetViolationHandler(DRC_VIOLATION_HANDLER aHandler)
Set an optional DRC violation handler (receives DRC_ITEMs and positions).
Definition drc_engine.h:164
Lightweight class which holds a pad, via, or a routed trace outline.
std::tuple< PCB_LAYER_ID, PCB_LAYER_ID > GetLayers() const
Gets the upper and lower layers for the proxied item.
Class which calculates lengths (and associated routing statistics) in a BOARD context.
LENGTH_DELAY_CALCULATION_ITEM GetLengthCalculationItem(const BOARD_CONNECTED_ITEM *aBoardItem) const
Return a LENGTH_CALCULATION_ITEM constructed from the given BOARD_CONNECTED_ITEM.
Handle the data for a net.
Definition netinfo.h:46
int GetNetCode() const
Definition netinfo.h:94
@ DRCE_VIA_DIAMETER
Definition drc_item.h:58
@ DRCE_UNCONNECTED_ITEMS
Definition drc_item.h:36
@ DRCE_LIB_FOOTPRINT_ISSUES
Definition drc_item.h:79
@ DRCE_INVALID_OUTLINE
Definition drc_item.h:69
@ DRCE_DRILL_OUT_OF_RANGE
Definition drc_item.h:57
@ DRCE_STARVED_THERMAL
Definition drc_item.h:46
@ DRCE_COPPER_SLIVER
Definition drc_item.h:90
@ DRCE_DANGLING_VIA
Definition drc_item.h:47
@ DRCE_LENGTH_OUT_OF_RANGE
Definition drc_item.h:101
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition drc_item.h:80
@ B_Cu
Definition layer_ids.h:61
@ In1_Cu
Definition layer_ids.h:62
@ F_Cu
Definition layer_ids.h:60
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
void FillZones(BOARD *m_board)
@ RPT_SEVERITY_ERROR
@ RPT_SEVERITY_IGNORE
BOOST_FIXTURE_TEST_CASE(DRCLengths, DRC_REGRESSION_TEST_FIXTURE)
BOOST_REQUIRE(intersection.has_value()==c.ExpectedIntersection.has_value())
BOOST_TEST_MESSAGE("\n=== Real-World Polygon PIP Benchmark ===\n"<< formatTable(table))
BOOST_CHECK_EQUAL(result, "25.4")
@ PCB_VIA_T
class PCB_VIA, a via (like a track segment on a copper layer)
Definition typeinfo.h:90
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:683