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, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
26#include <board.h>
28#include <drc/drc_engine.h>
29#include <pad.h>
30#include <pcb_track.h>
31#include <pcb_marker.h>
32#include <footprint.h>
33#include <drc/drc_engine.h>
34#include <drc/drc_item.h>
38
39
41{
43
45 std::unique_ptr<BOARD> m_board;
46};
47
48
50{
51 // Check for minimum copper connection errors
52
53 std::vector<std::pair<wxString, int>> tests = {
54 { "length_calculations", 0 },
55 { "time_calculations", 1 }, // Expect one skew DRC error from NET_P
56 { "issue22536", 0 }, // Via electrical span calculation (GitLab #22536)
57 { "via_off_center", 0 } // Off-center VIA endpoints should not affect length calculation
58 };
59
60 for( const std::pair<wxString, int>& test : tests )
61 {
62 KI_TEST::LoadBoard( m_settingsManager, test.first, m_board );
63 KI_TEST::FillZones( m_board.get() );
64
65 std::vector<DRC_ITEM> violations;
66 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
67
68 // Disable DRC tests not useful or not handled in this testcase
75 // These DRC tests are not useful and do not work because they need a footprint library
76 // associated to the board
80
81 // Ensure that our desired error is fired
83
85 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
86 const std::function<void( PCB_MARKER* )>& aPathGenerator )
87 {
88 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
89 violations.push_back( *aItem );
90 } );
91
92 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
93
94 if( violations.size() == test.second )
95 {
96 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
97 BOOST_TEST_MESSAGE( wxString::Format( "DRC lengths: %s, passed", test.first ) );
98 }
99 else
100 {
101 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCH );
102
103 wxString report;
104 std::map<KIID, EDA_ITEM*> itemMap;
105 m_board->FillItemMap( itemMap );
106
107 for( const DRC_ITEM& item : violations )
108 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
109
110 BOOST_ERROR( wxString::Format( "DRC lengths: %s\n"
111 "%d violations found (expected %d)\n"
112 "%s",
113 test.first,
114 (int) violations.size(),
115 test.second,
116 report ) );
117 }
118 }
119}
120
121
122// Test that via electrical span is calculated from trace connections, not physical via span.
123// GitLab issue #22536: TH vias near TH connector pads should use the electrical span
124// (layers where traces connect) rather than spanning to layers where TH pads exist.
126{
127 KI_TEST::LoadBoard( m_settingsManager, "issue22536", m_board );
128
129 LENGTH_DELAY_CALCULATION lengthCalc( m_board.get() );
130
131 // Find vias on Net 3 (Net-(J1-Pin_3)) which has:
132 // - TH vias with physical span F.Cu to B.Cu
133 // - Traces on F.Cu and In1.Cu only
134 // The electrical span should be F.Cu to In1.Cu, not F.Cu to B.Cu
135 NETINFO_ITEM* net3 = m_board->FindNet( "Net-(J1-Pin_3)" );
136 BOOST_REQUIRE( net3 != nullptr );
137
138 int viaCount = 0;
139
140 for( PCB_TRACK* track : m_board->Tracks() )
141 {
142 if( track->Type() != PCB_VIA_T )
143 continue;
144
145 if( track->GetNetCode() != net3->GetNetCode() )
146 continue;
147
148 PCB_VIA* via = static_cast<PCB_VIA*>( track );
149
150 // Verify the via is physically a TH via spanning F.Cu to B.Cu
151 BOOST_CHECK_EQUAL( via->TopLayer(), F_Cu );
152 BOOST_CHECK_EQUAL( via->BottomLayer(), B_Cu );
153
154 // Calculate the electrical span using CalculateViaLayers
156 auto [startLayer, endLayer] = item.GetLayers();
157
158 // The electrical span should be F.Cu to In1.Cu (where traces connect),
159 // not F.Cu to B.Cu (the physical via span)
160 BOOST_CHECK_EQUAL( startLayer, F_Cu );
161 BOOST_CHECK_EQUAL( endLayer, In1_Cu );
162
163 viaCount++;
164 }
165
166 BOOST_CHECK_EQUAL( viaCount, 2 ); // Net 3 has 2 vias
167}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:125
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:168
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:50
int GetNetCode() const
Definition netinfo.h:97
@ DRCE_VIA_DIAMETER
Definition drc_item.h:62
@ DRCE_UNCONNECTED_ITEMS
Definition drc_item.h:40
@ DRCE_LIB_FOOTPRINT_ISSUES
Definition drc_item.h:83
@ DRCE_INVALID_OUTLINE
Definition drc_item.h:73
@ DRCE_DRILL_OUT_OF_RANGE
Definition drc_item.h:61
@ DRCE_STARVED_THERMAL
Definition drc_item.h:50
@ DRCE_COPPER_SLIVER
Definition drc_item.h:93
@ DRCE_DANGLING_VIA
Definition drc_item.h:51
@ DRCE_LENGTH_OUT_OF_RANGE
Definition drc_item.h:104
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition drc_item.h:84
@ B_Cu
Definition layer_ids.h:65
@ In1_Cu
Definition layer_ids.h:66
@ F_Cu
Definition layer_ids.h:64
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:94
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:687