KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_regressions.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 <pad.h>
29#include <pcb_track.h>
30#include <pcb_marker.h>
31#include <footprint.h>
32#include <drc/drc_item.h>
35
36
38{
41
43 std::unique_ptr<BOARD> m_board;
44};
45
46
48{
49 // These documents at one time flagged DRC errors that they shouldn't have.
50
51 std::vector<wxString> tests =
52 {
53 "issue4139", // DRC fails wrongly with minimally-spaced pads at 45 degree
54 "issue4774", // Shape collisions missing SH_POLY_SET
55 "issue5978", // Hole clearance violation with non-copper pad
56 "issue5990", // DRC flags a board edge clearance violation although the clearance is respected
57 "issue6443", // Wrong DRC and rendering of THT pads with selective inner copper layers
58 "issue7567", // DRC constraint to disallow holes gets SMD pads also
59 "issue7975", // Differential pair gap out of range fault by DRC
60 "issue8407", // PCBNEW: Arc for diff pair has clearance DRC error
61 "issue10906", // Soldermask bridge for only one object
62 "issue11814", // Bad cache hit in isInsideArea
63 "issue12609", // Arc collison edge case
64 "issue14412", // Solder mask bridge between pads in a net-tie pad group
65 "issue15280", // Very wide spokes mis-counted as being single spoke
66 "issue14008", // Net-tie clearance error
67 "issue17967/issue17967", // Arc dp coupling
68 "issue18203", // DRC error due to colliding arc and circle
69 "issue18839", // False positive board edge clearance between concentric arcs
70 "unconnected-netnames/unconnected-netnames", // Raised false schematic partity error
71 "net_tie_drc" // Net tie bridging soldermask DRC test
72 };
73
74 for( const wxString& relPath : tests )
75 {
76 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
77 // Do not refill zones here because this is testing the DRC engine, not the zone filler
78
79 std::vector<DRC_ITEM> violations;
80 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
81
82 // Disable DRC tests not useful or not handled in this testcase
87 // These DRC tests are not useful and do not work because they need a footprint library
88 // associated to the board
91
93 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
94 const std::function<void( PCB_MARKER* )>& aPathGenerator )
95 {
96 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
97 violations.push_back( *aItem );
98 } );
99
100 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
101
102 if( violations.empty() )
103 {
104 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
105 BOOST_TEST_MESSAGE( wxString::Format( "DRC regression: %s, passed", relPath ) );
106 }
107 else
108 {
109 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCH );
110
111 wxString report;
112 std::map<KIID, EDA_ITEM*> itemMap;
113 m_board->FillItemMap( itemMap );
114
115 for( const DRC_ITEM& item : violations )
116 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
117
118 BOOST_ERROR( wxString::Format( "DRC regression: %s\n"
119 "%d violations found (expected 0)\n"
120 "%s",
121 relPath,
122 (int) violations.size(),
123 report ) );
124 }
125 }
126}
127
128
130{
131 // These documents at one time failed to catch DRC errors that they should have
132
133 std::map<int, SEVERITY> issue19325_ignore, issue22102_ignore;
137
138 std::vector<std::tuple<wxString, int, decltype(BOARD_DESIGN_SETTINGS::m_DRCSeverities)>> tests =
139 {
140 { "issue1358", 2, {} },
141 { "issue2512", 5, {} },
142 { "issue2528", 1, {} },
143 { "issue5750", 4, {} }, // Shorting zone fills pass DRC in some cases
144 { "issue5854", 3, {} },
145 { "issue6879", 6, {} },
146 { "issue6945", 2, {} },
147 { "issue7241", 1, {} },
148 { "issue7267", 5, {} },
149 { "issue7325", 2, {} },
150 { "issue8003", 2, {} },
151 { "issue9081", 2, {} },
152 { "issue12109", 8, {} }, // Pads fail annular width test
153 { "issue14334", 2, {} }, // Thermal spoke to otherwise unconnected island
154 { "issue16566", 6, {} }, // Pad_Shape vs Shape property
155 { "issue18142", 1, {} }, // blind/buried via to micro-via hole-to-hole
156 { "reverse_via", 3, {} }, // Via/track ordering
157 { "intersectingzones", 1, {} }, // zones are too close to each other
158 { "fill_bad", 1, {} }, // zone max BBox was too small
159 { "issue18878", 12, {} }, // Updated: fix reports all cross-net mask bridge pairs
160 { "issue19325/issue19325", 4, issue19325_ignore }, // Overlapping pad annular ring calculation
161 { "issue22102", 2, issue22102_ignore }, // arc-to-rect collision; colocated arcs collision
162 };
163
164 for( const auto& [testName, expectedErrors, customSeverities] : tests )
165 {
166 KI_TEST::LoadBoard( m_settingsManager, testName, m_board );
167 // Do not refill zones here because this is testing the DRC engine, not the zone filler
168
169 std::vector<PCB_MARKER> markers;
170 std::vector<DRC_ITEM> violations;
171 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
172
173 // Disable DRC tests not useful in this testcase
177
178 for(const auto [test, severity] : customSeverities)
179 bds.m_DRCSeverities[test] = severity;
180
182 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
183 const std::function<void( PCB_MARKER* )>& aPathGenerator )
184 {
185 markers.emplace_back( PCB_MARKER( aItem, aPos ) );
186
187 if( bds.m_DrcExclusions.find( markers.back().SerializeToString() )
188 == bds.m_DrcExclusions.end() )
189 {
190 violations.push_back( *aItem );
191 }
192 } );
193
194 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
195
196 if( violations.size() == expectedErrors )
197 {
198 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
199 BOOST_TEST_MESSAGE( wxString::Format( "DRC regression: %s, passed", testName ) );
200 }
201 else
202 {
203 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCH );
204
205 wxString report;
206 std::map<KIID, EDA_ITEM*> itemMap;
207 m_board->FillItemMap( itemMap );
208
209 for( const DRC_ITEM& item : violations )
210 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
211
212 BOOST_ERROR( wxString::Format( "DRC regression: %s\n"
213 "%d violations found (expected %d)\n"
214 "%s",
215 testName,
216 (int) violations.size(),
217 expectedErrors,
218 report ) );
219 }
220 }
221}
222
223
224BOOST_FIXTURE_TEST_CASE( DRCZoneFalsePositiveRegressions, DRC_REGRESSION_TEST_FIXTURE )
225{
226 // These documents at one time flagged DRC errors that they shouldn't have.
227 // These tests require zone filling to properly test the DRC checks.
228
229 std::vector<wxString> tests =
230 {
231 "issue19090/issue19090", // Copper graphic shapes count as thermal spoke connections
232 };
233
234 for( const wxString& relPath : tests )
235 {
236 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
237 KI_TEST::FillZones( m_board.get() );
238
239 std::vector<DRC_ITEM> violations;
240 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
241
242 // Disable DRC tests not useful or not handled in this testcase
248
249 // Ensure starved thermal is enabled for this test
251
253 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
254 const std::function<void( PCB_MARKER* )>& aPathGenerator )
255 {
256 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
257 violations.push_back( *aItem );
258 } );
259
260 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
261
262 if( violations.empty() )
263 {
264 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
265 BOOST_TEST_MESSAGE( wxString::Format( "DRC zone regression: %s, passed", relPath ) );
266 }
267 else
268 {
269 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCH );
270
271 wxString report;
272 std::map<KIID, EDA_ITEM*> itemMap;
273 m_board->FillItemMap( itemMap );
274
275 for( const DRC_ITEM& item : violations )
276 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
277
278 BOOST_ERROR( wxString::Format( "DRC zone regression: %s\n"
279 "%d violations found (expected 0)\n"
280 "%s",
281 relPath,
282 (int) violations.size(),
283 report ) );
284 }
285 }
286}
constexpr EDA_IU_SCALE pcbIUScale
Definition base_units.h:112
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
std::shared_ptr< DRC_ENGINE > m_DRCEngine
std::set< wxString > m_DrcExclusions
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
@ 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_STARVED_THERMAL
Definition drc_item.h:50
@ DRCE_DRILLED_HOLES_TOO_CLOSE
Definition drc_item.h:53
@ DRCE_COPPER_SLIVER
Definition drc_item.h:93
@ DRCE_DANGLING_TRACK
Definition drc_item.h:52
@ DRCE_LIB_FOOTPRINT_MISMATCH
Definition drc_item.h:84
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(DRCFalsePositiveRegressions, DRC_REGRESSION_TEST_FIXTURE)
BOOST_TEST_MESSAGE("Polyline has "<< chain.PointCount()<< " points")
BOOST_CHECK_EQUAL(result, "25.4")
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695