KiCad PCB EDA Suite
Loading...
Searching...
No Matches
test_drc_copper_sliver.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) 2023 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>
34
35
37{
39 m_settingsManager( true /* headless */ )
40 { }
41
43 std::unique_ptr<BOARD> m_board;
44};
45
46
48{
49 // Check for minimum copper connection errors
50
51 std::vector<std::pair<wxString, int>> tests =
52 {
53 { "sliver", 1 },
54 { "issue14449", 0 },
55 { "issue14549", 0 },
56 { "issue14549_2", 0 },
57 { "issue14559", 0 }
58 };
59
60 for( const std::pair<wxString, int>& test : tests )
61 {
62 KI_TEST::LoadBoard( m_settingsManager, test.first, m_board );
63 KI_TEST::FillZones( m_board.get() );
64
65 std::vector<DRC_ITEM> violations;
66 BOARD_DESIGN_SETTINGS& bds = m_board->GetDesignSettings();
67
68 // Disable DRC tests not useful or not handled in this testcase
69 for( int ii = DRCE_FIRST; ii <= DRCE_LAST; ++ii )
71
72 // Ensure that our desired error is fired
74
75 bds.m_DRCEngine->SetViolationHandler(
76 [&]( const std::shared_ptr<DRC_ITEM>& aItem, VECTOR2I aPos, int aLayer )
77 {
78 if( bds.GetSeverity( aItem->GetErrorCode() ) == SEVERITY::RPT_SEVERITY_ERROR )
79 violations.push_back( *aItem );
80 } );
81
82 bds.m_DRCEngine->RunTests( EDA_UNITS::MILLIMETRES, true, false );
83
84 if( violations.size() == test.second )
85 {
86 BOOST_CHECK_EQUAL( 1, 1 ); // quiet "did not check any assertions" warning
87 BOOST_TEST_MESSAGE( wxString::Format( "DRC copper sliver: %s, passed", test.first ) );
88 }
89 else
90 {
92
93 std::map<KIID, EDA_ITEM*> itemMap;
94 m_board->FillItemMap( itemMap );
95
96 for( const DRC_ITEM& item : violations )
97 {
98 BOOST_TEST_MESSAGE( item.ShowReport( &unitsProvider, RPT_SEVERITY_ERROR,
99 itemMap ) );
100 }
101
102 BOOST_ERROR( wxString::Format( "DRC copper sliver: %s, failed (violations found %d expected %d)",
103 test.first, (int)violations.size(), test.second ) );
104 }
105 }
106}
constexpr EDA_IU_SCALE pcbIUScale
Definition: base_units.h:108
Container for design settings for a BOARD object.
std::map< int, SEVERITY > m_DRCSeverities
std::shared_ptr< DRC_ENGINE > m_DRCEngine
@ DRCE_COPPER_SLIVER
Definition: drc_item.h:85
@ DRCE_FIRST
Definition: drc_item.h:38
@ DRCE_LAST
Definition: drc_item.h:102
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(DRCCopperSliver, DRC_REGRESSION_TEST_FIXTURE)