KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_zone_filler.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 <footprint.h>
31#include <zone.h>
32#include <drc/drc_item.h>
34
35
37{
39 m_settingsManager( true /* headless */ )
40 { }
41
43 std::unique_ptr<BOARD> m_board;
44};
45
46
47constexpr int delta = KiROUND( 0.006 * pcbIUScale.IU_PER_MM );
48
49
51{
52 KI_TEST::LoadBoard( m_settingsManager, "zone_filler", m_board );
53
54 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
55
56 KI_TEST::FillZones( m_board.get() );
57
58 // Now that the zones are filled we're going to increase the size of -some- pads and
59 // tracks so that they generate DRC errors. The test then makes sure that those errors
60 // are generated, and that the other pads and tracks do -not- generate errors.
61
62 for( PAD* pad : m_board->Footprints()[0]->Pads() )
63 {
64 if( pad->GetNumber() == "2" || pad->GetNumber() == "4" || pad->GetNumber() == "6" )
65 {
66 pad->SetSize( PADSTACK::ALL_LAYERS,
67 pad->GetSize( PADSTACK::ALL_LAYERS ) + VECTOR2I( delta, delta ) );
68 }
69 }
70
71 int ii = 0;
72 KIID arc8;
73 KIID arc12;
74
75 for( PCB_TRACK* track : m_board->Tracks() )
76 {
77 if( track->Type() == PCB_ARC_T )
78 {
79 ii++;
80
81 if( ii == 8 )
82 {
83 arc8 = track->m_Uuid;
84 track->SetWidth( track->GetWidth() + delta + delta );
85 }
86 else if( ii == 12 )
87 {
88 arc12 = track->m_Uuid;
89 track->Move( VECTOR2I( -delta, -delta ) );
90 }
91 }
92 }
93
94 bool foundPad2Error = false;
95 bool foundPad4Error = false;
96 bool foundPad6Error = false;
97 bool foundArc8Error = false;
98 bool foundArc12Error = false;
99 bool foundOtherError = false;
100
101 bds.m_DRCEngine->InitEngine( wxFileName() ); // Just to be sure to be sure
102
103 bds.m_DRCEngine->SetViolationHandler(
104 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer,
105 DRC_CUSTOM_MARKER_HANDLER* aCustomHandler )
106 {
107 if( aItem->GetErrorCode() == DRCE_CLEARANCE )
108 {
109 BOARD_ITEM* item_a = m_board->GetItem( aItem->GetMainItemID() );
110 PAD* pad_a = dynamic_cast<PAD*>( item_a );
111 PCB_TRACK* trk_a = dynamic_cast<PCB_TRACK*>( item_a );
112
113 BOARD_ITEM* item_b = m_board->GetItem( aItem->GetAuxItemID() );
114 PAD* pad_b = dynamic_cast<PAD*>( item_b );
115 PCB_TRACK* trk_b = dynamic_cast<PCB_TRACK*>( item_b );
116
117 if( pad_a && pad_a->GetNumber() == "2" ) foundPad2Error = true;
118 else if( pad_a && pad_a->GetNumber() == "4" ) foundPad4Error = true;
119 else if( pad_a && pad_a->GetNumber() == "6" ) foundPad6Error = true;
120 else if( pad_b && pad_b->GetNumber() == "2" ) foundPad2Error = true;
121 else if( pad_b && pad_b->GetNumber() == "4" ) foundPad4Error = true;
122 else if( pad_b && pad_b->GetNumber() == "6" ) foundPad6Error = true;
123 else if( trk_a && trk_a->m_Uuid == arc8 ) foundArc8Error = true;
124 else if( trk_a && trk_a->m_Uuid == arc12 ) foundArc12Error = true;
125 else if( trk_b && trk_b->m_Uuid == arc8 ) foundArc8Error = true;
126 else if( trk_b && trk_b->m_Uuid == arc12 ) foundArc12Error = true;
127 else foundOtherError = true;
128
129 }
130 } );
131
132 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
133
134 BOOST_CHECK_EQUAL( foundPad2Error, true );
135 BOOST_CHECK_EQUAL( foundPad4Error, true );
136 BOOST_CHECK_EQUAL( foundPad6Error, true );
137 BOOST_CHECK_EQUAL( foundArc8Error, true );
138 BOOST_CHECK_EQUAL( foundArc12Error, true );
139 BOOST_CHECK_EQUAL( foundOtherError, false );
140}
141
142
144{
145 KI_TEST::LoadBoard( m_settingsManager, "notched_zones", m_board );
146
147 // Older algorithms had trouble where the filleted zones intersected and left notches.
148 // See:
149 // https://gitlab.com/kicad/code/kicad/-/issues/2737
150 // https://gitlab.com/kicad/code/kicad/-/issues/2752
151 SHAPE_POLY_SET frontCopper;
152
153 KI_TEST::FillZones( m_board.get() );
154
155 frontCopper = SHAPE_POLY_SET();
156
157 for( ZONE* zone : m_board->Zones() )
158 {
159 if( zone->GetLayerSet().Contains( F_Cu ) )
160 {
161 frontCopper.BooleanAdd( *zone->GetFilledPolysList( F_Cu ) );
162 }
163 }
164
165 BOOST_CHECK_EQUAL( frontCopper.OutlineCount(), 2 );
166}
167
168
170{
171 std::vector<wxString> tests = { "issue18",
172 "issue2568",
173 "issue3812",
174 "issue5102",
175 "issue5313",
176 "issue5320",
177 "issue5567",
178 "issue5830",
179 "issue6039",
180 "issue6260",
181 "issue6284",
182 "issue7086",
183 "issue14294", // Bad Clipper2 fill
184 "fill_bad" // Missing zone clearance expansion
185 };
186
187 for( const wxString& relPath : tests )
188 {
189 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
190
191 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
192
193 KI_TEST::FillZones( m_board.get() );
194
195 std::vector<DRC_ITEM> violations;
196
197 bds.m_DRCEngine->SetViolationHandler(
198 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer,
199 DRC_CUSTOM_MARKER_HANDLER* aCustomHandler )
200 {
201 if( aItem->GetErrorCode() == DRCE_CLEARANCE )
202 violations.push_back( *aItem );
203 } );
204
205 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
206
207 if( violations.empty() )
208 {
209 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
210 BOOST_TEST_MESSAGE( (const char*)(wxString::Format( "Zone fill regression: %s passed", relPath ).utf8_str()) );
211 }
212 else
213 {
215
216 std::map<KIID, EDA_ITEM*> itemMap;
217 m_board->FillItemMap( itemMap );
218
219 for( const DRC_ITEM& item : violations )
220 {
221 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR,
222 itemMap ) );
223 }
224
225 BOOST_ERROR( (const char*)(wxString::Format( "Zone fill regression: %s failed", relPath ).utf8_str()) );
226 }
227 }
228}
229
230
231BOOST_FIXTURE_TEST_CASE( RegressionSliverZoneFillTests, ZONE_FILL_TEST_FIXTURE )
232{
233 std::vector<wxString> tests = { "issue16182" // Slivers
234 };
235
236 for( const wxString& relPath : tests )
237 {
238 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
239
240 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
241
242 KI_TEST::FillZones( m_board.get() );
243
244 std::vector<DRC_ITEM> violations;
245
246 bds.m_DRCEngine->SetViolationHandler(
247 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer,
248 DRC_CUSTOM_MARKER_HANDLER* aCustomHandler )
249 {
250 if( aItem->GetErrorCode() == DRCE_COPPER_SLIVER )
251 violations.push_back( *aItem );
252 } );
253
254 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
255
256 if( violations.empty() )
257 {
258 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
259 BOOST_TEST_MESSAGE( (const char*)(wxString::Format( "Zone fill copper sliver regression: %s passed", relPath ).utf8_str()) );
260 }
261 else
262 {
264
265 std::map<KIID, EDA_ITEM*> itemMap;
266 m_board->FillItemMap( itemMap );
267
268 for( const DRC_ITEM& item : violations )
269 {
270 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR,
271 itemMap ) );
272 }
273
274 BOOST_ERROR( (const char*)(wxString::Format( "Zone fill copper sliver regression: %s failed", relPath ).utf8_str()) );
275 }
276 }
277}
278
279
281{
282
283 std::vector<std::pair<wxString,int>> tests = { { "teardrop_issue_JPC2", 5 } // Arcs with teardrops connecting to pads
284 };
285
286 for( auto& [ relPath, count ] : tests )
287 {
288 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
289
290 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
291
292 KI_TEST::FillZones( m_board.get() );
293
294 int zoneCount = 0;
295
296 for( ZONE* zone : m_board->Zones() )
297 {
298 if( zone->IsTeardropArea() )
299 zoneCount++;
300 }
301
302 BOOST_CHECK_MESSAGE( zoneCount == count, "Expected " << count << " teardrop zones in "
303 << relPath << ", found "
304 << zoneCount );
305 }
306}
307
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
constexpr BOX2I KiROUND(const BOX2D &aBoxD)
Definition: box2.h:990
Container for design settings for a BOARD object.
std::shared_ptr< DRC_ENGINE > m_DRCEngine
Definition: kiid.h:49
static constexpr PCB_LAYER_ID ALL_LAYERS
! Temporary layer identifier to identify code that is not padstack-aware
Definition: padstack.h:144
Definition: pad.h:54
Represent a set of closed polygons.
void BooleanAdd(const SHAPE_POLY_SET &b)
Perform boolean polyset union.
int OutlineCount() const
Return the number of outlines in the set.
Handle a list of polygons defining a copper zone.
Definition: zone.h:73
std::function< void(PCB_MARKER *aMarker)> DRC_CUSTOM_MARKER_HANDLER
Definition: drc_engine.h:69
@ DRCE_CLEARANCE
Definition: drc_item.h:43
@ DRCE_COPPER_SLIVER
Definition: drc_item.h:92
@ 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
const double IU_PER_MM
Definition: base_units.h:76
std::unique_ptr< BOARD > m_board
SETTINGS_MANAGER m_settingsManager
constexpr int delta
BOOST_FIXTURE_TEST_CASE(BasicZoneFills, ZONE_FILL_TEST_FIXTURE)
@ PCB_ARC_T
class PCB_ARC, an arc track segment on a copper layer
Definition: typeinfo.h:98
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695