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 "unconnected-netnames/unconnected-netnames", // Raised false schematic partity error
70 "net_tie_drc" // Net tie bridging soldermask DRC test
71 };
72
73 for( const wxString& relPath : tests )
74 {
75 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
76 // Do not refill zones here because this is testing the DRC engine, not the zone filler
77
78 std::vector<DRC_ITEM> violations;
79 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
80
81 // Disable DRC tests not useful or not handled in this testcase
86 // These DRC tests are not useful and do not work because they need a footprint library
87 // associated to the board
90
92 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
93 const std::function<void( PCB_MARKER* )>& aPathGenerator )
94 {
95 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
96 violations.push_back( *aItem );
97 } );
98
99 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
100
101 if( violations.empty() )
102 {
103 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
104 BOOST_TEST_MESSAGE( wxString::Format( "DRC regression: %s, passed", relPath ) );
105 }
106 else
107 {
108 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCH );
109
110 wxString report;
111 std::map<KIID, EDA_ITEM*> itemMap;
112 m_board->FillItemMap( itemMap );
113
114 for( const DRC_ITEM& item : violations )
115 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
116
117 BOOST_ERROR( wxString::Format( "DRC regression: %s\n"
118 "%d violations found (expected 0)\n"
119 "%s",
120 relPath,
121 (int) violations.size(),
122 report ) );
123 }
124 }
125}
126
127
129{
130 // These documents at one time failed to catch DRC errors that they should have
131
132 std::map<int, SEVERITY> issue19325_ignore, issue22102_ignore;
136
137 std::vector<std::tuple<wxString, int, decltype(BOARD_DESIGN_SETTINGS::m_DRCSeverities)>> tests =
138 {
139 { "issue1358", 2, {} },
140 { "issue2512", 5, {} },
141 { "issue2528", 1, {} },
142 { "issue5750", 4, {} }, // Shorting zone fills pass DRC in some cases
143 { "issue5854", 3, {} },
144 { "issue6879", 6, {} },
145 { "issue6945", 2, {} },
146 { "issue7241", 1, {} },
147 { "issue7267", 5, {} },
148 { "issue7325", 2, {} },
149 { "issue8003", 2, {} },
150 { "issue9081", 2, {} },
151 { "issue12109", 8, {} }, // Pads fail annular width test
152 { "issue14334", 2, {} }, // Thermal spoke to otherwise unconnected island
153 { "issue16566", 6, {} }, // Pad_Shape vs Shape property
154 { "issue18142", 1, {} }, // blind/buried via to micro-via hole-to-hole
155 { "reverse_via", 3, {} }, // Via/track ordering
156 { "intersectingzones", 1, {} }, // zones are too close to each other
157 { "fill_bad", 1, {} }, // zone max BBox was too small
158 { "issue18878", 9, {} },
159 { "issue19325/issue19325", 4, issue19325_ignore }, // Overlapping pad annular ring calculation
160 { "issue22102", 2, issue22102_ignore }, // arc-to-rect collision; colocated arcs collision
161 };
162
163 for( const auto& [testName, expectedErrors, customSeverities] : tests )
164 {
165 KI_TEST::LoadBoard( m_settingsManager, testName, m_board );
166 // Do not refill zones here because this is testing the DRC engine, not the zone filler
167
168 std::vector<PCB_MARKER> markers;
169 std::vector<DRC_ITEM> violations;
170 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
171
172 // Disable DRC tests not useful in this testcase
176
177 for(const auto [test, severity] : customSeverities)
178 bds.m_DRCSeverities[test] = severity;
179
181 [&]( const std::shared_ptr<DRC_ITEM>& aItem, const VECTOR2I& aPos, int aLayer,
182 const std::function<void( PCB_MARKER* )>& aPathGenerator )
183 {
184 markers.emplace_back( PCB_MARKER( aItem, aPos ) );
185
186 if( bds.m_DrcExclusions.find( markers.back().SerializeToString() )
187 == bds.m_DrcExclusions.end() )
188 {
189 violations.push_back( *aItem );
190 }
191 } );
192
193 bds.m_DRCEngine->RunTests( EDA_UNITS::MM, true, false );
194
195 if( violations.size() == expectedErrors )
196 {
197 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
198 BOOST_TEST_MESSAGE( wxString::Format( "DRC regression: %s, passed", testName ) );
199 }
200 else
201 {
202 UNITS_PROVIDER unitsProvider( pcbIUScale, EDA_UNITS::INCH );
203
204 wxString report;
205 std::map<KIID, EDA_ITEM*> itemMap;
206 m_board->FillItemMap( itemMap );
207
208 for( const DRC_ITEM& item : violations )
209 report += item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR, itemMap );
210
211 BOOST_ERROR( wxString::Format( "DRC regression: %s\n"
212 "%d violations found (expected %d)\n"
213 "%s",
214 testName,
215 (int) violations.size(),
216 expectedErrors,
217 report ) );
218 }
219 }
220}
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:118
@ 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)
@ 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