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 (C) 2021 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 {
106 if( aItem->GetErrorCode() == DRCE_CLEARANCE )
107 {
108 BOARD_ITEM* item_a = m_board->GetItem( aItem->GetMainItemID() );
109 PAD* pad_a = dynamic_cast<PAD*>( item_a );
110 PCB_TRACK* trk_a = dynamic_cast<PCB_TRACK*>( item_a );
111
112 BOARD_ITEM* item_b = m_board->GetItem( aItem->GetAuxItemID() );
113 PAD* pad_b = dynamic_cast<PAD*>( item_b );
114 PCB_TRACK* trk_b = dynamic_cast<PCB_TRACK*>( item_b );
115
116 if( pad_a && pad_a->GetNumber() == "2" ) foundPad2Error = true;
117 else if( pad_a && pad_a->GetNumber() == "4" ) foundPad4Error = true;
118 else if( pad_a && pad_a->GetNumber() == "6" ) foundPad6Error = true;
119 else if( pad_b && pad_b->GetNumber() == "2" ) foundPad2Error = true;
120 else if( pad_b && pad_b->GetNumber() == "4" ) foundPad4Error = true;
121 else if( pad_b && pad_b->GetNumber() == "6" ) foundPad6Error = true;
122 else if( trk_a && trk_a->m_Uuid == arc8 ) foundArc8Error = true;
123 else if( trk_a && trk_a->m_Uuid == arc12 ) foundArc12Error = true;
124 else if( trk_b && trk_b->m_Uuid == arc8 ) foundArc8Error = true;
125 else if( trk_b && trk_b->m_Uuid == arc12 ) foundArc12Error = true;
126 else foundOtherError = true;
127 }
128 } );
129
130 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
131
132 BOOST_CHECK_EQUAL( foundPad2Error, true );
133 BOOST_CHECK_EQUAL( foundPad4Error, true );
134 BOOST_CHECK_EQUAL( foundPad6Error, true );
135 BOOST_CHECK_EQUAL( foundArc8Error, true );
136 BOOST_CHECK_EQUAL( foundArc12Error, true );
137 BOOST_CHECK_EQUAL( foundOtherError, false );
138}
139
140
142{
143 KI_TEST::LoadBoard( m_settingsManager, "notched_zones", m_board );
144
145 // Older algorithms had trouble where the filleted zones intersected and left notches.
146 // See:
147 // https://gitlab.com/kicad/code/kicad/-/issues/2737
148 // https://gitlab.com/kicad/code/kicad/-/issues/2752
149 SHAPE_POLY_SET frontCopper;
150
151 KI_TEST::FillZones( m_board.get() );
152
153 frontCopper = SHAPE_POLY_SET();
154
155 for( ZONE* zone : m_board->Zones() )
156 {
157 if( zone->GetLayerSet().Contains( F_Cu ) )
158 {
159 frontCopper.BooleanAdd( *zone->GetFilledPolysList( F_Cu ),
161 }
162 }
163
164 BOOST_CHECK_EQUAL( frontCopper.OutlineCount(), 2 );
165}
166
167
169{
170 std::vector<wxString> tests = { "issue18",
171 "issue2568",
172 "issue3812",
173 "issue5102",
174 "issue5313",
175 "issue5320",
176 "issue5567",
177 "issue5830",
178 "issue6039",
179 "issue6260",
180 "issue6284",
181 "issue7086",
182 "issue14294", // Bad Clipper2 fill
183 "fill_bad" // Missing zone clearance expansion
184 };
185
186 for( const wxString& relPath : tests )
187 {
188 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
189
190 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
191
192 KI_TEST::FillZones( m_board.get() );
193
194 std::vector<DRC_ITEM> violations;
195
196 bds.m_DRCEngine->SetViolationHandler(
197 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer )
198 {
199 if( aItem->GetErrorCode() == DRCE_CLEARANCE )
200 violations.push_back( *aItem );
201 } );
202
203 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
204
205 if( violations.empty() )
206 {
207 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
208 BOOST_TEST_MESSAGE( (const char*)(wxString::Format( "Zone fill regression: %s passed", relPath ).utf8_str()) );
209 }
210 else
211 {
213
214 std::map<KIID, EDA_ITEM*> itemMap;
215 m_board->FillItemMap( itemMap );
216
217 for( const DRC_ITEM& item : violations )
218 {
219 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR,
220 itemMap ) );
221 }
222
223 BOOST_ERROR( (const char*)(wxString::Format( "Zone fill regression: %s failed", relPath ).utf8_str()) );
224 }
225 }
226}
227
228
229BOOST_FIXTURE_TEST_CASE( RegressionSliverZoneFillTests, ZONE_FILL_TEST_FIXTURE )
230{
231 std::vector<wxString> tests = { "issue16182" // Slivers
232 };
233
234 for( const wxString& relPath : tests )
235 {
236 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
237
238 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
239
240 KI_TEST::FillZones( m_board.get() );
241
242 std::vector<DRC_ITEM> violations;
243
244 bds.m_DRCEngine->SetViolationHandler(
245 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer )
246 {
247 if( aItem->GetErrorCode() == DRCE_COPPER_SLIVER )
248 violations.push_back( *aItem );
249 } );
250
251 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
252
253 if( violations.empty() )
254 {
255 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
256 BOOST_TEST_MESSAGE( (const char*)(wxString::Format( "Zone fill copper sliver regression: %s passed", relPath ).utf8_str()) );
257 }
258 else
259 {
261
262 std::map<KIID, EDA_ITEM*> itemMap;
263 m_board->FillItemMap( itemMap );
264
265 for( const DRC_ITEM& item : violations )
266 {
267 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR,
268 itemMap ) );
269 }
270
271 BOOST_ERROR( (const char*)(wxString::Format( "Zone fill copper sliver regression: %s failed", relPath ).utf8_str()) );
272 }
273 }
274}
275
276
278{
279
280 std::vector<std::pair<wxString,int>> tests = { { "teardrop_issue_JPC2", 5 } // Arcs with teardrops connecting to pads
281 };
282
283 for( auto& [ relPath, count ] : tests )
284 {
285 KI_TEST::LoadBoard( m_settingsManager, relPath, m_board );
286
287 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
288
289 KI_TEST::FillZones( m_board.get() );
290
291 int zoneCount = 0;
292
293 for( ZONE* zone : m_board->Zones() )
294 {
295 if( zone->IsTeardropArea() )
296 zoneCount++;
297 }
298
299 BOOST_CHECK_MESSAGE( zoneCount == count, "Expected " << count << " teardrop zones in "
300 << relPath << ", found "
301 << zoneCount );
302 }
303}
304
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, POLYGON_MODE aFastMode)
Perform boolean polyset union For aFastMode meaning, see function booleanOp.
int OutlineCount() const
Return the number of outlines in the set.
Handle a list of polygons defining a copper zone.
Definition: zone.h:73
@ 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:691