KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_test_utils.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
25
26#include <filesystem>
27
28#include <wx/filename.h>
29
30#include <boost/test/unit_test.hpp>
31
32#include <board.h>
33#include <board_commit.h>
35#include <footprint.h>
36#include <kiid.h>
37#include <pad.h>
38#include <pcb_shape.h>
39#include <zone.h>
40#include <zone_filler.h>
43#include <tool/tool_manager.h>
44
45#define CHECK_ENUM_CLASS_EQUAL( L, R ) \
46 BOOST_CHECK_EQUAL( static_cast<int>( L ), static_cast<int>( R ) )
47
48
49namespace KI_TEST
50{
51
53 m_dump_boards( true )
54{
55}
56
57
58void BOARD_DUMPER::DumpBoardToFile( BOARD& aBoard, const std::string& aName ) const
59{
60 if( !m_dump_boards )
61 return;
62
63 auto path = std::filesystem::temp_directory_path() / aName;
64 path += ".kicad_pcb";
65
66 BOOST_TEST_MESSAGE( "Dumping board file: " << path.string() );
67 ::KI_TEST::DumpBoardToFile( aBoard, path.string() );
68}
69
70
71void LoadBoard( SETTINGS_MANAGER& aSettingsManager, const wxString& aRelPath,
72 std::unique_ptr<BOARD>& aBoard )
73{
74 if( aBoard )
75 {
76 aBoard->SetProject( nullptr );
77 aBoard = nullptr;
78 }
79
80 std::string absPath = GetPcbnewTestDataDir() + aRelPath.ToStdString();
81 wxFileName projectFile( absPath + ".kicad_pro" );
82 wxFileName legacyProject( absPath + ".pro" );
83 std::string boardPath = absPath + ".kicad_pcb";
84 wxFileName rulesFile( absPath + ".kicad_dru" );
85
86 if( projectFile.Exists() )
87 aSettingsManager.LoadProject( projectFile.GetFullPath() );
88 else if( legacyProject.Exists() )
89 aSettingsManager.LoadProject( legacyProject.GetFullPath() );
90
91 BOOST_TEST_MESSAGE( "Loading board file: " << boardPath );
92
93 try {
94 aBoard = ReadBoardFromFileOrStream( boardPath );
95 }
96 catch( const IO_ERROR& ioe )
97 {
98 BOOST_TEST_ERROR( ioe.What() );
99 }
100
101 BOOST_REQUIRE( aBoard );
102
103 if( projectFile.Exists() || legacyProject.Exists() )
104 aBoard->SetProject( &aSettingsManager.Prj() );
105
106 auto m_DRCEngine = std::make_shared<DRC_ENGINE>( aBoard.get(), &aBoard->GetDesignSettings() );
107
108 if( rulesFile.Exists() )
109 m_DRCEngine->InitEngine( rulesFile );
110 else
111 m_DRCEngine->InitEngine( wxFileName() );
112
113 aBoard->GetDesignSettings().m_DRCEngine = m_DRCEngine;
114 aBoard->BuildListOfNets();
115 aBoard->BuildConnectivity();
116}
117
118
119BOARD_ITEM& RequireBoardItemWithTypeAndId( const BOARD& aBoard, KICAD_T aItemType, const KIID& aID )
120{
121 BOARD_ITEM* item = aBoard.GetItem( aID );
122
123 BOOST_REQUIRE( item );
124 BOOST_REQUIRE_EQUAL( item->Type(), aItemType );
125
126 return *item;
127}
128
129
134{
135public:
140 TEMPORARY_DIRECTORY( const std::string& aNamePrefix, const std::string aSuffix )
141 {
142 int i = 0;
143
144 // Find a unique directory name
145 while( true )
146 {
147 m_path = std::filesystem::temp_directory_path()
148 / ( aNamePrefix + std::to_string( i ) + aSuffix );
149
150 if( !std::filesystem::exists( m_path ) )
151 break;
152
153 i++;
154 }
155
156 wxASSERT( !std::filesystem::exists( m_path ) );
157 std::filesystem::create_directories( m_path );
158 }
159
160 ~TEMPORARY_DIRECTORY() { std::filesystem::remove_all( m_path ); }
161
162 const std::filesystem::path& GetPath() const { return m_path; }
163
164private:
165 std::filesystem::path m_path;
166};
167
168
169void LoadAndTestBoardFile( const wxString aRelativePath, bool aRoundtrip,
170 std::function<void( BOARD& )> aBoardTestFunction,
171 std::optional<int> aExpectedBoardVersion )
172{
173 const std::string absBoardPath =
174 KI_TEST::GetPcbnewTestDataDir() + aRelativePath.ToStdString() + ".kicad_pcb";
175
176 BOOST_TEST_MESSAGE( "Loading board to test: " << absBoardPath );
177 std::unique_ptr<BOARD> board1 = KI_TEST::ReadBoardFromFileOrStream( absBoardPath );
178
179 // Should load - if it doesn't we're done for
180 BOOST_REQUIRE( board1 );
181
182 BOOST_TEST_MESSAGE( "Testing loaded board" );
183 aBoardTestFunction( *board1 );
184
185 // If we care about the board version, check it now - but not after a roundtrip
186 // (as the version will be updated to the current version)
187 if( aExpectedBoardVersion )
188 {
189 BOOST_CHECK_EQUAL( board1->GetFileFormatVersionAtLoad(), *aExpectedBoardVersion );
190 }
191
192 if( aRoundtrip )
193 {
194 TEMPORARY_DIRECTORY tempLib( "kicad_qa_brd_roundtrip", "" );
195
196 const auto savePath = tempLib.GetPath() / ( aRelativePath.ToStdString() + ".kicad_pcb" );
197 KI_TEST::DumpBoardToFile( *board1, savePath.string() );
198
199 std::unique_ptr<BOARD> board2 = KI_TEST::ReadBoardFromFileOrStream( savePath.string() );
200
201 // Should load again
202 BOOST_REQUIRE( board2 );
203
204 BOOST_TEST_MESSAGE( "Testing roundtripped (saved/reloaded) file" );
205 aBoardTestFunction( *board2 );
206 }
207}
208
209
210void LoadAndTestFootprintFile( const wxString& aLibRelativePath, const wxString& aFpName,
211 bool aRoundtrip,
212 std::function<void( FOOTPRINT& )> aFootprintTestFunction,
213 std::optional<int> aExpectedFootprintVersion )
214{
215 const std::string absFootprintPath = KI_TEST::GetPcbnewTestDataDir()
216 + aLibRelativePath.ToStdString() + "/"
217 + aFpName.ToStdString() + ".kicad_mod";
218
219 BOOST_TEST_MESSAGE( "Loading footprint to test: " << absFootprintPath );
220 std::unique_ptr<FOOTPRINT> fp1 = KI_TEST::ReadFootprintFromFileOrStream( absFootprintPath );
221
222 // Should load - if it doesn't we're done for
223 BOOST_REQUIRE( fp1 );
224
225 BOOST_TEST_MESSAGE( "Testing loaded footprint (value: " << fp1->GetValue() << ")" );
226 aFootprintTestFunction( *fp1 );
227
228 // If we care about the board version, check it now - but not after a roundtrip
229 // (as the version will be updated to the current version)
230 if( aExpectedFootprintVersion )
231 {
232 BOOST_CHECK_EQUAL( fp1->GetFileFormatVersionAtLoad(), *aExpectedFootprintVersion );
233 }
234
235 if( aRoundtrip )
236 {
242 TEMPORARY_DIRECTORY tempLib( "kicad_qa_fp_roundtrip", ".pretty" );
243 const wxString fpFilename = fp1->GetFPID().GetLibItemName() + wxString( ".kicad_mod" );
244
245 BOOST_TEST_MESSAGE( "Resaving footprint: " << fpFilename << " in " << tempLib.GetPath() );
246
247 KI_TEST::DumpFootprintToFile( *fp1, tempLib.GetPath().string() );
248
249 const auto fp2Path = tempLib.GetPath() / fpFilename.ToStdString();
250
251 BOOST_TEST_MESSAGE( "Re-reading footprint: " << fpFilename << " in " << tempLib.GetPath() );
252
253 std::unique_ptr<FOOTPRINT> fp2 = KI_TEST::ReadFootprintFromFileOrStream( fp2Path.string() );
254
255 // Should load again
256 BOOST_REQUIRE( fp2 );
257
258 BOOST_TEST_MESSAGE( "Testing roundtripped (saved/reloaded) file" );
259 aFootprintTestFunction( *fp2 );
260 }
261}
262
263
264void FillZones( BOARD* m_board )
265{
266 TOOL_MANAGER toolMgr;
267 toolMgr.SetEnvironment( m_board, nullptr, nullptr, nullptr, nullptr );
268
269 KI_TEST::DUMMY_TOOL* dummyTool = new KI_TEST::DUMMY_TOOL();
270 toolMgr.RegisterTool( dummyTool );
271
272 BOARD_COMMIT commit( dummyTool );
273 ZONE_FILLER filler( m_board, &commit );
274 std::vector<ZONE*> toFill;
275
276 for( ZONE* zone : m_board->Zones() )
277 toFill.push_back( zone );
278
279 if( filler.Fill( toFill, false, nullptr ) )
280 commit.Push( _( "Fill Zone(s)" ), SKIP_UNDO | SKIP_SET_DIRTY | ZONE_FILL_OP | SKIP_CONNECTIVITY );
281
282 m_board->BuildConnectivity();
283}
284
285
286#define TEST( a, b ) \
287 { \
288 if( a != b ) \
289 return a < b; \
290 }
291#define TEST_PT( a, b ) \
292 { \
293 if( a.x != b.x ) \
294 return a.x < b.x; \
295 if( a.y != b.y ) \
296 return a.y < b.y; \
297 }
298
299
301{
303
304 bool operator()( const BOARD_ITEM* itemA, const BOARD_ITEM* itemB ) const
305 {
306 TEST( itemA->Type(), itemB->Type() );
307
308 if( itemA->GetLayerSet() != itemB->GetLayerSet() )
309 return itemA->GetLayerSet().Seq() < itemB->GetLayerSet().Seq();
310
311 if( itemA->Type() == PCB_TEXT_T )
312 {
313 const PCB_TEXT* textA = static_cast<const PCB_TEXT*>( itemA );
314 const PCB_TEXT* textB = static_cast<const PCB_TEXT*>( itemB );
315
316 TEST_PT( textA->GetPosition(), textB->GetPosition() );
317 TEST( textA->GetTextAngle(), textB->GetTextAngle() );
318 }
319
320 return fp_comp( itemA, itemB );
321 }
322};
323
324
326{
327 CHECK_ENUM_CLASS_EQUAL( expected->Type(), fp->Type() );
328
329 // TODO: validate those informations match the importer
330 BOOST_CHECK_EQUAL( expected->GetPosition(), fp->GetPosition() );
331 BOOST_CHECK_EQUAL( expected->GetOrientation(), fp->GetOrientation() );
332
333 BOOST_CHECK_EQUAL( expected->GetReference(), fp->GetReference() );
334 BOOST_CHECK_EQUAL( expected->GetValue(), fp->GetValue() );
335 BOOST_CHECK_EQUAL( expected->GetLibDescription(), fp->GetLibDescription() );
336 BOOST_CHECK_EQUAL( expected->GetKeywords(), fp->GetKeywords() );
337 BOOST_CHECK_EQUAL( expected->GetAttributes(), fp->GetAttributes() );
338 BOOST_CHECK_EQUAL( expected->GetFlag(), fp->GetFlag() );
339 //BOOST_CHECK_EQUAL( expected->GetProperties(), fp->GetProperties() );
340 BOOST_CHECK_EQUAL( expected->GetTypeName(), fp->GetTypeName() );
341
342 // simple test if count matches
343 BOOST_CHECK_EQUAL( expected->GetFields().size(), fp->GetFields().size() );
344 BOOST_CHECK_EQUAL( expected->Pads().size(), fp->Pads().size() );
345 BOOST_CHECK_EQUAL( expected->GraphicalItems().size(), fp->GraphicalItems().size() );
346 BOOST_CHECK_EQUAL( expected->Zones().size(), fp->Zones().size() );
347 BOOST_CHECK_EQUAL( expected->Groups().size(), fp->Groups().size() );
348 BOOST_CHECK_EQUAL( expected->Models().size(), fp->Models().size() );
349
350 std::set<PAD*, FOOTPRINT::cmp_pads> expectedPads( expected->Pads().begin(),
351 expected->Pads().end() );
352 std::set<PAD*, FOOTPRINT::cmp_pads> fpPads( fp->Pads().begin(), fp->Pads().end() );
353
354 for( auto itExpected = expectedPads.begin(), itFp = fpPads.begin();
355 itExpected != expectedPads.end() && itFp != fpPads.end(); itExpected++, itFp++ )
356 {
357 CheckFpPad( *itExpected, *itFp );
358 }
359
360 std::set<BOARD_ITEM*, kitest_cmp_drawings> expectedGraphicalItems( expected->GraphicalItems().begin(),
361 expected->GraphicalItems().end() );
362 std::set<BOARD_ITEM*, kitest_cmp_drawings> fpGraphicalItems( fp->GraphicalItems().begin(),
363 fp->GraphicalItems().end() );
364
365 for( auto itExpected = expectedGraphicalItems.begin(), itFp = fpGraphicalItems.begin();
366 itExpected != expectedGraphicalItems.end() && itFp != fpGraphicalItems.end();
367 itExpected++, itFp++ )
368 {
369 BOOST_CHECK_EQUAL( ( *itExpected )->Type(), ( *itFp )->Type() );
370
371 switch( ( *itExpected )->Type() )
372 {
373 case PCB_TEXT_T:
374 {
375 const PCB_TEXT* expectedText = static_cast<const PCB_TEXT*>( *itExpected );
376 const PCB_TEXT* text = static_cast<const PCB_TEXT*>( *itFp );
377
378 CheckFpText( expectedText, text );
379 break;
380 }
381
382 case PCB_SHAPE_T:
383 {
384 const PCB_SHAPE* expectedShape = static_cast<const PCB_SHAPE*>( *itExpected );
385 const PCB_SHAPE* shape = static_cast<const PCB_SHAPE*>( *itFp );
386
387 CheckFpShape( expectedShape, shape );
388 break;
389 }
390
392 case PCB_DIM_LEADER_T:
393 case PCB_DIM_CENTER_T:
394 case PCB_DIM_RADIAL_T:
396 // TODO
397 break;
398
399 default:
400 BOOST_ERROR( "KICAD_T not known" );
401 break;
402 }
403 }
404
405 std::set<ZONE*, FOOTPRINT::cmp_zones> expectedZones( expected->Zones().begin(),
406 expected->Zones().end() );
407 std::set<ZONE*, FOOTPRINT::cmp_zones> fpZones( fp->Zones().begin(), fp->Zones().end() );
408
409 for( auto itExpected = expectedZones.begin(), itFp = fpZones.begin();
410 itExpected != expectedZones.end() && itFp != fpZones.end(); itExpected++, itFp++ )
411 {
412 CheckFpZone( *itExpected, *itFp );
413 }
414
415 // TODO: Groups
416
417 // Use FootprintNeedsUpdate as sanity check (which should do the same thing as our manually coded checks)
418 // If we get the reporter working, and COMPARE_FLAGS::DRC is enough for us, we can remove the old code
419 BOOST_CHECK( !const_cast<FOOTPRINT*>(expected)->FootprintNeedsUpdate(fp, BOARD_ITEM::COMPARE_FLAGS::DRC, nullptr) );
420}
421
422
423void CheckFpPad( const PAD* expected, const PAD* pad )
424{
425 // TODO(JE) padstacks
426 BOOST_TEST_CONTEXT( "Assert PAD with KIID=" << expected->m_Uuid.AsString() )
427 {
428 CHECK_ENUM_CLASS_EQUAL( expected->Type(), pad->Type() );
429
430 BOOST_CHECK_EQUAL( expected->GetNumber(), pad->GetNumber() );
431 CHECK_ENUM_CLASS_EQUAL( expected->GetAttribute(), pad->GetAttribute() );
432 CHECK_ENUM_CLASS_EQUAL( expected->GetProperty(), pad->GetProperty() );
434 pad->GetShape( PADSTACK::ALL_LAYERS ) );
435
436 BOOST_CHECK_EQUAL( expected->IsLocked(), pad->IsLocked() );
437
438 BOOST_CHECK_EQUAL( expected->GetPosition(), pad->GetPosition() );
440 pad->GetSize( PADSTACK::ALL_LAYERS ) );
441 BOOST_CHECK_EQUAL( expected->GetOrientation(), pad->GetOrientation() );
443 pad->GetDelta( PADSTACK::ALL_LAYERS ) );
445 pad->GetOffset( PADSTACK::ALL_LAYERS ) );
446 BOOST_CHECK_EQUAL( expected->GetDrillSize(), pad->GetDrillSize() );
447 CHECK_ENUM_CLASS_EQUAL( expected->GetDrillShape(), pad->GetDrillShape() );
448
449 BOOST_CHECK_EQUAL( expected->GetLayerSet(), pad->GetLayerSet() );
450
451 BOOST_CHECK_EQUAL( expected->GetNetCode(), pad->GetNetCode() );
452 BOOST_CHECK_EQUAL( expected->GetPinFunction(), pad->GetPinFunction() );
453 BOOST_CHECK_EQUAL( expected->GetPinType(), pad->GetPinType() );
454 BOOST_CHECK_EQUAL( expected->GetPadToDieLength(), pad->GetPadToDieLength() );
455 BOOST_CHECK_EQUAL( expected->GetLocalSolderMaskMargin().value_or( 0 ),
456 pad->GetLocalSolderMaskMargin().value_or( 0 ) );
457 BOOST_CHECK_EQUAL( expected->GetLocalSolderPasteMargin().value_or( 0 ),
458 pad->GetLocalSolderPasteMargin().value_or( 0 ) );
459 BOOST_CHECK_EQUAL( expected->GetLocalSolderPasteMarginRatio().value_or( 0 ),
460 pad->GetLocalSolderPasteMarginRatio().value_or( 0 ) );
461 BOOST_CHECK_EQUAL( expected->GetLocalClearance().value_or( 0 ),
462 pad->GetLocalClearance().value_or( 0 ) );
463 CHECK_ENUM_CLASS_EQUAL( expected->GetLocalZoneConnection(), pad->GetLocalZoneConnection() );
464 BOOST_CHECK_EQUAL( expected->GetLocalThermalSpokeWidthOverride().value_or( 0 ),
465 pad->GetLocalThermalSpokeWidthOverride().value_or( 0 ) );
466 BOOST_CHECK_EQUAL( expected->GetThermalSpokeAngle(), pad->GetThermalSpokeAngle() );
467 BOOST_CHECK_EQUAL( expected->GetThermalGap(), pad->GetThermalGap() );
468 BOOST_CHECK_EQUAL( expected->GetRoundRectRadiusRatio( PADSTACK::ALL_LAYERS ),
469 pad->GetRoundRectRadiusRatio( PADSTACK::ALL_LAYERS ) );
470 BOOST_CHECK_EQUAL( expected->GetChamferRectRatio( PADSTACK::ALL_LAYERS ),
471 pad->GetChamferRectRatio( PADSTACK::ALL_LAYERS ) );
472 BOOST_CHECK_EQUAL( expected->GetChamferPositions( PADSTACK::ALL_LAYERS ),
473 pad->GetChamferPositions( PADSTACK::ALL_LAYERS ) );
474 BOOST_CHECK_EQUAL( expected->GetRemoveUnconnected(), pad->GetRemoveUnconnected() );
475 BOOST_CHECK_EQUAL( expected->GetKeepTopBottom(), pad->GetKeepTopBottom() );
476
477 // TODO: did we check everything for complex pad shapes?
479 pad->GetAnchorPadShape( PADSTACK::ALL_LAYERS ) );
480 CHECK_ENUM_CLASS_EQUAL( expected->GetCustomShapeInZoneOpt(),
481 pad->GetCustomShapeInZoneOpt() );
482
483 BOOST_CHECK_EQUAL( expected->GetPrimitives( PADSTACK::ALL_LAYERS ).size(),
484 pad->GetPrimitives( PADSTACK::ALL_LAYERS ).size() );
485
486 if( expected->GetPrimitives( PADSTACK::ALL_LAYERS ).size()
487 == pad->GetPrimitives( PADSTACK::ALL_LAYERS ).size() )
488 {
489 for( size_t i = 0; i < expected->GetPrimitives( PADSTACK::ALL_LAYERS ).size(); ++i )
490 {
491 CheckFpShape( expected->GetPrimitives( PADSTACK::ALL_LAYERS ).at( i ).get(),
492 pad->GetPrimitives( PADSTACK::ALL_LAYERS ).at( i ).get() );
493 }
494 }
495
496 }
497}
498
499
501{
502 BOOST_TEST_CONTEXT( "Assert PCB_TEXT with KIID=" << expected->m_Uuid.AsString() )
503 {
504 CHECK_ENUM_CLASS_EQUAL( expected->Type(), text->Type() );
505
506 BOOST_CHECK_EQUAL( expected->IsLocked(), text->IsLocked() );
507
508 BOOST_CHECK_EQUAL( expected->GetText(), text->GetText() );
509 BOOST_CHECK_EQUAL( expected->GetPosition(), text->GetPosition() );
510 BOOST_CHECK_EQUAL( expected->GetTextAngle(), text->GetTextAngle() );
511 BOOST_CHECK_EQUAL( expected->IsKeepUpright(), text->IsKeepUpright() );
512
513 BOOST_CHECK_EQUAL( expected->GetLayerSet(), text->GetLayerSet() );
514 BOOST_CHECK_EQUAL( expected->IsVisible(), text->IsVisible() );
515
516 BOOST_CHECK_EQUAL( expected->GetTextSize(), text->GetTextSize() );
517 BOOST_CHECK_EQUAL( expected->GetLineSpacing(), text->GetLineSpacing() );
518 BOOST_CHECK_EQUAL( expected->GetTextThickness(), text->GetTextThickness() );
519 BOOST_CHECK_EQUAL( expected->IsBold(), text->IsBold() );
520 BOOST_CHECK_EQUAL( expected->IsItalic(), text->IsItalic() );
521 BOOST_CHECK_EQUAL( expected->GetHorizJustify(), text->GetHorizJustify() );
522 BOOST_CHECK_EQUAL( expected->GetVertJustify(), text->GetVertJustify() );
523 BOOST_CHECK_EQUAL( expected->IsMirrored(), text->IsMirrored() );
524 BOOST_CHECK_EQUAL( expected->GetFontName(),
525 text->GetFontName() ); // TODO: bold/italic setting?
526
527 // TODO: render cache?
528 }
529}
530
531
532void CheckFpShape( const PCB_SHAPE* expected, const PCB_SHAPE* shape )
533{
534 BOOST_TEST_CONTEXT( "Assert PCB_SHAPE with KIID=" << expected->m_Uuid.AsString() )
535 {
536 CHECK_ENUM_CLASS_EQUAL( expected->Type(), shape->Type() );
537
538 CHECK_ENUM_CLASS_EQUAL( expected->GetShape(), shape->GetShape() );
539
540 BOOST_CHECK_EQUAL( expected->IsLocked(), shape->IsLocked() );
541
542 BOOST_CHECK_EQUAL( expected->GetStart(), shape->GetStart() );
543 BOOST_CHECK_EQUAL( expected->GetEnd(), shape->GetEnd() );
544
545 if( expected->GetShape() == SHAPE_T::ARC )
546 {
547 // center and position might differ as they are calculated from start/mid/end -> compare mid instead
548 BOOST_CHECK_EQUAL( expected->GetArcMid(), shape->GetArcMid() );
549 }
550 else
551 {
552 BOOST_CHECK_EQUAL( expected->GetCenter(), shape->GetCenter() );
553 BOOST_CHECK_EQUAL( expected->GetPosition(), shape->GetPosition() );
554 }
555
556 BOOST_CHECK_EQUAL( expected->GetBezierC1(), shape->GetBezierC1() );
557 BOOST_CHECK_EQUAL( expected->GetBezierC2(), shape->GetBezierC2() );
558
559 CheckShapePolySet( &expected->GetPolyShape(), &shape->GetPolyShape() );
560
561 BOOST_CHECK_EQUAL( expected->GetLayerSet(), shape->GetLayerSet() );
562
563 BOOST_CHECK_EQUAL( expected->GetStroke().GetWidth(), shape->GetStroke().GetWidth() );
564 CHECK_ENUM_CLASS_EQUAL( expected->GetStroke().GetLineStyle(),
565 shape->GetStroke().GetLineStyle() );
566 CHECK_ENUM_CLASS_EQUAL( expected->GetFillMode(), shape->GetFillMode() );
567 }
568}
569
570
571void CheckFpZone( const ZONE* expected, const ZONE* zone )
572{
573 BOOST_TEST_CONTEXT( "Assert ZONE with KIID=" << expected->m_Uuid.AsString() )
574 {
575 CHECK_ENUM_CLASS_EQUAL( expected->Type(), zone->Type() );
576
577 BOOST_CHECK_EQUAL( expected->IsLocked(), zone->IsLocked() );
578
579 BOOST_CHECK_EQUAL( expected->GetNetCode(), zone->GetNetCode() );
580 BOOST_CHECK_EQUAL( expected->GetAssignedPriority(), zone->GetAssignedPriority() );
581 CHECK_ENUM_CLASS_EQUAL( expected->GetPadConnection(), zone->GetPadConnection() );
582 BOOST_CHECK_EQUAL( expected->GetLocalClearance().value_or( 0 ),
583 zone->GetLocalClearance().value_or( 0 ) );
584 BOOST_CHECK_EQUAL( expected->GetMinThickness(), zone->GetMinThickness() );
585
586 BOOST_CHECK_EQUAL( expected->GetLayerSet(), zone->GetLayerSet() );
587
588 BOOST_CHECK_EQUAL( expected->IsFilled(), zone->IsFilled() );
589 CHECK_ENUM_CLASS_EQUAL( expected->GetFillMode(), zone->GetFillMode() );
590 BOOST_CHECK_EQUAL( expected->GetHatchThickness(), zone->GetHatchThickness() );
591 BOOST_CHECK_EQUAL( expected->GetHatchGap(), zone->GetHatchGap() );
592 BOOST_CHECK_EQUAL( expected->GetHatchOrientation(), zone->GetHatchOrientation() );
593 BOOST_CHECK_EQUAL( expected->GetHatchSmoothingLevel(), zone->GetHatchSmoothingLevel() );
594 BOOST_CHECK_EQUAL( expected->GetHatchSmoothingValue(), zone->GetHatchSmoothingValue() );
595 BOOST_CHECK_EQUAL( expected->GetHatchBorderAlgorithm(), zone->GetHatchBorderAlgorithm() );
596 BOOST_CHECK_EQUAL( expected->GetHatchHoleMinArea(), zone->GetHatchHoleMinArea() );
597 BOOST_CHECK_EQUAL( expected->GetThermalReliefGap(), zone->GetThermalReliefGap() );
598 BOOST_CHECK_EQUAL( expected->GetThermalReliefSpokeWidth(),
600 BOOST_CHECK_EQUAL( expected->GetCornerSmoothingType(), zone->GetCornerSmoothingType() );
601 BOOST_CHECK_EQUAL( expected->GetCornerRadius(), zone->GetCornerRadius() );
602 CHECK_ENUM_CLASS_EQUAL( expected->GetIslandRemovalMode(), zone->GetIslandRemovalMode() );
603 BOOST_CHECK_EQUAL( expected->GetMinIslandArea(), zone->GetMinIslandArea() );
604
605 BOOST_CHECK_EQUAL( expected->GetIsRuleArea(), zone->GetIsRuleArea() );
606 BOOST_CHECK_EQUAL( expected->GetDoNotAllowCopperPour(), zone->GetDoNotAllowCopperPour() );
607 BOOST_CHECK_EQUAL( expected->GetDoNotAllowVias(), zone->GetDoNotAllowVias() );
608 BOOST_CHECK_EQUAL( expected->GetDoNotAllowTracks(), zone->GetDoNotAllowTracks() );
609 BOOST_CHECK_EQUAL( expected->GetDoNotAllowPads(), zone->GetDoNotAllowPads() );
610 BOOST_CHECK_EQUAL( expected->GetDoNotAllowFootprints(), zone->GetDoNotAllowFootprints() );
611
612 BOOST_CHECK_EQUAL( expected->GetZoneName(), zone->GetZoneName() );
613 CHECK_ENUM_CLASS_EQUAL( expected->GetTeardropAreaType(), zone->GetTeardropAreaType() );
614 BOOST_CHECK_EQUAL( expected->GetZoneName(), zone->GetZoneName() );
615
616 CheckShapePolySet( expected->Outline(), zone->Outline() );
617 // TODO: filled zones
618 }
619}
620
621
623{
624 BOOST_TEST_CONTEXT( "Assert SHAPE_POLY_SET" )
625 {
626 BOOST_CHECK_EQUAL( expected->OutlineCount(), polyset->OutlineCount() );
627 BOOST_CHECK_EQUAL( expected->TotalVertices(), polyset->TotalVertices() );
628
629 if( expected->OutlineCount() != polyset->OutlineCount() )
630 return; // don't check the rest
631
632 if( expected->TotalVertices() != polyset->TotalVertices() )
633 return; // don't check the rest
634
635 // TODO: check all outlines and holes (just checking outlines for now)
636 for( int i = 0; i < expected->OutlineCount(); ++i )
637 {
638 BOOST_TEST_CONTEXT( "Outline " << i )
639 {
640 BOOST_CHECK_EQUAL( expected->Outline( i ).ArcCount(),
641 polyset->Outline( i ).ArcCount() );
642 BOOST_CHECK_EQUAL( expected->Outline( i ).PointCount(),
643 polyset->Outline( i ).PointCount() );
644
645
646 if( expected->Outline( i ).PointCount() != polyset->Outline( i ).PointCount() )
647 return; // don't check the rest
648
649 for( int j = 0; j < expected->Outline( i ).PointCount(); ++j )
650 {
651 BOOST_CHECK_EQUAL( expected->Outline( i ).GetPoint( j ),
652 polyset->Outline( i ).GetPoint( j ) );
653 }
654 }
655 }
656 }
657}
658
659} // namespace KI_TEST
#define SKIP_CONNECTIVITY
Definition: board_commit.h:42
#define ZONE_FILL_OP
Definition: board_commit.h:43
General utilities for PCB file IO for QA programs.
#define CHECK_ENUM_CLASS_EQUAL(L, R)
virtual void Push(const wxString &aMessage=wxEmptyString, int aCommitFlags=0) override
Execute the changes.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:79
virtual LSET GetLayerSet() const
Return a std::bitset of all layers on which the item physically resides.
Definition: board_item.h:259
virtual bool IsLocked() const
Definition: board_item.cpp:75
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:295
BOARD_ITEM * GetItem(const KIID &aID) const
Definition: board.cpp:1454
const ZONES & Zones() const
Definition: board.h:340
bool BuildConnectivity(PROGRESS_REPORTER *aReporter=nullptr)
Build or rebuild the board connectivity database for the board, especially the list of connected item...
Definition: board.cpp:190
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:101
const VECTOR2I & GetBezierC2() const
Definition: eda_shape.h:213
FILL_T GetFillMode() const
Definition: eda_shape.h:114
SHAPE_POLY_SET & GetPolyShape()
Definition: eda_shape.h:291
SHAPE_T GetShape() const
Definition: eda_shape.h:132
const VECTOR2I & GetEnd() const
Return the ending point of the graphic.
Definition: eda_shape.h:174
const VECTOR2I & GetStart() const
Return the starting point of the graphic.
Definition: eda_shape.h:137
const VECTOR2I & GetBezierC1() const
Definition: eda_shape.h:210
VECTOR2I GetArcMid() const
Definition: eda_shape.cpp:810
const EDA_ANGLE & GetTextAngle() const
Definition: eda_text.h:134
wxString GetLibDescription() const
Definition: footprint.h:255
EDA_ANGLE GetOrientation() const
Definition: footprint.h:225
ZONES & Zones()
Definition: footprint.h:210
std::deque< PAD * > & Pads()
Definition: footprint.h:204
int GetAttributes() const
Definition: footprint.h:288
wxString GetTypeName() const
Get the type of footprint.
Definition: footprint.cpp:1285
GROUPS & Groups()
Definition: footprint.h:213
void GetFields(std::vector< PCB_FIELD * > &aVector, bool aVisibleOnly) const
Populate a std::vector with PCB_TEXTs.
Definition: footprint.cpp:648
std::vector< FP_3DMODEL > & Models()
Definition: footprint.h:218
const wxString & GetValue() const
Definition: footprint.h:642
const wxString & GetReference() const
Definition: footprint.h:620
int GetFlag() const
Definition: footprint.h:293
wxString GetKeywords() const
Definition: footprint.h:258
VECTOR2I GetPosition() const override
Definition: footprint.h:222
DRAWINGS & GraphicalItems()
Definition: footprint.h:207
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
virtual const wxString What() const
A composite of Problem() and Where()
Definition: exceptions.cpp:30
Definition: kiid.h:49
void DumpBoardToFile(BOARD &aBoard, const std::string &aName) const
A temporary directory that will be deleted when it goes out of scope.
const std::filesystem::path & GetPath() const
TEMPORARY_DIRECTORY(const std::string &aNamePrefix, const std::string aSuffix)
Create a temporary directory with a given prefix and suffix.
std::filesystem::path m_path
LSEQ Seq(const LSEQ &aSequence) const
Return an LSEQ from the union of this LSET and a desired sequence.
Definition: lset.cpp:297
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
VECTOR2I GetCenter() const override
This defaults to the center of the bounding box if not overridden.
Definition: pcb_shape.h:79
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: pcb_shape.cpp:218
STROKE_PARAMS GetStroke() const override
Definition: pcb_shape.h:89
VECTOR2I GetPosition() const override
Definition: pcb_shape.h:77
virtual VECTOR2I GetPosition() const override
Definition: pcb_text.h:82
bool LoadProject(const wxString &aFullPath, bool aSetActive=true)
Load a project or sets up a new project with a specified path.
PROJECT & Prj() const
A helper while we are not MDI-capable – return the one and only project.
virtual const VECTOR2I GetPoint(int aIndex) const override
int PointCount() const
Return the number of points (vertices) in this line chain.
size_t ArcCount() const
Represent a set of closed polygons.
int TotalVertices() const
Return total number of vertices stored in the set.
SHAPE_LINE_CHAIN & Outline(int aIndex)
Return the reference to aIndex-th outline in the set.
int OutlineCount() const
Return the number of outlines in the set.
int GetWidth() const
LINE_STYLE GetLineStyle() const
Master controller class:
Definition: tool_manager.h:62
void RegisterTool(TOOL_BASE *aTool)
Add a tool to the manager set and sets it up.
void SetEnvironment(EDA_ITEM *aModel, KIGFX::VIEW *aView, KIGFX::VIEW_CONTROLS *aViewControls, APP_SETTINGS_BASE *aSettings, TOOLS_HOLDER *aFrame)
Set the work environment (model, view, view controls and the parent window).
bool Fill(const std::vector< ZONE * > &aZones, bool aCheck=false, wxWindow *aParent=nullptr)
Fills the given list of zones.
Handle a list of polygons defining a copper zone.
Definition: zone.h:73
int GetHatchBorderAlgorithm() const
Definition: zone.h:313
bool GetIsRuleArea() const
Accessors to parameters used in Rule Area zones:
Definition: zone.h:731
std::optional< int > GetLocalClearance() const override
Definition: zone.cpp:717
bool GetDoNotAllowVias() const
Definition: zone.h:739
bool GetDoNotAllowPads() const
Definition: zone.h:741
bool GetDoNotAllowTracks() const
Definition: zone.h:740
bool IsFilled() const
Definition: zone.h:271
ISLAND_REMOVAL_MODE GetIslandRemovalMode() const
Definition: zone.h:760
SHAPE_POLY_SET * Outline()
Definition: zone.h:347
long long int GetMinIslandArea() const
Definition: zone.h:763
const wxString & GetZoneName() const
Definition: zone.h:142
int GetMinThickness() const
Definition: zone.h:280
ZONE_CONNECTION GetPadConnection() const
Definition: zone.h:277
int GetHatchThickness() const
Definition: zone.h:295
double GetHatchHoleMinArea() const
Definition: zone.h:310
int GetThermalReliefSpokeWidth() const
Definition: zone.h:224
EDA_ANGLE GetHatchOrientation() const
Definition: zone.h:301
bool GetDoNotAllowFootprints() const
Definition: zone.h:742
ZONE_FILL_MODE GetFillMode() const
Definition: zone.h:203
virtual LSET GetLayerSet() const override
Return a std::bitset of all layers on which the item physically resides.
Definition: zone.h:133
bool GetDoNotAllowCopperPour() const
Definition: zone.h:738
int GetHatchGap() const
Definition: zone.h:298
TEARDROP_TYPE GetTeardropAreaType() const
Definition: zone.h:717
double GetHatchSmoothingValue() const
Definition: zone.h:307
int GetHatchSmoothingLevel() const
Definition: zone.h:304
unsigned int GetCornerRadius() const
Definition: zone.h:677
int GetCornerSmoothingType() const
Definition: zone.h:673
int GetThermalReliefGap() const
Definition: zone.h:213
unsigned GetAssignedPriority() const
Definition: zone.h:123
#define _(s)
#define TEST_PT(a, b)
#define TEST(a, b)
std::string GetPcbnewTestDataDir()
Utility which returns a path to the data directory where the test board files are stored.
void LoadBoard(SETTINGS_MANAGER &aSettingsManager, const wxString &aRelPath, std::unique_ptr< BOARD > &aBoard)
void CheckFootprint(const FOOTPRINT *expected, const FOOTPRINT *fp)
Helper method to check if two footprints are semantically the same.
void FillZones(BOARD *m_board)
std::unique_ptr< BOARD > ReadBoardFromFileOrStream(const std::string &aFilename, std::istream &aFallback)
Read a board from a file, or another stream, as appropriate.
void CheckFpShape(const PCB_SHAPE *expected, const PCB_SHAPE *shape)
std::unique_ptr< FOOTPRINT > ReadFootprintFromFileOrStream(const std::string &aFilename, std::istream &aFallback)
void LoadAndTestFootprintFile(const wxString &aLibRelativePath, const wxString &aFpName, bool aRoundtrip, std::function< void(FOOTPRINT &)> aFootprintTestFunction, std::optional< int > aExpectedFootprintVersion)
Same as LoadAndTestBoardFile, but for footprints.
void DumpBoardToFile(BOARD &board, const std::string &aFilename)
Utility function to simply write a Board out to a file.
void CheckFpPad(const PAD *expected, const PAD *pad)
void CheckFpZone(const ZONE *expected, const ZONE *zone)
void CheckFpText(const PCB_TEXT *expected, const PCB_TEXT *text)
void DumpFootprintToFile(const FOOTPRINT &aFootprint, const std::string &aLibraryPath)
Same as DumpBoardToFile, but for footprints.
void LoadAndTestBoardFile(const wxString aRelativePath, bool aRoundtrip, std::function< void(BOARD &)> aBoardTestFunction, std::optional< int > aExpectedBoardVersion)
Perform "some test" on a board file loaded from the path, then optionally save and reload and run the...
void CheckShapePolySet(const SHAPE_POLY_SET *expected, const SHAPE_POLY_SET *polyset)
BOARD_ITEM & RequireBoardItemWithTypeAndId(const BOARD &aBoard, KICAD_T aItemType, const KIID &aID)
Get an item from the given board with a certain type and UUID.
#define SKIP_SET_DIRTY
Definition: sch_commit.h:43
#define SKIP_UNDO
Definition: sch_commit.h:41
FOOTPRINT::cmp_drawings fp_comp
bool operator()(const BOARD_ITEM *itemA, const BOARD_ITEM *itemB) const
BOOST_CHECK_EQUAL(ret, c.m_exp_result)
BOOST_REQUIRE(intersection.has_value()==c.ExpectedIntersection.has_value())
VECTOR3I expected(15, 30, 45)
BOOST_TEST_CONTEXT("Test Clearance")
BOOST_TEST_MESSAGE("Polyline has "<< chain.PointCount()<< " points")
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
Definition: typeinfo.h:88
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
Definition: typeinfo.h:105
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
Definition: typeinfo.h:102
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
Definition: typeinfo.h:103
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
Definition: typeinfo.h:92
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
Definition: typeinfo.h:101
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
Definition: typeinfo.h:104